Lines Matching full:path
128 const req = client.request({ ':path': '/' });
326 const path = headers[':path'];
999 The `:method` and `:path` pseudo-headers are not specified within `headers`,
1003 * `:path` = `/`
1393 const req = client.request({ ':path': '/' });
1451 fields (e.g. `':method'`, `':path'`, etc).
1532 const req = client.request({ ':path': '/' });
1620 stream.pushStream({ ':path': '/' }, (err, pushStream, headers) => {
1790 #### `http2stream.respondWithFile(path[, headers[, options]])`
1806 * `path` {string|Buffer|URL}
1817 Sends a regular file as the response. The `path` must specify a regular file
1832 Example using a file path:
2031 const path = headers[HTTP2_HEADER_PATH];
2253 const path = headers[HTTP2_HEADER_PATH];
2702 (user ID and password), path, querystring, and fragment details in the
2892 * Duplicates of `:status`, `:method`, `:authority`, `:scheme`, `:path`,
2910 console.log(headers[':path']);
3051 const req = client.request({ ':path': '/' });
3111 // Must not specify the ':path' and ':scheme' headers
3348 In HTTP/2, the request path, host name, protocol, and method are represented as
3349 special headers prefixed with the `:` character (e.g. `':path'`). These special
3356 assert(request.url); // Fails because the :path header has been removed