add TLS support for all boards

This commit is contained in:
proddy
2026-05-25 12:32:53 +02:00
parent cef5e69aa1
commit 46c5560222
20 changed files with 485 additions and 207 deletions

View File

@@ -0,0 +1,10 @@
// standalone stub for <lwip/sockets.h>
// pulls in POSIX equivalents on the host build for things like IPPROTO_TCP / TCP_NODELAY.
#ifndef LWIP_SOCKETS_STUB_H_
#define LWIP_SOCKETS_STUB_H_
#include <netinet/in.h>
#include <netinet/tcp.h>
#endif // LWIP_SOCKETS_STUB_H_