Home
last modified time | relevance | path

Searched refs:proxyauth (Results 1 – 11 of 11) sorted by relevance

/third_party/openssl/crypto/http/
Dhttp_client.c1324 char *proxyauth, *proxyauthenc = NULL; in OSSL_HTTP_proxy_connect() local
1328 proxyauth = OPENSSL_malloc(len + 1); in OSSL_HTTP_proxy_connect()
1329 if (proxyauth == NULL) in OSSL_HTTP_proxy_connect()
1331 if (BIO_snprintf(proxyauth, len + 1, "%s:%s", proxyuser, in OSSL_HTTP_proxy_connect()
1334 proxyauthenc = base64encode(proxyauth, len); in OSSL_HTTP_proxy_connect()
1340 OPENSSL_clear_free(proxyauth, len); in OSSL_HTTP_proxy_connect()
/third_party/node/deps/openssl/openssl/crypto/http/
Dhttp_client.c1335 char *proxyauth, *proxyauthenc = NULL; in OSSL_HTTP_proxy_connect() local
1339 proxyauth = OPENSSL_malloc(len + 1); in OSSL_HTTP_proxy_connect()
1340 if (proxyauth == NULL) in OSSL_HTTP_proxy_connect()
1342 if (BIO_snprintf(proxyauth, len + 1, "%s:%s", proxyuser, in OSSL_HTTP_proxy_connect()
1345 proxyauthenc = base64encode(proxyauth, len); in OSSL_HTTP_proxy_connect()
1351 OPENSSL_clear_free(proxyauth, len); in OSSL_HTTP_proxy_connect()
/third_party/ffmpeg/libavformat/
Dhttp.c186 const char *proxyauth);
206 char auth[1024], proxyauth[1024] = ""; in http_open_cnx_internal() local
259 av_url_split(NULL, 0, proxyauth, sizeof(proxyauth), in http_open_cnx_internal()
274 h, path, local_path, hoststr, auth, proxyauth); in http_open_cnx_internal()
1401 const char *proxyauth) in http_connect() argument
1430 proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth, in http_connect()
/third_party/curl/tests/data/
Dtest1021100 HTTP proxy CONNECT with any proxyauth and proxy offers NTLM and close
/third_party/curl/lib/
Dcf-h1-proxy.c403 if(data->set.proxyauth && data->state.authproxy.avail && in recv_CONNECT_resp()
Dsetopt.c1091 data->set.proxyauth = auth; in Curl_vsetopt()
1127 data->set.proxyauth = auth; in Curl_vsetopt()
Durldata.h1659 unsigned long proxyauth; /* kind of proxy authentication to use (bitmask) */ member
Dtransfer.c1105 data->state.authproxy.want = data->set.proxyauth; in Curl_pretransfer()
Durl.c401 set->proxyauth = CURLAUTH_BASIC; /* defaults to basic */ in Curl_init_userdefined()
/third_party/python/Lib/
Dimaplib.py699 def proxyauth(self, user): member in IMAP4
/third_party/python/Doc/library/
Dimaplib.rst390 .. method:: IMAP4.proxyauth(user)