Searched refs:LISTEN (Results 1 - 12 of 12) sorted by relevance

/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dtcp.c94 "LISTEN",
120 /** List of all TCP PCBs in LISTEN state */
193 LWIP_ASSERT("pcb->state == LISTEN", pcb->state == LISTEN);
313 case LISTEN:
399 if (pcb->state != LISTEN) {
423 if (pcb->state == LISTEN) {
473 /* pcb->state LISTEN not allowed here */
475 pcb->state != LISTEN);
645 * Set the state of the connection to be LISTEN, whic
[all...]
H A Dtcp_out.c1003 /* pcb->state LISTEN not allowed here */
1005 pcb->state != LISTEN);
H A Dtcp_in.c226 LWIP_ASSERT("tcp_input: active pcb->state != LISTEN", pcb->state != LISTEN);
556 /* In the LISTEN state, we check for incoming SYN segments,
561 LWIP_DEBUGF(TCP_RST_DEBUG, ("tcp_listen_input: ACK in LISTEN, sending reset\n"));
/barrelfish-2018-10-04/lib/lwip/src/core/
H A Dtcp.c69 /** List of all TCP PCBs in LISTEN state */
138 case LISTEN:
338 * Set the state of the connection to be LISTEN, which means that it
341 * connection to LISTEN is an irreversible process.
360 if (pcb->state == LISTEN) {
369 lpcb->state = LISTEN;
560 LWIP_ASSERT("tcp_slowtmr: active pcb->state != LISTEN\n",
561 pcb->state != LISTEN);
1152 if (pcb->state != CLOSED && pcb->state != TIME_WAIT && pcb->state != LISTEN) {
1225 pcb->state != LISTEN
[all...]
H A Dtcp_in.c195 LWIP_ASSERT("tcp_input: active pcb->state != LISTEN",
196 pcb->state != LISTEN);
417 /* In the LISTEN state, we check for incoming SYN segments,
423 ("tcp_listen_input: ACK in LISTEN, sending reset\n"));
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dtcp.h156 LISTEN = 1, enumerator in enum:tcp_state
380 LWIP_ASSERT("pcb->state == LISTEN (called for wrong pcb?)", (pcb)->state == LISTEN); \
/barrelfish-2018-10-04/lib/lwip2/src/apps/snmp/
H A Dsnmp_mib2_tcp.c174 if (pcb->state == LISTEN) {
181 if (pcb->state == LISTEN) {
225 /* PCBs in state LISTEN are not connected and have no remote_ip or remote_port */
226 if (pcb->state == LISTEN) {
269 /* PCBs in state LISTEN are not connected and have no remote_ip or remote_port */
270 if (pcb->state == LISTEN) {
/barrelfish-2018-10-04/lib/lwip/src/api/
H A Dapi_msg.c613 if (conn->pcb.tcp->state == LISTEN) {
641 (conn->pcb.tcp->state != LISTEN));
992 if (msg->conn->pcb.tcp->state == LISTEN) {
H A Dsockets.c2245 } else if (sock->conn->pcb.tcp->state == LISTEN) {
2246 printf("lwip_deserialise_sock: in LISTEN state!!!\n");
/barrelfish-2018-10-04/lib/lwip2/src/api/
H A Dapi_msg.c858 if (tpcb->state == LISTEN) {
989 LWIP_ASSERT("Closing a listen pcb may not fail!", (tpcb->state != LISTEN));
1742 ((msg->conn->pcb.tcp->state == CLOSED) || (msg->conn->pcb.tcp->state == LISTEN))) {
1775 (LISTEN doesn't support half shutdown) */
H A Dsockets.c1907 if ((sock->conn->pcb.tcp != NULL) && (sock->conn->pcb.tcp->state == LISTEN)) {
2074 if (sock->conn->pcb.tcp->state == LISTEN) {
2466 if (sock->conn->pcb.tcp->state == LISTEN) {
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dtcp.h241 LISTEN = 1, enumerator in enum:tcp_state
610 union tcp_listen_pcbs_t { /* List of all TCP PCBs in LISTEN state. */
625 3) All PCBs in the tcp_listen_pcbs list is in LISTEN state.

Completed in 126 milliseconds