mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-05 09:14:03 +00:00
2897e6fd5f
mrouted-3.5n. This is being splatted onto the head rather than properly imported thanks to the ``delete trailing whitespace'' screw. This code is now actively working in an operational environment (the DARTNET) so I have some confidence that the basic functionality actually works. Obtained from: Bill Fenner, PARC, and ISI
26 lines
882 B
C
26 lines
882 B
C
/*
|
|
* The mrouted program is covered by the license in the accompanying file
|
|
* named "LICENSE". Use of the mrouted program represents acceptance of
|
|
* the terms and conditions listed in that file.
|
|
*
|
|
* The mrouted program is COPYRIGHT 1989 by The Board of Trustees of
|
|
* Leland Stanford Junior University.
|
|
*
|
|
*
|
|
* $Id: pathnames.h,v 3.5 1995/05/09 01:00:39 fenner Exp $
|
|
*/
|
|
|
|
#define _PATH_MROUTED_CONF "/etc/mrouted.conf"
|
|
|
|
#if (defined(BSD) && (BSD >= 199103))
|
|
#define _PATH_MROUTED_PID "/var/run/mrouted.pid"
|
|
#define _PATH_MROUTED_GENID "/var/run/mrouted.genid"
|
|
#define _PATH_MROUTED_DUMP "/var/tmp/mrouted.dump"
|
|
#define _PATH_MROUTED_CACHE "/var/tmp/mrouted.cache"
|
|
#else
|
|
#define _PATH_MROUTED_PID "/etc/mrouted.pid"
|
|
#define _PATH_MROUTED_GENID "/etc/mrouted.genid"
|
|
#define _PATH_MROUTED_DUMP "/usr/tmp/mrouted.dump"
|
|
#define _PATH_MROUTED_CACHE "/usr/tmp/mrouted.cache"
|
|
#endif
|