mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
Fix unused arg from last patch the *real* lwIP way ;-)
This commit is contained in:
parent
b92bcc5f02
commit
fc23257ca0
@ -390,7 +390,7 @@ void tcp_backlog_accepted(struct tcp_pcb* pcb);
|
|||||||
#define tcp_backlog_delayed(pcb)
|
#define tcp_backlog_delayed(pcb)
|
||||||
#define tcp_backlog_accepted(pcb)
|
#define tcp_backlog_accepted(pcb)
|
||||||
#endif /* TCP_LISTEN_BACKLOG */
|
#endif /* TCP_LISTEN_BACKLOG */
|
||||||
#define tcp_accepted(pcb) { LWIP_UNUSED_ARG(pcb); } /* compatibility define, not needed any more */
|
#define tcp_accepted(pcb) do { LWIP_UNUSED_ARG(pcb); } while(0) /* compatibility define, not needed any more */
|
||||||
|
|
||||||
void tcp_recved (struct tcp_pcb *pcb, u16_t len);
|
void tcp_recved (struct tcp_pcb *pcb, u16_t len);
|
||||||
err_t tcp_bind (struct tcp_pcb *pcb, const ip_addr_t *ipaddr,
|
err_t tcp_bind (struct tcp_pcb *pcb, const ip_addr_t *ipaddr,
|
||||||
|
Loading…
Reference in New Issue
Block a user