From 4c92886ee5c2d4c224c29f2a143e71ff1a67db1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E5=A4=A9=E9=BE=99=20=28Armink=29?= Date: Mon, 24 Oct 2022 22:01:52 +0800 Subject: [PATCH] [net/lwip] Fix ppp retry assert error when tcp is connect. --- components/net/lwip/port/lwipopts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/net/lwip/port/lwipopts.h b/components/net/lwip/port/lwipopts.h index 8c6c9cfcc2..7f34333247 100644 --- a/components/net/lwip/port/lwipopts.h +++ b/components/net/lwip/port/lwipopts.h @@ -585,7 +585,7 @@ #endif /* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active timeouts. */ -#define MEMP_NUM_SYS_TIMEOUT (LWIP_TCP + IP_REASSEMBLY + LWIP_ARP + (2*LWIP_DHCP) + LWIP_AUTOIP + LWIP_IGMP + LWIP_DNS + PPP_SUPPORT) +#define MEMP_NUM_SYS_TIMEOUT (LWIP_TCP + IP_REASSEMBLY + LWIP_ARP + (2*LWIP_DHCP) + LWIP_AUTOIP + LWIP_IGMP + LWIP_DNS + 2*PPP_SUPPORT) /* * LWIP_COMPAT_SOCKETS==1: Enable BSD-style sockets functions names. -- GitLab