feat(tcp_transport): update TCP transport from esp-idf

Commit ID: 03d07741
This commit is contained in:
Dong Heng
2019-11-18 17:55:17 +08:00
parent 595b51b15f
commit fd8ed3b340
15 changed files with 569 additions and 111 deletions

View File

@ -1,11 +1,8 @@
set(COMPONENT_SRCS "transport.c"
"transport_ssl.c"
"transport_tcp.c"
"transport_ws.c"
"transport_utils.c")
set(COMPONENT_ADD_INCLUDEDIRS "include")
set(COMPONENT_REQUIRES "lwip" "esp-tls")
register_component()
idf_component_register(SRCS "transport.c"
"transport_ssl.c"
"transport_tcp.c"
"transport_ws.c"
"transport_utils.c"
INCLUDE_DIRS "include"
PRIV_INCLUDE_DIRS "private_include"
REQUIRES lwip esp-tls)