/* * Copyright (c) 1999 RISS-Telecom Networking Center * * Copyright (c) 1993 The CAD lab of the * Novosibirsk Institute of Broadcasting and Telecommunication * * BPFT $Id: pathnames.h,v 1.1 1993/10/20 16:03:10 bob Exp $ * * $Log: pathnames.h,v $ * Revision 1.1 1993/10/20 16:03:10 bob * Initial revision * * * Redistribution and use in source forms, with and without modification, * are permitted provided that this entire comment appears intact. * Redistribution in binary form may occur without any restrictions. * * THIS SOFTWARE IS PROVIDED ``AS IS'' WITHOUT ANY WARRANTIES OF ANY KIND. */ /* * Some useful pathnames and filenames definition. * Provide trailing slash, since mostly used for building pathnames. */ /* where erased tmp directory */ #ifndef _PATH_TMP #define _PATH_TMP "/tmp/" #endif /* where locate pid files */ #ifndef _PATH_VARRUN #define _PATH_VARRUN "/var/run/" #endif /* where unerased tmp directory */ #ifndef _PATH_VARTMP #define _PATH_VARTMP "/var/trafd/tmp/" #endif /* where backuped data */ #ifndef PATH_TOSAVE #define PATH_TOSAVE "/var/trafd/" #endif /* where locate trafstat */ #ifndef PATH_TRAFSTAT #define PATH_TRAFSTAT "/usr/local/bin/trafstat" #endif /* where locate trafstat.log */ #ifndef PATH_TRAFSTAT_LOG #define PATH_TRAFSTAT_LOG "/var/log/trafstat.log" #endif /* where locate file with descriptions of the traflog output format */ #ifndef PATH_TRAFLOG_FMT #define PATH_TRAFLOG_FMT "./traflog.format" #endif