mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-06-14 03:46:49 +03:00
11 lines
272 B
C
11 lines
272 B
C
// 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_
|