Home | History | Annotate | Line # | Download | only in mrouted
      1  1.7      wiz /*	$NetBSD: pathnames.h,v 1.7 2003/03/05 21:05:39 wiz 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.2  mycroft #define _PATH_MROUTED_GENID	"/var/run/mrouted.genid"
     16  1.1   brezak #define _PATH_MROUTED_DUMP	"/var/tmp/mrouted.dump"
     17  1.2  mycroft #define _PATH_MROUTED_CACHE	"/var/tmp/mrouted.cache"
     18  1.4  mycroft #else
     19  1.4  mycroft #define _PATH_MROUTED_GENID	"/etc/mrouted.genid"
     20  1.4  mycroft #define _PATH_MROUTED_DUMP	"/usr/tmp/mrouted.dump"
     21  1.4  mycroft #define _PATH_MROUTED_CACHE	"/usr/tmp/mrouted.cache"
     22  1.4  mycroft #endif
     23