Searched refs:so_incomp (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dsocketvar.h140 * For head socket so_incomp queues partially completed connections,
143 * it has to be pulled out of either so_incomp or so_comp.
148 TAILQ_HEAD(, socket) so_incomp; /* q of partially unaccepted conns */ member in struct:socket
/darwin-on-arm/xnu/bsd/kern/
H A Duipc_socket2.c149 * two queues of sockets: so_incomp for connections in progress
152 * structure queued on so_incomp by calling sonewconn(). When the connection
157 * so_incomp or so_comp, these sockets are dropped.
191 TAILQ_REMOVE(&head->so_incomp, so, so_list);
393 TAILQ_INSERT_TAIL(&head->so_incomp, so, so_list);
H A Duipc_socket.c572 TAILQ_INIT(&so->so_incomp);
845 TAILQ_REMOVE(&head->so_incomp, so, so_list);
938 for (sp = TAILQ_FIRST(&so->so_incomp); sp != NULL; sp = sonext) {
960 TAILQ_REMOVE(&so->so_incomp, sp, so_list);
/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_input.c4686 so = TAILQ_FIRST(&head->so_incomp);
4755 TAILQ_REMOVE(&head->so_incomp, so, so_list);
4771 * Release the reference held for so_incomp queue
4785 /* Release the reference held for so_incomp queue */

Completed in 33 milliseconds