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.

Convenience, example and reference implementations are available in the [coap-handler-implementations] crate.

Known shortcomings of the current interface are:

The main item of this crate is the [Handler] trait. The [Reporting] trait can be implemented in addition to [Handler] to ease inclusion of the rendered resource in discovery, eg. through /.well-known/core as implemented in [coap-handler-implementations].

License: MIT OR Apache-2.0