xref: /netbsd-src/usr.sbin/mrouted/pathnames.h (revision 76dfffe33547c37f8bdd446e3e4ab0f3c16cea4b)
1 /*	$NetBSD: pathnames.h,v 1.4 1995/12/10 10:07:08 mycroft Exp $	*/
2 
3 /*
4  * The mrouted program is covered by the license in the accompanying file
5  * named "LICENSE".  Use of the mrouted program represents acceptance of
6  * the terms and conditions listed in that file.
7  *
8  * The mrouted program is COPYRIGHT 1989 by The Board of Trustees of
9  * Leland Stanford Junior University.
10  */
11 
12 #define _PATH_MROUTED_CONF	"/etc/mrouted.conf"
13 
14 #if (defined(BSD) && (BSD >= 199103))
15 #define _PATH_MROUTED_PID	"/var/run/mrouted.pid"
16 #define _PATH_MROUTED_GENID	"/var/run/mrouted.genid"
17 #define _PATH_MROUTED_DUMP	"/var/tmp/mrouted.dump"
18 #define _PATH_MROUTED_CACHE	"/var/tmp/mrouted.cache"
19 #else
20 #define _PATH_MROUTED_PID	"/etc/mrouted.pid"
21 #define _PATH_MROUTED_GENID	"/etc/mrouted.genid"
22 #define _PATH_MROUTED_DUMP	"/usr/tmp/mrouted.dump"
23 #define _PATH_MROUTED_CACHE	"/usr/tmp/mrouted.cache"
24 #endif
25