Home
last modified time | relevance | path

Searched refs:authtype (Results 1 – 9 of 9) sorted by relevance

/third_party/curl/
Dbackport-CVE-2022-27782.patch45 - if(data->set.str[STRING_TLSAUTH_USERNAME] && !data->set.ssl.authtype)
46 - data->set.ssl.authtype = CURL_TLSAUTH_SRP; /* default to SRP */
48 + !data->set.ssl.primary.authtype)
49 + data->set.ssl.primary.authtype = CURL_TLSAUTH_SRP; /* default to SRP */
56 - !data->set.proxy_ssl.authtype)
57 - data->set.proxy_ssl.authtype = CURL_TLSAUTH_SRP; /* default to SRP */
58 + !data->set.proxy_ssl.primary.authtype)
59 + data->set.proxy_ssl.primary.authtype = CURL_TLSAUTH_SRP; /* default to
66 - if(data->set.str[STRING_TLSAUTH_USERNAME] && !data->set.ssl.authtype)
67 - data->set.ssl.authtype = CURL_TLSAUTH_SRP; /* default to SRP */
[all …]
Dbackport-pre-CVE-2022-27782.patch22 - if(SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP) {
23 + if((SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP) &&
Dbackport-CVE-2023-27535-pre1.patch175 (data->authtype == needle->authtype) &&
/third_party/lwip/src/netif/ppp/
Dppp.c218 void ppp_set_auth(ppp_pcb *pcb, u8_t authtype, const char *user, const char *passwd) { in ppp_set_auth() argument
222 pcb->settings.refuse_pap = !(authtype & PPPAUTHTYPE_PAP); in ppp_set_auth()
225 pcb->settings.refuse_chap = !(authtype & PPPAUTHTYPE_CHAP); in ppp_set_auth()
227 pcb->settings.refuse_mschap = !(authtype & PPPAUTHTYPE_MSCHAP); in ppp_set_auth()
228 pcb->settings.refuse_mschap_v2 = !(authtype & PPPAUTHTYPE_MSCHAP_V2); in ppp_set_auth()
232 pcb->settings.refuse_eap = !(authtype & PPPAUTHTYPE_EAP); in ppp_set_auth()
/third_party/NuttX/fs/nfs/
Dnfs_util.c191 if (replyh.rpc_verfi.authtype != 0) in nfs_request()
193 error = fxdr_unsigned(int, replyh.rpc_verfi.authtype); in nfs_request()
Drpc.h271 uint32_t authtype; /* auth type */ member
Drpc_clnt.c525 ch->rpc_auth.authtype = rpc_auth_unix; in rpcclnt_fmtheader()
544 ch->rpc_verf.authtype = rpc_auth_null; in rpcclnt_fmtheader()
/third_party/lwip/src/include/netif/ppp/
Dppp.h466 void ppp_set_auth(ppp_pcb *pcb, u8_t authtype, const char *user, const char *passwd);
/third_party/gstreamer/gstplugins_good/gst/rtsp/
Dgstrtspsrc.c3823 GType ciphertype, authtype; in request_rtcp_encoder() local
3827 authtype = g_type_from_name ("GstSrtpAuthType"); in request_rtcp_encoder()
3829 g_value_init (&rtcp_auth, authtype); in request_rtcp_encoder()