Lines Matching full:headers
303 * The ``headers``, ``header_count`` and ``headers_status`` fields pass request
304 headers to the application, if
313 * The ``headers`` and ``header_count`` fields can be used for the application to
314 send any arbitrary HTTP headers. If not populated, only Transfer-Encoding and
323 Headers and/or response codes may only be sent in the first populated
371 Accessing request headers
374 The application can register an interest in any specific HTTP request headers.
375 These headers are then stored for each incoming request, and can be accessed
376 from within a dynamic resource callback. Request headers are only included in
383 Then the application can register headers to be captured, and read the values
394 const struct http_header *headers = client->header_capture_ctx.headers;
396 LOG_INF("Captured %d headers with request", header_count);
399 LOG_INF("Header: '%s: %s'", headers[i].name, headers[i].value);