coap-rs
coap-rs copied to clipboard
A Constrained Application Protocol(CoAP) library implemented in Rust.
Are there any plans / ideas / thoughts around implementation of Blockwise transfer for Block1 type of requests? I can help with the implementation. https://datatracker.ietf.org/doc/html/rfc7959#section-2.5
A CoAP server has the choice to either send the response message to a confirmable request as a piggy-backed response (along with the ACK), or as a separate message. When...
When used as a CoAP client, the token is always empty, and the message ID is not set. This does not cause practical problems as long as they are sent...
Hi, I am proprosing the following: coap-rs should recense every implemented IETF standards (i.e. draft, proposed standard rfc and possibly informational standard rfc that updates RFC 7252 Standard) onto the...
Hello, I know this library doesn't support Observe RFC yet. Does it support Blockwise Transfer (RFC7959) and Link Formats (RFC6690)? Besides those, which other options are NOT supported? Thanks!
Some products (e.g. IKEA Tradfri) use COAP over DTLS (TLS over UDP). It would be great to have the library support this use case. See - https://learn.pimoroni.com/tutorial/sandyj/controlling-ikea-tradfri-lights-from-your-pi - https://tools.ietf.org/html/rfc6347 -...
Work in progress -- #16
This is more of a question, rather than an issue, but curious if there are any plans to support TCP RFC (https://datatracker.ietf.org/doc/rfc8323/) for coap-rs.
Should be merged after https://github.com/Covertness/coap-rs/pull/39
It appears that the underlying IO library is asynchronous, and the server implementation does indeed expose an asynchronous handler interface. It would be nice if the client side could also...