|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.Constants.TCPSTATES
public final class Constants.TCPSTATES
TCP States.
Field Summary | |
---|---|
static int |
CLOSE_WAIT
TCP state: CLOSE-WAIT - represents waiting for a connection termination request from the local user. |
static int |
CLOSED
TCP state: CLOSED - represents no connection state at all. |
static int |
CLOSING
TCP state: CLOSING - represents waiting for a connection termination request acknowledgment from the remote TCP. |
static int |
ESTABLISHED
TCP state: ESTABLISHED - represents an open connection, data received can be delivered to the user. |
static int |
FIN_WAIT_1
TCP state: FIN-WAIT-1 - represents waiting for a connection termination request from the remote TCP, or an acknowledgment of the connection termination request previously sent. |
static int |
FIN_WAIT_2
TCP state: FIN-WAIT-2 - represents waiting for a connection termination request from the remote TCP. |
static int |
LAST_ACK
TCP state: LAST-ACK - represents waiting for an acknowledgment of the connection termination request previously sent to the remote TCP (which includes an acknowledgment of its connection termination request). |
static int |
LISTEN
TCP state: LISTEN - represents waiting for a connection request from any remote TCP and port. |
static int |
SYN_RECEIVED
TCP state: SYN-RECEIVED - represents waiting for a confirming connection request acknowledgment after having both received and sent a connection request. |
static int |
SYN_SENT
TCP state: SYN-SENT - represents waiting for a matching connection request after having sent a connection request. |
static int |
TIME_WAIT
TCP state: TIME-WAIT - represents waiting for enough time to pass to be sure the remote TCP received the acknowledgment of its connection termination request. |
Constructor Summary | |
---|---|
Constants.TCPSTATES()
|
Method Summary |
---|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int LISTEN
public static final int SYN_SENT
public static final int SYN_RECEIVED
public static final int ESTABLISHED
public static final int FIN_WAIT_1
public static final int FIN_WAIT_2
public static final int CLOSE_WAIT
public static final int CLOSING
public static final int LAST_ACK
public static final int TIME_WAIT
public static final int CLOSED
Constructor Detail |
---|
public Constants.TCPSTATES()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |