Searched refs:ipcp_wantoptions (Results 1 – 6 of 6) sorted by relevance
/third_party/lwip/src/netif/ppp/ |
D | ipcp.c | 160 { "novj", o_bool, &ipcp_wantoptions[0].neg_vj, 162 { "-vj", o_bool, &ipcp_wantoptions[0].neg_vj, 166 { "novjccomp", o_bool, &ipcp_wantoptions[0].cflag, 169 { "-vjccomp", o_bool, &ipcp_wantoptions[0].cflag, 177 { "ipcp-accept-local", o_bool, &ipcp_wantoptions[0].accept_local, 179 { "ipcp-accept-remote", o_bool, &ipcp_wantoptions[0].accept_remote, 202 { "defaultroute", o_bool, &ipcp_wantoptions[0].default_route, 206 &ipcp_wantoptions[0].default_route }, 209 &ipcp_wantoptions[0].default_route }, 212 &ipcp_wantoptions[0].replace_default_route, [all …]
|
D | ipv6cp.c | 1096 eui64_setlo32(wo->ourid, lwip_ntohl(ipcp_wantoptions[0].ouraddr)); 1107 eui64_setlo32(wo->hisid, lwip_ntohl(ipcp_wantoptions[0].hisaddr));
|
D | pppol2tp.c | 293 ipcp_wo = &ppp->ipcp_wantoptions; in pppol2tp_connect()
|
D | pppoe.c | 924 ipcp_wo = &ppp->ipcp_wantoptions; in pppoe_connect()
|
D | auth.c | 2048 struct ipcp_options *wo = &ipcp_wantoptions[unit];
|
/third_party/lwip/src/include/netif/ppp/ |
D | ppp.h | 411 ipcp_options ipcp_wantoptions; /* Options that we want to request */ member 483 #define ppp_set_ipcp_ouraddr(ppp, addr) do { ppp->ipcp_wantoptions.ouraddr = ip4_addr_get_u32(addr)… 484 … ppp->ask_for_local = ppp->ipcp_wantoptions.ouraddr != 0; } while(0) 485 #define ppp_set_ipcp_hisaddr(ppp, addr) (ppp->ipcp_wantoptions.hisaddr = ip4_addr_get_u32(addr))
|