Skip to content
Was this article helpful?

TCP_STATE_E

TCP states

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

Enumerations

CLOSED

CLOSE_WAIT

CLOSING

ESTABLISHED

FIN_WAIT_1

FIN_WAIT_2

LAST_ACK

LISTEN

NOT_APPLICABLE

SYN_RECEIVED

SYN_SENT

TIME_WAIT

Expressions

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?