source: rtems/cpukit/pppd/pathnames.h @ 4bf1801

4.104.114.84.95
Last change on this file since 4bf1801 was d0950ad, checked in by Joel Sherrill <joel.sherrill@…>, on 11/30/99 at 22:12:50

Added port of ppp-2.3.5 from Tomasz Domin <dot@…> of ComArch? SA.
Tomasz only tested this on the mpc823.

The official site for the original source for this PPP implementation is:

ftp://cs.anu.edu.au/pub/software/ppp

NOTE: As of 11/30/1999, the current version of this source is 2.3.10.

  • Property mode set to 100644
File size: 747 bytes
Line 
1/*
2 * define path names
3 *
4 * $Id$
5 */
6
7#ifdef HAVE_PATHS_H
8#include <paths.h>
9
10#else
11#define _PATH_VARRUN    "/etc/ppp/"
12#define _PATH_DEVNULL   "/dev/null"
13#endif
14
15#define _PATH_UPAPFILE  "/etc/ppp/pap-secrets"
16#define _PATH_CHAPFILE  "/etc/ppp/chap-secrets"
17#define _PATH_SYSOPTIONS "/etc/ppp/options"
18#define _PATH_IPUP      "/etc/ppp/ip-up"
19#define _PATH_IPDOWN    "/etc/ppp/ip-down"
20#define _PATH_AUTHUP    "/etc/ppp/auth-up"
21#define _PATH_AUTHDOWN  "/etc/ppp/auth-down"
22#define _PATH_TTYOPT    "/etc/ppp/options."
23#define _PATH_CONNERRS  "/etc/ppp/connect-errors"
24#define _PATH_USEROPT   ".ppprc"
25#define _PATH_PEERFILES "/etc/ppp/peers/"
26
27#ifdef IPX_CHANGE
28#define _PATH_IPXUP     "/etc/ppp/ipx-up"
29#define _PATH_IPXDOWN   "/etc/ppp/ipx-down"
30#endif /* IPX_CHANGE */
Note: See TracBrowser for help on using the repository browser.