mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-07 05:30:14 +00: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
|
||||
#endif
|
||||
/* MEMP_NUM_TCPIPMSG: the number of struct tcpip_msg, which is used
|
||||
for sequential API communication and incoming packets. Used in
|
||||
src/api/tcpip.c. */
|
||||
for callback/timeout API communication. Used in src/api/tcpip.c. */
|
||||
#ifndef MEMP_NUM_TCPIP_MSG
|
||||
#define MEMP_NUM_TCPIP_MSG 8
|
||||
#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 ---------- */
|
||||
#ifndef LWIP_ARP
|
||||
|
Loading…
Reference in New Issue
Block a user