From ae29bf8a597192a8e7d559da6c1374b3f0bc9ba5 Mon Sep 17 00:00:00 2001 From: Espressif Systems Date: Mon, 21 Nov 2016 19:59:04 +0800 Subject: [PATCH] lwip: add function declaration --- include/lwip/lwip/multi-threads/sockets_mt.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/lwip/lwip/multi-threads/sockets_mt.h b/include/lwip/lwip/multi-threads/sockets_mt.h index 97d70221..02a41121 100644 --- a/include/lwip/lwip/multi-threads/sockets_mt.h +++ b/include/lwip/lwip/multi-threads/sockets_mt.h @@ -24,6 +24,8 @@ int lwip_read_mt(int s, void *mem, size_t len); int lwip_write_mt(int s, const void *data, size_t size); int lwip_shutdown_mt(int s, int how); int lwip_close_mt(int s); +int lwip_select_mt(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset, struct timeval *timeout); +int lwip_fcntl_mt(int s, int cmd, int val); #ifdef SOCKETS_TCP_TRACE int lwip_trace_tcp(int s, int cmd, void *arg);