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
EQ (tcp_state_e state)
Returns Boolean True if the TCP state matches the argument.
Example:
CONNECTION.TCPSTATE.EQ(ESTABLISHED)
state- TCP State
Returns: bool_atNE (tcp_state_e state)
Returns Boolean True if the TCP state do not matches the argument.
Example:
CONNECTION.TCPSTATE.NE(ESTABLISHED)
state- TCP State
Returns: bool_at