Skip to content

Commit

Permalink
Merge pull request espressif#326 from hmalpani/bugfix/fix_coap_build_…
Browse files Browse the repository at this point in the history
…failure_with_mbedtls_3_6_0

fix: Fix build failures in coap_client example with MbedTLS v3.6.0
  • Loading branch information
mahavirj authored May 14, 2024
2 parents 674eadc + 86e6204 commit 2e46b80
Show file tree
Hide file tree
Showing 3 changed files with 3,187 additions and 3 deletions.
4 changes: 2 additions & 2 deletions coap/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ set(srcs
"libcoap/src/coap_hashkey.c"
"libcoap/src/coap_io.c"
"libcoap/src/coap_layers.c"
"libcoap/src/coap_mbedtls.c"
"libcoap/src/coap_mem.c"
"libcoap/src/coap_net.c"
"libcoap/src/coap_netif.c"
Expand All @@ -29,7 +28,8 @@ set(srcs
"libcoap/src/coap_tcp.c"
"libcoap/src/coap_time.c"
"libcoap/src/coap_uri.c"
"libcoap/src/coap_ws.c")
"libcoap/src/coap_ws.c"
"port/coap_mbedtls.c")

if(CONFIG_COAP_OSCORE_SUPPORT)
list(APPEND srcs
Expand Down
2 changes: 1 addition & 1 deletion coap/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "4.3.4~2"
version: "4.3.4~3"
description: Constrained Application Protocol (CoAP) C Library
url: https://github.com/espressif/idf-extra-components/tree/master/coap
dependencies:
Expand Down
Loading

0 comments on commit 2e46b80

Please sign in to comment.