Home
last modified time | relevance | path

Searched refs:no_proxy (Results 1 – 19 of 19) sorted by relevance

/external/curl/tests/data/
Dtest110133 no_proxy=%HOSTIP
/external/curl/lib/
Durl.c2314 static bool check_noproxy(const char *name, const char *no_proxy) in check_noproxy() argument
2321 if(no_proxy && no_proxy[0]) { in check_noproxy()
2328 if(strcasecompare("*", no_proxy)) { in check_noproxy()
2334 no_proxy_len = strlen(no_proxy); in check_noproxy()
2348 strchr(separator, no_proxy[tok_start]) != NULL) { in check_noproxy()
2357 strchr(separator, no_proxy[tok_end]) == NULL; ++tok_end) in check_noproxy()
2365 if(no_proxy[tok_start] == '.') in check_noproxy()
2371 if(strncasecompare(no_proxy + tok_start, checkn, in check_noproxy()
2709 char *no_proxy = NULL; in create_conn_helper_init_proxy() local
2747 no_proxy = curl_getenv(p); in create_conn_helper_init_proxy()
[all …]
/external/python/httplib2/
DCHANGELOG51 If no_proxy environment value ends with comma then proxy is not used
62 - no_proxy=foo.bar will only skip proxy for exact hostname match
63 - no_proxy=.wild.card will skip proxy for any.subdomains.wild.card
/external/python/cpython2/Lib/
Durllib.py1417 no_proxy = proxies['no']
1421 if no_proxy == '*':
1426 no_proxy_list = [proxy.strip() for proxy in no_proxy.split(',')]
/external/python/cpython3/Lib/urllib/
Drequest.py2498 no_proxy = proxies['no']
2502 if no_proxy == '*':
2507 no_proxy_list = [proxy.strip() for proxy in no_proxy.split(',')]
/external/python/cpython2/Doc/library/
Durllib.rst105 The :envvar:`no_proxy` environment variable can be used to specify hosts which
147 :envvar:`no_proxy` environment variable.
/external/python/cpython3/Misc/NEWS.d/
D3.6.1rc1.rst447 In urllib.request, suffixes in no_proxy environment variable with leading
D3.5.4rc1.rst926 In urllib.request, suffixes in no_proxy environment variable with leading
D3.5.2rc1.rst692 In urllib.request, change the proxy bypass host checking against no_proxy to
D3.6.0a1.rst1095 In urllib.request, change the proxy bypass host checking against no_proxy to
D3.7.0a1.rst3678 In urllib.request, suffixes in no_proxy environment variable with leading
/external/python/cpython2/Misc/NEWS.d/
D2.7.12rc1.rst401 In urllib, change the proxy bypass host checking against no_proxy to be
D2.7.15rc1.rst1154 In urllib, suffixes in no_proxy environment variable with leading dots could
D2.6a1.rst1642 respect the ``no_proxy`` environment variable when using the ``http_proxy``
D2.7a1.rst1934 Fixed the issue urllib2 doesn't respect "no_proxy" environment.
/external/python/cpython3/Doc/library/
Durllib.request.rst307 The :envvar:`no_proxy` environment variable can be used to specify hosts
/external/libxml2/
DNEWS1364 (Albert Chin), xmllint --c14n option, no_proxy environment (Mike Hommey),
DChangeLog6273 Mike Hommey for $no_proxy, c.f. #133470
/external/python/cpython3/Misc/
DHISTORY14015 - Issue #6894: Fixed the issue urllib2 doesn't respect "no_proxy" environment.