Lines Matching refs:no_proxy
4360 static bool check_noproxy(const char* name, const char* no_proxy) in check_noproxy() argument
4374 if(no_proxy && no_proxy[0]) { in check_noproxy()
4375 if(Curl_raw_equal("*", no_proxy)) { in check_noproxy()
4381 no_proxy_len = strlen(no_proxy); in check_noproxy()
4390 strchr(separator, no_proxy[tok_start]) != NULL) { in check_noproxy()
4399 strchr(separator, no_proxy[tok_end]) == NULL; ++tok_end) in check_noproxy()
4407 if(no_proxy[tok_start] == '.') in check_noproxy()
4413 if(Curl_raw_nequal(no_proxy + tok_start, checkn, in check_noproxy()
4457 char *no_proxy=NULL; in detect_proxy() local
4460 no_proxy=curl_getenv("no_proxy"); in detect_proxy()
4461 if(!no_proxy) in detect_proxy()
4462 no_proxy=curl_getenv("NO_PROXY"); in detect_proxy()
4464 if(!check_noproxy(conn->host.name, no_proxy)) { in detect_proxy()
4507 free(no_proxy); in detect_proxy()