/third_party/mbedtls/tests/scripts/ |
H A D | docker_env.sh | 21 # (http_proxy and https_proxy) set appropriately. If an alternate Docker 67 ${http_proxy+--build-arg http_proxy=${http_proxy}} \
|
/third_party/curl/lib/ |
H A D | url.c | 114 #include "http_proxy.h" 583 Curl_free_idnconverted_hostname(&conn->http_proxy.host); in conn_free() 585 Curl_safefree(conn->http_proxy.user); in conn_free() 587 Curl_safefree(conn->http_proxy.passwd); in conn_free() 589 Curl_safefree(conn->http_proxy.host.rawalloc); /* http proxy name buffer */ in conn_free() 1091 if(!proxy_info_matches(&needle->http_proxy, &check->http_proxy)) in ConnectionExists() 1094 if(IS_HTTPS_PROXY(needle->http_proxy.proxytype)) { in ConnectionExists() 1096 if(needle->http_proxy.proxytype != check->http_proxy in ConnectionExists() [all...] |
H A D | http_negotiate.c | 57 userp = conn->http_proxy.user; in Curl_input_negotiate() 58 passwdp = conn->http_proxy.passwd; in Curl_input_negotiate() 61 host = conn->http_proxy.host.name; in Curl_input_negotiate()
|
H A D | http_proxy.c | 27 #include "http_proxy.h" 250 *phost = cf->conn->http_proxy.host.name; in Curl_cf_http_proxy_get_host() 251 *pdisplay_host = cf->conn->http_proxy.host.dispname; in Curl_cf_http_proxy_get_host() 252 *pport = (int)cf->conn->http_proxy.port; in Curl_cf_http_proxy_get_host()
|
H A D | http_ntlm.c | 162 hostname = conn->http_proxy.host.name; in Curl_output_ntlm()
|
H A D | socks.c | 1161 conn->http_proxy.host.name : in socks_proxy_cf_connect() 1167 conn->bits.httpproxy ? (int)conn->http_proxy.port : in socks_proxy_cf_connect() 1237 *pdisplay_host = cf->conn->http_proxy.host.dispname; in socks_cf_get_host()
|
H A D | curl_ntlm_wb.c | 404 userp = conn->http_proxy.user; in Curl_output_ntlm_wb()
|
H A D | cf-h1-proxy.c | 38 #include "http_proxy.h" 238 http_minor = (cf->conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) ? 0 : 1; in start_CONNECT() 699 if((conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) && in start_CONNECT()
|
H A D | conncache.c | 133 hostname = conn->http_proxy.host.name; in hashkey()
|
H A D | urldata.h | 931 struct proxy_info http_proxy; member 1108 (c)->bits.httpproxy ? (c)->http_proxy.host.dispname : \
|
H A D | connect.c | 79 #include "http_proxy.h" 714 hostname = conn->http_proxy.host.name; in is_connected() 1219 if(IS_HTTPS_PROXY(cf->conn->http_proxy.proxytype) in cf_setup_connect()
|
H A D | multi.c | 49 #include "http_proxy.h" 766 conn->bits.httpproxy ? conn->http_proxy.host.dispname : in multi_done() 2052 hostname = conn->http_proxy.host.name;
|
H A D | ftp.c | 73 #include "http_proxy.h" 1931 conn->socks_proxy.host.name : conn->http_proxy.host.name; in ftp_state_pasv_resp()
|
H A D | http.c | 82 #include "http_proxy.h" 1273 || IS_HTTPS_PROXY(conn->http_proxy.proxytype) in Curl_buffer_send()
|
/third_party/curl/docs/examples/ |
H A D | synctime.c | 108 char http_proxy[MAX_STRING1]; member 252 *conf->http_proxy = 0; in conf_init() 286 snprintf(conf->http_proxy, MAX_STRING, "%s", &argv[OptionIndex][8]); in main() 314 SyncTime_CURL_Init(curl, conf->http_proxy, conf->proxy_user); in main()
|
/third_party/ffmpeg/libavformat/ |
H A D | tls.h | 37 char *http_proxy; member 54 {"http_proxy", "Set proxy to tunnel through", offsetof(pstruct, options_field . http_proxy), AV_OPT_TYPE_STRING, .flags = TLS_OPTFL }
|
H A D | tls.c | 94 env_http_proxy = getenv_utf8("http_proxy"); in ff_tls_open_underlying() 95 proxy_path = c->http_proxy ? c->http_proxy : env_http_proxy; in ff_tls_open_underlying()
|
H A D | http.c | 80 char *http_proxy; member 149 { "http_proxy", "set HTTP proxy to tunnel through", OFFSET(http_proxy), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E }, 217 env_http_proxy = getenv_utf8("http_proxy"); in http_open_cnx_internal() 218 proxy_path = s->http_proxy ? s->http_proxy : env_http_proxy; in http_open_cnx_internal() 230 /* pass http_proxy to underlying protocol */ in http_open_cnx_internal() 231 if (s->http_proxy) { in http_open_cnx_internal() 232 err = av_dict_set(options, "http_proxy", s->http_proxy, in http_open_cnx_internal() [all...] |
/third_party/node/deps/npm/node_modules/@npmcli/agent/lib/ |
H A D | proxy.js | 13 const PROXY_ENV_KEYS = new Set(['https_proxy', 'http_proxy', 'proxy', 'no_proxy']) 70 : PROXY_ENV.https_proxy || PROXY_ENV.http_proxy || PROXY_ENV.proxy
|
/third_party/curl/lib/vtls/ |
H A D | vtls.c | 1556 ehostname = cf->conn->http_proxy.host.name; in Curl_ssl_peer_init() 1557 edispname = cf->conn->http_proxy.host.dispname; in Curl_ssl_peer_init() 1558 eport = cf->conn->http_proxy.port; in Curl_ssl_peer_init() 1947 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS2) { in cf_ssl_proxy_create()
|
/third_party/curl/tests/ |
H A D | runner.pm | 676 $ENV{http_proxy} = $proxy_address;
|
/third_party/curl/lib/vssh/ |
H A D | libssh2.c | 3292 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS) { in ssh_connect()
|