Lines Matching refs:no_proxy
4708 static bool check_noproxy(const char *name, const char *no_proxy) in check_noproxy() argument
4722 if(no_proxy && no_proxy[0]) { in check_noproxy()
4723 if(strcasecompare("*", no_proxy)) { in check_noproxy()
4729 no_proxy_len = strlen(no_proxy); in check_noproxy()
4738 strchr(separator, no_proxy[tok_start]) != NULL) { in check_noproxy()
4747 strchr(separator, no_proxy[tok_end]) == NULL; ++tok_end) in check_noproxy()
4755 if(no_proxy[tok_start] == '.') in check_noproxy()
4761 if(strncasecompare(no_proxy + tok_start, checkn, in check_noproxy()
4805 char *no_proxy=NULL; in detect_proxy() local
4808 no_proxy=curl_getenv("no_proxy"); in detect_proxy()
4809 if(!no_proxy) in detect_proxy()
4810 no_proxy=curl_getenv("NO_PROXY"); in detect_proxy()
4812 if(!check_noproxy(conn->host.name, no_proxy)) { in detect_proxy()
4855 free(no_proxy); in detect_proxy()