Enum Status
Represents a TCP connection status.
Namespace: Cosmos.System.Network.IPv4.TCP
Assembly: Cosmos.System2.dll
Syntax
public enum Status
Fields
Name | Description |
---|---|
CLOSE_WAIT | Wait for a connection termination request from the local user. |
CLOSED | Represents no connection state. |
CLOSING | Wait for a connection termination request acknowledgment from the remote TCP. |
ESTABLISHED | Represents an open connection, data received can be delivered to the user. The normal state for the data transfer phase of the connection. |
FIN_WAIT1 | Wait for a connection termination request from the remote TCP, or an acknowledgment of the connection termination request previously sent. |
FIN_WAIT2 | Wait for a connection termination request from the remote TCP. |
LAST_ACK | Wait for an acknowledgment of the connection termination request previously sent to the remote TCP (which includes an acknowledgment of its connection termination request). |
LISTEN | Wait for a connection request from any remote TCP and port. |
SYN_RECEIVED | Wait for a confirming connection request acknowledgment after having both received and sent a connection request. |
SYN_SENT | Wait for a matching connection request after having sent a connection request. |
TIME_WAIT | Wait for enough time to pass to be sure the remote TCP received the acknowledgment of its connection termination request. |