diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /usr.sbin/pppd/pathnames.h |
initial import of NetBSD tree
Diffstat (limited to 'usr.sbin/pppd/pathnames.h')
-rw-r--r-- | usr.sbin/pppd/pathnames.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/usr.sbin/pppd/pathnames.h b/usr.sbin/pppd/pathnames.h new file mode 100644 index 00000000000..a660915b1c8 --- /dev/null +++ b/usr.sbin/pppd/pathnames.h @@ -0,0 +1,22 @@ +/* + * define path names + * + * $Id: pathnames.h,v 1.1 1995/10/18 08:47:59 deraadt Exp $ + */ + +#ifdef HAVE_PATHS_H +#include <paths.h> + +#else +#define _PATH_VARRUN "/etc/ppp/" +#define _PATH_DEVNULL "/dev/null" +#endif + +#define _PATH_UPAPFILE "/etc/ppp/pap-secrets" +#define _PATH_CHAPFILE "/etc/ppp/chap-secrets" +#define _PATH_SYSOPTIONS "/etc/ppp/options" +#define _PATH_IPUP "/etc/ppp/ip-up" +#define _PATH_IPDOWN "/etc/ppp/ip-down" +#define _PATH_TTYOPT "/etc/ppp/options." +#define _PATH_CONNERRS "/etc/ppp/connect-errors" +#define _PATH_USEROPT ".ppprc" |