]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/pim6sd/pathnames.h
This commit was generated by cvs2svn to compensate for changes in r75937,
[FreeBSD/FreeBSD.git] / usr.sbin / pim6sd / pathnames.h
1 /*
2  *  Copyright (c) 1998 by the University of Southern California.
3  *  All rights reserved.
4  *
5  *  Permission to use, copy, modify, and distribute this software and
6  *  its documentation in source and binary forms for lawful
7  *  purposes and without fee is hereby granted, provided
8  *  that the above copyright notice appear in all copies and that both
9  *  the copyright notice and this permission notice appear in supporting
10  *  documentation, and that any documentation, advertising materials,
11  *  and other materials related to such distribution and use acknowledge
12  *  that the software was developed by the University of Southern
13  *  California and/or Information Sciences Institute.
14  *  The name of the University of Southern California may not
15  *  be used to endorse or promote products derived from this software
16  *  without specific prior written permission.
17  *
18  *  THE UNIVERSITY OF SOUTHERN CALIFORNIA DOES NOT MAKE ANY REPRESENTATIONS
19  *  ABOUT THE SUITABILITY OF THIS SOFTWARE FOR ANY PURPOSE.  THIS SOFTWARE IS
20  *  PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,
21  *  INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
22  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND
23  *  NON-INFRINGEMENT.
24  *
25  *  IN NO EVENT SHALL USC, OR ANY OTHER CONTRIBUTOR BE LIABLE FOR ANY
26  *  SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES, WHETHER IN CONTRACT,
27  *  TORT, OR OTHER FORM OF ACTION, ARISING OUT OF OR IN CONNECTION WITH,
28  *  THE USE OR PERFORMANCE OF THIS SOFTWARE.
29  *
30  *  Other copyrights might apply to parts of this software and are so
31  *  noted when applicable.
32  */
33 /*
34  *  Questions concerning this software should be directed to
35  *  Mickael Hoerdt (hoerdt@clarinet.u-strasbg.fr) LSIIT Strasbourg.
36  *
37  */
38 /*
39  * This program has been derived from pim6dd.        
40  * The pim6dd program is covered by the license in the accompanying file
41  * named "LICENSE.pim6dd".
42  */
43 /*
44  * This program has been derived from pimd.        
45  * The pimd program is covered by the license in the accompanying file
46  * named "LICENSE.pimd".
47  *
48  */
49 /*
50  * Part of this program has been derived from mrouted.
51  * The mrouted program is covered by the license in the accompanying file
52  * named "LICENSE.mrouted".
53  *
54  * The mrouted program is COPYRIGHT 1989 by The Board of Trustees of
55  * Leland Stanford Junior University.
56  *
57  * $FreeBSD$
58  */
59
60 #ifndef PATHNAMES_H
61 #define PATHNAMES_H
62
63 #define _PATH_PIM6D_CONF        "/etc/pim6sd.conf"
64 #define _PATH_PIM6D_LOGFILE     "/var/log/pim6sd.log"
65
66 #if (defined(BSD) && (BSD >= 199103))
67         #define _PATH_PIM6D_PID         "/var/run/pim6sd.pid"
68         #define _PATH_PIM6D_GENID       "/var/run/pim6sd.genid"
69         #define _PATH_PIM6D_DUMP        "/var/run/pim6sd.dump"
70         #define _PATH_PIM6D_CACHE       "/var/run/pim6sd.cache"
71         #define _PATH_PIM6D_STAT        "/var/run/pim6sd.stat"
72 #else
73         #define _PATH_PIM6D_PID         "/etc/pim6sd.pid"
74         #define _PATH_PIM6D_GENID       "/etc/pim6sd.genid"
75         #define _PATH_PIM6D_DUMP        "/etc/pim6sd.dump"
76         #define _PATH_PIM6D_CACHE       "/etc/pim6sd.cache"
77         #define _PATH_PIM6D_STAT        "/etc/pim6sd.stat"
78 #endif
79
80 #endif