From 7bda462031a58130443e9356578f5f53aeeb418f Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 22 Mar 2016 15:54:14 +0100 Subject: [PATCH] fixed wrong commit: compatibility-define tcp_accepted() was accidentally commented-out --- src/include/lwip/tcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/tcp.h b/src/include/lwip/tcp.h index cc51f56c..e95da5f7 100644 --- a/src/include/lwip/tcp.h +++ b/src/include/lwip/tcp.h @@ -363,7 +363,7 @@ void tcp_backlog_accepted(struct tcp_pcb* pcb); #define tcp_backlog_delayed(pcb) #define tcp_backlog_accepted(pcb) #endif /* TCP_LISTEN_BACKLOG */ -//#define tcp_accepted(pcb) /* compatibility define, not needed any more */ +#define tcp_accepted(pcb) /* compatibility define, not needed any more */ void tcp_recved (struct tcp_pcb *pcb, u16_t len); err_t tcp_bind (struct tcp_pcb *pcb, const ip_addr_t *ipaddr,