mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 11:56:10 +08:00
Change from doubly- to singly-linked lists
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1297 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -231,14 +231,14 @@ struct uip_readahead_s
|
||||
#ifdef CONFIG_NET_TCPBACKLOG
|
||||
struct uip_blcontainer_s
|
||||
{
|
||||
dq_entry_t bc_node; /* Implements a doubly linked list */
|
||||
sq_entry_t bc_node; /* Implements a singly linked list */
|
||||
FAR struct uip_conn *bc_conn; /* Holds reference to the new connection structure */
|
||||
};
|
||||
|
||||
struct uip_backlog_s
|
||||
{
|
||||
dq_queue_t bl_free; /* Implements a doubly-linked list of free containers */
|
||||
dq_queue_t bl_pending; /* Implements a doubly-linked list of pending connections */
|
||||
sq_queue_t bl_free; /* Implements a singly-linked list of free containers */
|
||||
sq_queue_t bl_pending; /* Implements a singly-linked list of pending connections */
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user