Home
last modified time | relevance | path

Searched refs:auth_required (Results 1 – 2 of 2) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dauth.c177 bool auth_required = 0; /* Always require authentication from peer */
236 "Require PAP authentication from peer", 1, &auth_required },
238 "Require PAP authentication from peer", 1, &auth_required },
244 "Require CHAP authentication from peer", 1, &auth_required },
246 "Require CHAP authentication from peer", 1, &auth_required },
261 { "auth", o_bool, &auth_required,
263 { "noauth", o_bool, &auth_required,
463 if (ppp_settings.auth_required && !(go->neg_chap || go->neg_upap)) { in link_established()
801 if (ppp_settings.auth_required && !wo->neg_chap && !wo->neg_upap) {
816 if (ppp_settings.auth_required && !can_auth) {
[all …]
Dppp_impl.h286 u_int auth_required : 1; /* Peer is required to authenticate */ member