Lines Matching refs:state

564 		if (stream->state != TCP_ST_SYN_SENT) {  in HandleApplicationCalls()
609 if (stream->state != TCP_ST_CLOSED_RSVD) { in HandleApplicationCalls()
611 stream->state = TCP_ST_CLOSED_RSVD; in HandleApplicationCalls()
632 if (stream->state == TCP_ST_ESTABLISHED) { in HandleApplicationCalls()
633 stream->state = TCP_ST_FIN_WAIT_1; in HandleApplicationCalls()
637 } else if (stream->state == TCP_ST_CLOSE_WAIT) { in HandleApplicationCalls()
638 stream->state = TCP_ST_LAST_ACK; in HandleApplicationCalls()
644 } else if (stream->state != TCP_ST_CLOSED_RSVD) { in HandleApplicationCalls()
646 if (stream->state == TCP_ST_ESTABLISHED) { in HandleApplicationCalls()
647 stream->state = TCP_ST_FIN_WAIT_1; in HandleApplicationCalls()
651 } else if (stream->state == TCP_ST_CLOSE_WAIT) { in HandleApplicationCalls()
652 stream->state = TCP_ST_LAST_ACK; in HandleApplicationCalls()
673 } else if (stream->state != TCP_ST_CLOSED_RSVD) { in HandleApplicationCalls()
676 if (stream->state == TCP_ST_ESTABLISHED) { in HandleApplicationCalls()
677 stream->state = TCP_ST_FIN_WAIT_1; in HandleApplicationCalls()
681 } else if (stream->state == TCP_ST_CLOSE_WAIT) { in HandleApplicationCalls()
682 stream->state = TCP_ST_LAST_ACK; in HandleApplicationCalls()
701 if (stream->state != TCP_ST_CLOSED_RSVD) { in HandleApplicationCalls()
703 stream->state = TCP_ST_CLOSED_RSVD; in HandleApplicationCalls()
718 if (stream->state != TCP_ST_CLOSED_RSVD) { in HandleApplicationCalls()
720 stream->state = TCP_ST_CLOSED_RSVD; in HandleApplicationCalls()
744 if (stream->state != TCP_ST_CLOSED_RSVD) { in HandleApplicationCalls()
746 stream->state = TCP_ST_CLOSED_RSVD; in HandleApplicationCalls()
1433 lcore_config[master].state = FINISHED; in mtcp_create_context()