mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-13 06:37:25 +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
|
#define tcp_pcbs_sane() 1
|
||||||
#endif /* TCP_DEBUG */
|
#endif /* TCP_DEBUG */
|
||||||
|
|
||||||
|
#if NO_SYS
|
||||||
|
#define tcp_timer_needed()
|
||||||
|
#else
|
||||||
void tcp_timer_needed(void);
|
void tcp_timer_needed(void);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* The TCP PCB lists. */
|
/* The TCP PCB lists. */
|
||||||
extern struct tcp_pcb_listen *tcp_listen_pcbs; /* List of all TCP PCBs in LISTEN state. */
|
extern struct tcp_pcb_listen *tcp_listen_pcbs; /* List of all TCP PCBs in LISTEN state. */
|
||||||
|
Loading…
Reference in New Issue
Block a user