Searched refs:CONNECT (Results 1 - 12 of 12) sorted by relevance
/third_party/node/deps/llhttp/include/ |
H A D | llhttp.h | 209 XX(5, CONNECT, CONNECT) \ 263 XX(5, CONNECT, CONNECT) \ 426 * In a special case of CONNECT/Upgrade request/response `HPE_PAUSED_UPGRADE`
|
/third_party/nghttp2/third-party/llhttp/include/ |
H A D | llhttp.h | 334 XX(5, CONNECT, CONNECT) \ 388 XX(5, CONNECT, CONNECT) \ 658 * In a special case of CONNECT/Upgrade request/response `HPE_PAUSED_UPGRADE`
|
/third_party/python/Lib/http/ |
H A D | __init__.py | 172 CONNECT = 'CONNECT', 'Establish a connection to the server.' variable in HTTPMethod
|
/third_party/node/deps/npm/node_modules/https-proxy-agent/dist/ |
H A D | parse-proxy-response.js | 12 // the CONNECT response, so that if the response is anything other than an "200" 32 reject(new Error('Proxy connection ended before receiving CONNECT response')); 57 return reject(new Error('No header received from proxy CONNECT response')); 69 return reject(new Error(`Invalid header from proxy CONNECT response: "${header}"`));
|
H A D | index.js | 43 * `CONNECT` HTTP request method to establish a connection to the proxy server, 99 let payload = `CONNECT ${host}:${opts.port} HTTP/1.1\r\n`;
|
/third_party/node/deps/undici/src/lib/llhttp/ |
H A D | constants.js | 67 METHODS[METHODS["CONNECT"] = 5] = "CONNECT"; 125 METHODS.CONNECT,
|
/third_party/curl/lib/ |
H A D | cf-h1-proxy.c | 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; member 120 failf(data, "%s cannot be done over CONNECT", cf->conn->handler->scheme); in tunnel_init() 140 connkeep(cf->conn, "HTTP proxy CONNECT"); in tunnel_init() 177 infof(data, "CONNECT phase completed"); in h1_tunnel_go_state() 244 failf(data, "Failed sending CONNECT to proxy"); in start_CONNECT() 281 failf(data, "Failed sending CONNECT t in send_CONNECT() [all...] |
/third_party/node/src/ |
H A D | node_http_common.h | 207 V(CONNECT, "CONNECT") \
|
/third_party/libuv/include/ |
H A D | uv.h | 181 XX(CONNECT, connect) \
|
/third_party/libuv/include/uv_ndk/ |
H A D | uv.h | 176 XX(CONNECT, connect) \
|
/third_party/node/deps/uv/include/ |
H A D | uv.h | 176 XX(CONNECT, connect) \
|
/third_party/node/deps/undici/ |
H A D | undici.js | 725 if (upgrade || method === "CONNECT") { 1034 var forbiddenMethods = ["CONNECT", "TRACE", "TRACK"]; 7270 } else if (path[0] !== "/" && !(path.startsWith("http://") || path.startsWith("https://")) && method !== "CONNECT") { 7854 METHODS2[METHODS2["CONNECT"] = 5] = "CONNECT"; 7902 METHODS.CONNECT, 8942 assert(request.upgrade || request.method === "CONNECT"); 8996 if (request.method === "CONNECT") { 9432 if (client[kRunning] > 0 && (request.upgrade || request.method === "CONNECT")) { 9447 return method !== "GET" && method !== "HEAD" && method !== "OPTIONS" && method !== "TRACE" && method !== "CONNECT"; [all...] |
Completed in 25 milliseconds