118316Swollman/*
218316Swollman * Copyright (c) 1989, 1993
318316Swollman *	The Regents of the University of California.  All rights reserved.
418316Swollman *
518316Swollman * Redistribution and use in source and binary forms, with or without
618316Swollman * modification, are permitted provided that the following conditions
718316Swollman * are met:
818316Swollman * 1. Redistributions of source code must retain the above copyright
918316Swollman *    notice, this list of conditions and the following disclaimer.
1018316Swollman * 2. Redistributions in binary form must reproduce the above copyright
1118316Swollman *    notice, this list of conditions and the following disclaimer in the
1218316Swollman *    documentation and/or other materials provided with the distribution.
1318316Swollman * 4. Neither the name of the University nor the names of its contributors
1418316Swollman *    may be used to endorse or promote products derived from this software
1518316Swollman *    without specific prior written permission.
1618316Swollman *
1718316Swollman * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1818316Swollman * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1918316Swollman * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2018316Swollman * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2118316Swollman * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2218316Swollman * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2318316Swollman * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2418316Swollman * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2518316Swollman * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2618316Swollman * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2718316Swollman * SUCH DAMAGE.
2818316Swollman *
2918316Swollman *	@(#)pathnames.h	8.1 (Berkeley) 6/5/93
3046303Smarkm *
3150476Speter * $FreeBSD$
3218316Swollman */
3318316Swollman
3418316Swollman#include <paths.h>
3518316Swollman
3618316Swollman#define	_PATH_GATEWAYS	"/etc/gateways"
3718316Swollman
3818316Swollman/* All remotely requested trace files must either start with this prefix
3918316Swollman * or be the same as the tracefile specified when the daemon was started.
4018316Swollman * If this is a directory, routed will create log files in it.  That
41126250Sbms * might be a security problem.  However, if bad guys can write in the
42126250Sbms * default value, /etc, you have far worse security problems than anything
43126250Sbms * this might do.  In other words, it makes no sense to turn this off.
4418316Swollman *
4518316Swollman * Leave this undefined, and only the trace file originally specified
4618316Swollman * when routed was started, if any, will be appended to.
4718316Swollman */
4846303Smarkm#ifndef __NetBSD__
4946303Smarkm#define _PATH_TRACE	"/etc/routed.trace"
5046303Smarkm#else
5146303Smarkm#undef _PATH_TRACE
5218323Swollman#endif
53