X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fpppd.h;h=a35deaa8e00ac19316ea09c1fd6c1534a142c1a6;hb=e87fe1bbd37a1486c5223f110e9ce3ef75971f93;hp=f44fe016c82847b6f402a635329aa082eba5d897;hpb=ad3937a0a38a696eb1a37dbf8f92e8e6072cdccb;p=ppp.git diff --git a/pppd/pppd.h b/pppd/pppd.h index f44fe01..a35deaa 100644 --- a/pppd/pppd.h +++ b/pppd/pppd.h @@ -342,6 +342,12 @@ extern bool dump_options; /* print out option values */ extern bool dryrun; /* check everything, print options, exit */ extern int child_wait; /* # seconds to wait for children at end */ +#ifdef USE_EAPTLS +extern char *crl_dir; +extern char *crl_file; +extern char *max_tls_version; +#endif /* USE_EAPTLS */ + #ifdef MAXOCTETS extern unsigned int maxoctets; /* Maximum octetes per session (in bytes) */ extern int maxoctets_dir; /* Direction : @@ -766,6 +772,10 @@ extern int (*chap_check_hook) __P((void)); extern int (*chap_passwd_hook) __P((char *user, char *passwd)); extern void (*multilink_join_hook) __P((void)); +#ifdef USE_EAPTLS +extern int (*eaptls_passwd_hook) __P((char *user, char *passwd)); +#endif + /* Let a plugin snoop sent and received packets. Useful for L2TP */ extern void (*snoop_recv_hook) __P((unsigned char *p, int len)); extern void (*snoop_send_hook) __P((unsigned char *p, int len));