com.act365.net.tcp
Class TCP

java.lang.Object
  |
  +--com.act365.net.tcp.TCP

public class TCP
extends java.lang.Object

Class TCP defines constants associated with the TCP protocol.


Field Summary
static byte ACK
           
static int CLOSE_WAIT
           
static int CLOSED
           
static int CLOSING
           
static int ESTABLISHED
           
static byte FIN
           
static int FIN_WAIT_1
           
static int FIN_WAIT_2
           
static int LAST_ACK
           
static int LISTEN
           
static byte PSH
           
static byte RST
           
static byte SYN
           
static int SYN_RCVD
           
static int SYN_SENT
           
static int TIME_WAIT
           
static byte URG
           
 
Constructor Summary
TCP()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FIN

public static final byte FIN

SYN

public static final byte SYN

RST

public static final byte RST

PSH

public static final byte PSH

ACK

public static final byte ACK

URG

public static final byte URG

CLOSED

public static final int CLOSED

LISTEN

public static final int LISTEN

SYN_RCVD

public static final int SYN_RCVD

SYN_SENT

public static final int SYN_SENT

ESTABLISHED

public static final int ESTABLISHED

CLOSE_WAIT

public static final int CLOSE_WAIT

FIN_WAIT_1

public static final int FIN_WAIT_1

CLOSING

public static final int CLOSING

LAST_ACK

public static final int LAST_ACK

FIN_WAIT_2

public static final int FIN_WAIT_2

TIME_WAIT

public static final int TIME_WAIT
Constructor Detail

TCP

public TCP()