Lines Matching full:resource
23 Certain resource types (for example dynamic resource) provide resource-specific
25 instance provide resource content, or process request payload).
27 Currently, the following resource types are supported:
39 resource types usage. See :zephyr:code-sample:`sockets-http-server` for more
133 Application can enable resource wildcard support by enabling
136 with just one resource handler. The `fnmatch()
154 Static resource content is defined build-time and is immutable. The following
155 example shows how gzip compressed webpage can be defined as a static resource
177 The resource content and content encoding is application specific. For the above
193 Static filesystem resource content is defined build-time and is immutable. The following
194 example shows how the path can be defined as a static resource in the application:
225 For dynamic resource, a resource callback is registered to exchange data between
228 The following example code shows how to register a dynamic resource with a simple
229 resource handler, which echoes received data back to the client:
283 The resource callback may be called multiple times for a single request, hence
295 the application shall reset any progress recorded for the resource, and await
296 a new request to come. The server guarantees that the resource can only be
327 The server will call the resource callback until it provided all request data
365 The above minimalistic example shows how to register a Websocket resource with
376 from within a dynamic resource callback. Request headers are only included in
384 from within the dynamic resource callback: