File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / pimdd / pathnames.h
Revision 1.1.1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Wed Jun 14 09:28:09 2017 UTC (7 years ago) by misho
Branches: v0_2_1p0
Diff to: branchpoint 1.1.1.1: preferred, unified
patches from ports

    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:  *  Pavlin Ivanov Radoslavov (pavlin@catarina.usc.edu)
   36:  *
   37:  *  $Id: pathnames.h,v 1.1.1.1.2.1 2017/06/14 09:28:09 misho Exp $
   38:  */
   39: /*
   40:  * Part of this program has been derived from mrouted.
   41:  * The mrouted program is covered by the license in the accompanying file
   42:  * named "LICENSE.mrouted".
   43:  *
   44:  * The mrouted program is COPYRIGHT 1989 by The Board of Trustees of
   45:  * Leland Stanford Junior University.
   46:  *
   47:  */
   48: 
   49: 
   50: #ifndef _PATH_PIMD_CONF
   51: #define _PATH_PIMD_CONF		"/etc/pimd.conf"
   52: #endif
   53: 
   54: #if (defined(BSD) && (BSD >= 199103))
   55: #define _PATH_PIMD_PID		"/var/run/pimdd.pid"
   56: #define _PATH_PIMD_GENID	"/var/run/pimdd.genid"
   57: #define _PATH_PIMD_DUMP		"/var/tmp/pimdd.dump"
   58: #define _PATH_PIMD_CACHE	"/var/tmp/pimdd.cache"
   59: #else
   60: #define _PATH_PIMD_PID		"/etc/pimdd.pid"
   61: #define _PATH_PIMD_GENID	"/etc/pimdd.genid"
   62: #define _PATH_PIMD_DUMP		"/usr/tmp/pimdd.dump"
   63: #define _PATH_PIMD_CACHE	"/usr/tmp/pimdd.cache"
   64: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>