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