Need to free any readahead buffers
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@388 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
0e1b8b8b11
commit
ab1f88c3b8
@ -284,6 +284,9 @@ struct uip_conn *uip_tcpalloc(void)
|
||||
|
||||
void uip_tcpfree(struct uip_conn *conn)
|
||||
{
|
||||
#if CONFIG_NET_NTCP_READAHEAD_BUFFERS > 0
|
||||
struct uip_readahead_s *readahead;
|
||||
#endif
|
||||
irqstate_t flags;
|
||||
|
||||
/* Because g_free_tcp_connections is accessed from user level and interrupt
|
||||
@ -304,6 +307,15 @@ void uip_tcpfree(struct uip_conn *conn)
|
||||
dq_rem(&conn->node, &g_free_tcp_connections);
|
||||
}
|
||||
|
||||
/* Release any read-ahead buffers attached to the connection */
|
||||
|
||||
#if CONFIG_NET_NTCP_READAHEAD_BUFFERS > 0
|
||||
while ((readahead = (struct uip_readahead_s *)sq_remfirst(&conn->readahead)) != NULL)
|
||||
{
|
||||
uip_tcpreadaheadrelease(readahead);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Mark the connection available and put it into the free list */
|
||||
|
||||
conn->tcpstateflags = UIP_CLOSED;
|
||||
|
Loading…
Reference in New Issue
Block a user