Home
last modified time | relevance | path

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

/freebsd/libexec/phttpget/
H A Dphttpget.c46 static const char * env_HTTP_PROXY; variable
129 env_HTTP_PROXY = getenv("HTTP_PROXY"); in readenv()
130 if (env_HTTP_PROXY == NULL) in readenv()
131 env_HTTP_PROXY = getenv("http_proxy"); in readenv()
132 if (env_HTTP_PROXY != NULL) { in readenv()
133 if (strncmp(env_HTTP_PROXY, "http://", 7) == 0) in readenv()
134 env_HTTP_PROXY += 7; in readenv()
135 p = strchr(env_HTTP_PROXY, '/'); in readenv()
138 p = strchr(env_HTTP_PROXY, ':'); in readenv()
147 if ((env_HTTP_PROXY != NULL) && in readenv()
[all …]