Lines Matching refs:headers
346 * The ``headers``, ``header_count`` and ``headers_status`` fields pass request
347 headers to the application, if
356 * The ``headers`` and ``header_count`` fields can be used for the application to
357 send any arbitrary HTTP headers. If not populated, only Transfer-Encoding and
414 Accessing request headers
417 The application can register an interest in any specific HTTP request headers.
418 These headers are then stored for each incoming request, and can be accessed
419 from within a dynamic resource callback. Request headers are only included in
426 Then the application can register headers to be captured, and read the values
437 const struct http_header *headers = client->header_capture_ctx.headers;
439 LOG_INF("Captured %d headers with request", header_count);
442 LOG_INF("Header: '%s: %s'", headers[i].name, headers[i].value);