diff options
author | James Carlson <carlsonj@workingcode.com> | 2002-11-02 19:48:13 +0000 |
---|---|---|
committer | James Carlson <carlsonj@workingcode.com> | 2002-11-02 19:48:13 +0000 |
commit | d741a3b912f17d84dc8dc87474e0b989c775de50 (patch) | |
tree | 5ce171ff71a164b9e8b41247186e89935bdfc556 /pppd/pathnames.h | |
parent | 767b224b09e000895b0918937edd19041e40e6f6 (diff) | |
download | ppp-d741a3b912f17d84dc8dc87474e0b989c775de50.tar.gz |
Added EAP support with MD5-Challenge and SRP-SHA1 methods. Tested
on Linux (with both methods) and on Solaris (just MD5-Challenge).
Fixed several Makefiles that were missing references to required
modules such as tty.o.
Diffstat (limited to 'pppd/pathnames.h')
-rw-r--r-- | pppd/pathnames.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pppd/pathnames.h b/pppd/pathnames.h index ebac0f0..dccf0fd 100644 --- a/pppd/pathnames.h +++ b/pppd/pathnames.h @@ -1,7 +1,7 @@ /* * define path names * - * $Id: pathnames.h,v 1.14 2001/03/08 05:15:37 paulus Exp $ + * $Id: pathnames.h,v 1.15 2002/11/02 19:48:13 carlsonj Exp $ */ #ifdef HAVE_PATHS_H @@ -20,6 +20,7 @@ #define _PATH_UPAPFILE _ROOT_PATH "/etc/ppp/pap-secrets" #define _PATH_CHAPFILE _ROOT_PATH "/etc/ppp/chap-secrets" +#define _PATH_SRPFILE _ROOT_PATH "/etc/ppp/srp-secrets" #define _PATH_SYSOPTIONS _ROOT_PATH "/etc/ppp/options" #define _PATH_IPUP _ROOT_PATH "/etc/ppp/ip-up" #define _PATH_IPDOWN _ROOT_PATH "/etc/ppp/ip-down" @@ -31,6 +32,7 @@ #define _PATH_RESOLV _ROOT_PATH "/etc/ppp/resolv.conf" #define _PATH_USEROPT ".ppprc" +#define _PATH_PSEUDONYM ".ppp_pseudonym" #ifdef INET6 #define _PATH_IPV6UP _ROOT_PATH "/etc/ppp/ipv6-up" |