From 86917bc8967a089e59e01d8736bbbd8306ccd84c Mon Sep 17 00:00:00 2001 From: Dong Heng Date: Mon, 20 Apr 2020 17:42:00 +0800 Subject: [PATCH] feat(lwip): add shutdown to socket_mt --- components/lwip/apps/multi-threads/sockets_mt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lwip/apps/multi-threads/sockets_mt.c b/components/lwip/apps/multi-threads/sockets_mt.c index e339251a..e5e26ea9 100644 --- a/components/lwip/apps/multi-threads/sockets_mt.c +++ b/components/lwip/apps/multi-threads/sockets_mt.c @@ -769,7 +769,7 @@ int lwip_fcntl(int s, int cmd, int val) int lwip_shutdown(int s, int how) { - return 0; + return lwip_shutdown_esp(s, how); } int lwip_close(int s)