mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-05-21 23:56:59 +08:00
committed by
Simon Goldschmidt
parent
5ab46f82f9
commit
62ac0faad8
@@ -93,7 +93,7 @@ static void netconn_drain(struct netconn *conn);
|
||||
#endif /* LWIP_TCPIP_CORE_LOCKING */
|
||||
|
||||
#if LWIP_NETCONN_FULLDUPLEX
|
||||
const u8_t netconn_deleted = 0;
|
||||
static const u8_t netconn_deleted = 0;
|
||||
|
||||
int
|
||||
lwip_netconn_is_deallocated_msg(void *msg)
|
||||
@@ -106,9 +106,9 @@ lwip_netconn_is_deallocated_msg(void *msg)
|
||||
#endif /* LWIP_NETCONN_FULLDUPLEX */
|
||||
|
||||
#if LWIP_TCP
|
||||
const u8_t netconn_aborted = 0;
|
||||
const u8_t netconn_reset = 0;
|
||||
const u8_t netconn_closed = 0;
|
||||
static const u8_t netconn_aborted = 0;
|
||||
static const u8_t netconn_reset = 0;
|
||||
static const u8_t netconn_closed = 0;
|
||||
|
||||
/** Translate an error to a unique void* passed via an mbox */
|
||||
static void *
|
||||
|
||||
Reference in New Issue
Block a user