Skip to content

Commit 33dbb27

Browse files
authored
Merge pull request #13606 from teetak01/coap-5.1.7-for-5.15
Update Mbed CoAP to v5.1.7
2 parents f1e304b + 9274236 commit 33dbb27

File tree

4 files changed

+304
-171
lines changed

4 files changed

+304
-171
lines changed

features/frameworks/mbed-coap/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [v5.1.7](https://github.com/ARMmbed/mbed-coap/releases/tag/v5.1.7)
4+
5+
- Removed comparison of IP addresses when validating message resending. This avoids unnessary network errors due to load balancers causing frequent IP address changes.
6+
7+
## [v5.1.6](https://github.com/ARMmbed/mbed-coap/releases/tag/v5.1.6)
8+
9+
- Multiple fixes for out-ouf-bounds memory accesses, a memory leak and an infinite loop condition in packet parser.
10+
- Mapped `MBED_CONF_MBED_CLIENT_RECONNECTION_COUNT` Pelion Device Management Client configuration option to `SN_COAP_RESENDING_MAX_COUNT` in mbed-coap.
11+
- Fix the token from blockwise ACK message to be empty if the received message doesn't have one.
12+
313
## [v5.1.5](https://github.com/ARMmbed/mbed-coap/releases/tag/v5.1.5)
414

515
- Added handling for duplicate message handling for Block2 messages. Previously CoAP was silently ignoring the duplicate messages. Now proper response will be sent.

features/frameworks/mbed-coap/mbed-coap/sn_config.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@
165165
* \brief Defines how many times CoAP library tries to re-send the CoAP packet.
166166
* By default value is 3.
167167
*/
168+
#ifdef MBED_CONF_MBED_CLIENT_RECONNECTION_COUNT
169+
#define SN_COAP_RESENDING_MAX_COUNT MBED_CONF_MBED_CLIENT_RECONNECTION_COUNT
170+
#endif
171+
168172
#ifndef SN_COAP_RESENDING_MAX_COUNT
169173
#define SN_COAP_RESENDING_MAX_COUNT 3
170174
#endif

0 commit comments

Comments
 (0)