You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any thoughts about supporting TCP framing described in rfc8323?
A challenge I feel from my experience of this library so far is that CoAP_onNewPacketHandler expects an entire CoAP message, whereas a TCP being a stream, it may be needed to call CoAP_onNewPacketHandler multiple times to incrementally process a message.
The text was updated successfully, but these errors were encountered:
My first thought is to add another layer that just converts the stream into a "message" which should be possible by parsing only a subset of the message structure. Then you can pass that message down to CoAP_onNewPacketHandler.
Any thoughts about supporting TCP framing described in rfc8323?
A challenge I feel from my experience of this library so far is that
CoAP_onNewPacketHandler
expects an entire CoAP message, whereas a TCP being a stream, it may be needed to callCoAP_onNewPacketHandler
multiple times to incrementally process a message.The text was updated successfully, but these errors were encountered: