mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 12:52:27 +00:00
Add switch to a socket layer that will enable switching socket API to TLS secure sockets. At this point there is no secure sockets implementation, so secure socket calls redirect to regular socket calls. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
8 lines
148 B
CMake
8 lines
148 B
CMake
zephyr_include_directories(.)
|
|
zephyr_sources(
|
|
getaddrinfo.c
|
|
sockets.c
|
|
)
|
|
|
|
zephyr_sources_ifdef(CONFIG_NET_SOCKETS_SOCKOPT_TLS sockets_tls.c)
|