Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
54d36d7512
5 changed files with 548 additions and 187 deletions
3
l2tpns.h
3
l2tpns.h
|
|
@ -756,6 +756,7 @@ typedef struct
|
|||
int ppp_max_configure; // max lcp configure requests to send
|
||||
int ppp_max_failure; // max lcp configure naks to send
|
||||
int ppp_keepalive; // send echoes regardless
|
||||
char lcp_renegotiation[12]; // LCP renegotiation (always or on-mismatch)
|
||||
|
||||
char radiussecret[64];
|
||||
char radius_require_message_authenticator[5];
|
||||
|
|
@ -992,6 +993,8 @@ void processchap(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
|
|||
void lcp_open(sessionidt s, tunnelidt t);
|
||||
void lcp_restart(sessionidt s);
|
||||
void processlcp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
|
||||
int processlcpproxy(sessionidt s, tunnelidt t, uint8_t *sent_lcp, uint16_t sent_lcp_n, uint8_t *received_lcp, uint16_t received_lcp_n);
|
||||
int processauthproxy(sessionidt s, tunnelidt t, uint16_t authtype, const char *authname, size_t authchalln, const char authchall[authchalln], size_t authrespn, const char authresp[authrespn]);
|
||||
void processipcp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
|
||||
void processipv6cp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
|
||||
void processipin(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue