mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2025-08-06 22:44:38 +08:00
Provide default value for MEMP_NUM_TCPIP_MSG_INPUT if not defined.
This commit is contained in:
parent
4236699052
commit
b73198d5ef
@ -193,11 +193,15 @@
|
|||||||
#define MEMP_NUM_NETCONN 4
|
#define MEMP_NUM_NETCONN 4
|
||||||
#endif
|
#endif
|
||||||
/* MEMP_NUM_TCPIPMSG: the number of struct tcpip_msg, which is used
|
/* MEMP_NUM_TCPIPMSG: the number of struct tcpip_msg, which is used
|
||||||
for sequential API communication and incoming packets. Used in
|
for callback/timeout API communication. Used in src/api/tcpip.c. */
|
||||||
src/api/tcpip.c. */
|
|
||||||
#ifndef MEMP_NUM_TCPIP_MSG
|
#ifndef MEMP_NUM_TCPIP_MSG
|
||||||
#define MEMP_NUM_TCPIP_MSG 8
|
#define MEMP_NUM_TCPIP_MSG 8
|
||||||
#endif
|
#endif
|
||||||
|
/* MEMP_NUM_TCPIPMSG_INPUT: the number of struct tcpip_msg, which is used
|
||||||
|
for incoming packets. Used in src/api/tcpip.c. */
|
||||||
|
#ifndef MEMP_NUM_TCPIP_MSG_INPUT
|
||||||
|
#define MEMP_NUM_TCPIP_MSG_INPUT MEMP_NUM_TCPIP_MSG
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ---------- ARP options ---------- */
|
/* ---------- ARP options ---------- */
|
||||||
#ifndef LWIP_ARP
|
#ifndef LWIP_ARP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user