Skip to content
Was this article helpful?

TCP_STATE_E


TCP states

Enumerations

CLOSED


CLOSING


CLOSE_WAIT


ESTABLISHED


FIN_WAIT_1


FIN_WAIT_2


LAST_ACK


LISTEN


SYN_RECEIVED


SYN_SENT


TIME_WAIT


NOT_APPLICABLE


This topic lists the expressions that are provided by this class.

EQ (tcp_state_e state)

Returns Boolean True if the TCP state matches the argument. Example:
CONNECTION.TCPSTATE.EQ(ESTABLISHED)

Parameters (expressions not allowed):

state- TCP State

Returns: bool_at


NE (tcp_state_e state)

Returns Boolean True if the TCP state do not matches the argument. Example:
CONNECTION.TCPSTATE.NE(ESTABLISHED)

Parameters (expressions not allowed):

state- TCP State

Returns: bool_at


Was this article helpful?