Build Status

coap-handler

The coap-handler crate defines an interface between a [CoAP] server (that listens for requests on the network and parses the messages) and request handlers (that process the requests and creates responses from them).

The interface is generic over message formats by using the [coap-message] crate, which allows the handler to construct the response right into the send buffer prepared by the server implementation. By separating the request processing and the response phase, a server can be implemented even on network stacks that have only a single network buffer.

Along with the interface, the crate provides some simple implementations, from the generic "4.04 Not Found" responder up to a handler that creates a [write] formatter for GET-only resources, and even provides [block-wise transfer] that. The [implementations::SimpleCBORWrapper] enables the easy creation of [serde_cbor] based resource implementations with GET, PUT and POST support in CBOR format. The HandlerBuilder implements crude static path based routing that may suffice for some applications, and is also useful to get started quickly.

Known shortcomings of the current interface are:

License: LGPL-3.0