mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
tcp_timer_needed should be a noop when using the raw API.Fix link error bug #2489
This commit is contained in:
parent
dd2fa15e8a
commit
1868b2d244
@ -396,7 +396,11 @@ int tcp_pcbs_sane(void);
|
||||
#define tcp_pcbs_sane() 1
|
||||
#endif /* TCP_DEBUG */
|
||||
|
||||
#if NO_SYS
|
||||
#define tcp_timer_needed()
|
||||
#else
|
||||
void tcp_timer_needed(void);
|
||||
#endif
|
||||
|
||||
/* The TCP PCB lists. */
|
||||
extern struct tcp_pcb_listen *tcp_listen_pcbs; /* List of all TCP PCBs in LISTEN state. */
|
||||
|
Loading…
Reference in New Issue
Block a user