l2tp: Add PAP auth information in ICCN

To support proxy auth.
This commit is contained in:
Samuel Thibault 2025-03-23 03:17:41 +01:00
parent e701644d37
commit 40796d2adb
4 changed files with 37 additions and 0 deletions

View file

@ -425,6 +425,14 @@ typedef struct
// Last Sent LCP ConfReq and its length
uint8_t lcp_last_sent_confreq[MAXLCPLENGTH];
int lcp_last_sent_confreq_n;
// Negotiated authentication type
uint16_t auth_type;
// Negotiated authentication ID
uint16_t auth_id;
// Negotiated authentication name
uint8_t auth_name[64];
// Negotiated authentication response
uint8_t auth_resp[64];
// our MRU
uint16_t ppp_mru;