2016-08-17 11:08:22 -04:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* This file is a posix wrapper for lwip/sockets.h.
|
|
|
|
*/
|
|
|
|
/*
|
2022-07-22 04:14:37 -04:00
|
|
|
* SPDX-FileCopyrightText: 2001-2004 Swedish Institute of Computer Science
|
2016-08-17 11:08:22 -04:00
|
|
|
*
|
2022-07-22 04:14:37 -04:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2016-08-17 11:08:22 -04:00
|
|
|
*
|
2022-07-22 04:14:37 -04:00
|
|
|
* SPDX-FileContributor: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
2016-08-17 11:08:22 -04:00
|
|
|
*/
|
2022-07-22 04:14:37 -04:00
|
|
|
#ifndef LWIP_HDR_SYS_SOCKETS_H
|
|
|
|
#define LWIP_HDR_SYS_SOCKETS_H
|
2016-08-17 11:08:22 -04:00
|
|
|
|
|
|
|
#include "lwip/sockets.h"
|
2020-01-09 10:37:14 -05:00
|
|
|
/*
|
|
|
|
SOMAXCONN is expected to be found in this header too,
|
|
|
|
while for ESP32 port is defined in net/if.h
|
|
|
|
*/
|
|
|
|
#include <net/if.h>
|
2022-07-22 04:14:37 -04:00
|
|
|
|
|
|
|
#endif /* LWIP_HDR_SYS_SOCKETS_H */
|