[CoAP Server] Message deduplication (#1500)

* Message deduplication in CoAP server.

* Limit number of responses in CoAP server deduplication queue.
This commit is contained in:
Hubert Miś
2017-03-23 02:01:58 -07:00
committed by Jonathan Hui
parent 4fae0c248a
commit 68de8f669a
14 changed files with 444 additions and 45 deletions
+2
View File
@@ -924,6 +924,8 @@ typedef struct otBufferInfo
uint16_t mArpBuffers; ///< The number of buffers in the ARP send queue.
uint16_t mCoapClientMessages; ///< The number of messages in the CoAP client send queue.
uint16_t mCoapClientBuffers; ///< The number of buffers in the CoAP client send queue.
uint16_t mCoapServerMessages; ///< The number of messages in the CoAP server responses queue.
uint16_t mCoapServerBuffers; ///< The number of buffers in the CoAP server responses queue.
} otBufferInfo;
/**