Lines Matching refs:CONNECT
59 H1_TUNNEL_CONNECT, /* CONNECT request is being send */
60 H1_TUNNEL_RECEIVE, /* CONNECT answer is being received */
61 H1_TUNNEL_RESPONSE, /* CONNECT response received completely */
66 /* struct for HTTP CONNECT tunneling */
68 struct HTTP CONNECT;
120 failf(data, "%s cannot be done over CONNECT", cf->conn->handler->scheme);
140 connkeep(cf->conn, "HTTP proxy CONNECT");
177 infof(data, "CONNECT phase completed");
244 failf(data, "Failed sending CONNECT to proxy");
281 failf(data, "Failed sending CONNECT to proxy");
305 CURL_TRC_CF(data, cf, "CONNECT: fwd auth header '%s'", header);
316 header fields received in a successful response to CONNECT.
318 infof(data, "Ignoring Content-Length in CONNECT %03d response",
332 header fields received in a successful response to CONNECT.
335 "CONNECT %03d response", k->httpcode);
340 infof(data, "CONNECT responded chunked");
408 infof(data, "Proxy CONNECT connection closed");
412 failf(data, "Proxy CONNECT aborted");
450 failf(data, "CONNECT response too large");
501 CURL_TRC_CF(data, cf, "CONNECT: no content-length or chunked");
543 char *authority; /* for CONNECT, the destination host + port */
568 /* The Hyper version of CONNECT */
584 char *authority = NULL; /* for CONNECT */
658 if(hyper_request_set_method(req, (uint8_t *)"CONNECT",
659 strlen("CONNECT"))) {
683 char *se = aprintf("CONNECT %s HTTP/1.1\r\n", authority);
692 result = Curl_http_output_auth(data, conn, "CONNECT", HTTPREQ_GET,
875 failf(data, "Proxy CONNECT aborted due to timeout");
882 /* Prepare the CONNECT request and make a first attempt to send. */
883 CURL_TRC_CF(data, cf, "CONNECT start");
892 CURL_TRC_CF(data, cf, "CONNECT send");
901 CURL_TRC_CF(data, cf, "CONNECT receive");
915 CURL_TRC_CF(data, cf, "CONNECT response");
927 CURL_TRC_CF(data, cf, "CONNECT need to close+open");
930 connkeep(conn, "HTTP proxy CONNECT");
952 streamclose(conn, "proxy CONNECT failure");
954 failf(data, "CONNECT tunnel failed, response %d", data->req.httpcode);
959 infof(data, "CONNECT tunnel established, response %d",
1030 /* when we've sent a CONNECT to a proxy, we should rather either
1034 if(ts->CONNECT.sending == HTTPSEND_REQUEST)