Home | History | Annotate | Download | only in lib

Lines Matching refs:http

31 #include "http.h"
84 /* for [protocol] tunneled through HTTP proxy */
85 struct HTTP http_proxy;
92 /* We want "seamless" operations through HTTP proxy tunnel */
94 /* Curl_proxyCONNECT is based on a pointer to a struct HTTP at the
95 * member conn->proto.http; we want [protocol] through HTTP and we have
96 * to change the member temporarily for connecting to the HTTP
106 connkeep(conn, "HTTP proxy CONNECT");
134 /* no HTTP tunnel proxy, just return */
208 infof(data, "Establish HTTP proxy tunnel to %s:%d\n",
238 const char *http = (conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) ?
271 "CONNECT %s HTTP/%s\r\n"
277 http,
551 else if(2 == sscanf(s->line_start, "HTTP/1.%d %d",
554 /* store the HTTP code from the proxy */
592 * means the HTTP authentication is still going on so if the tunnel
621 failf(data, "Received HTTP code %d from proxy after CONNECT",
655 * Curl_proxyCONNECT() requires that we're connected to a HTTP proxy. This