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