|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.trans.TcpSocket
public class TcpSocket
SWANS Implementation of Socket entity.
Nested Class Summary | |
---|---|
static class |
TcpSocket.TcpSocketCallback
Implementation of Socket Callback for TcpSocket. |
Nested classes/interfaces inherited from interface jist.swans.trans.SocketInterface |
---|
SocketInterface.TcpServerSocketInterface, SocketInterface.TcpSocketInterface |
Field Summary | |
---|---|
private TransInterface.SocketHandler.TcpHandler |
callback
A callback object used by other entities to call this socket. |
private Channel |
channel
A channel for blocking send/receive. |
private boolean |
connectInConstructor
booleans to support TCP implementation. |
private int |
currentState
State of the TCP connection. |
private short |
cwnd
congestion window. |
private double |
cwnd_increment
to hold the increment of congestion window during congestion avoidance. |
static long |
DELAYED_ACK_TIME
Number of milliseconds to wait before sending an ACK. |
private int |
dupAckCounter
counter for number of duplicate ACKs that we currently receive. |
static int |
FULL_DEBUG
Debug printing flag. |
private TcpInputStream |
in
Input Stream for this connection. |
static int |
INFO
Debug printing flag. |
static short |
INIT_WINDOW_SIZE
Initial window size. |
private int |
initAckNum
Initial acknowledgement number. |
private int |
initSeqNum
Initial sequence number. |
private boolean |
isApplicationWaiting
flag to note if application layer is waiting for messages. |
private boolean |
isBound
booleans to support socket implementation. |
private boolean |
isClosed
booleans to support socket implementation. |
private boolean |
isClosing
booleans to support TCP implementation. |
private boolean |
isConnected
booleans to support socket implementation. |
private boolean |
isTcpNoDelay
booleans to support socket implementation. |
private NetAddress |
laddr
Local address for the connection. |
private short |
last_adv_wnd
the receiving window that we most recently advertised. |
private int |
lport
Local port number for the connection. |
static int |
MSL
Maximum Segment Lifetime. |
static int |
MSS
Maximum Segment Size. |
private int |
numBytesRequest
number of bytes requested by application layer while waiting. |
static int |
OFF
Debug printing flag. |
private TcpOutputStream |
out
Output Stream for this connection. |
private int |
packetCounter
Number of packets sent by the socket. |
static long |
PERSIST_TIMER
Number of seconds to wait before sending probe packets. |
private int |
persistTimerId
ID for persist timer. |
static int |
PRINTOUT
Indicator for printing debug outputs. |
private int |
probeCounter
to count how many probes we have received for this current session (session means the time when the receiver advertises zero window). |
private TransTcp.TcpMessage |
probeMessage
temporary variable to store the current probe message (if not null). |
private NetAddress |
raddr
Remote address for the connection. |
private int |
rcv_nxt
next sequence number expected on an incoming segment. |
private short |
rcv_wnd
receiver window. |
private CircularBuffer |
receiveBuffer
Buffers to hold bytes received. |
private int |
resetTimerId
ID for reset timer (for special cases). |
static long |
RETRANSMIT_TIMEOUT
Number of seconds to wait for first retransmission timer. |
static long |
RETRANSMIT_TIMEOUT_FINAL
Number of seconds to wait for second retransmission timer. |
private PriorityList |
rList
a list to hold packets that might need to be retransmitted. |
private PriorityList |
rMsgBuffer
a list to hold out-of-order received packets that are in window. |
private int |
rport
Remote port number for the connection. |
private short |
rwnd
most recently advertised receiver window. |
private SocketInterface.TcpSocketInterface |
self
A pointer to this socket's proxy. |
private CircularBuffer |
sendBuffer
Buffers to hold bytes to be sent. |
private int |
snd_nxt
next sequence number to be sent. |
private int |
snd_una
oldest unacknowledged sequence number. |
private short |
sshtresh
threshold for slow start/congestion avoidance. |
static int |
TCP_DEBUG
Debug printing flag. |
private TransInterface.TransTcpInterface |
tcpEntity
A reference to TCP Entity. |
private short |
temp_rcv_wnd
temporary receiver window (used to hold update after some data are sent to application layer). |
Constructor Summary | |
---|---|
|
TcpSocket()
Creates an unconnected socket, with the system-default type of SocketImpl. |
|
TcpSocket(java.net.InetAddress address,
int port)
Creates a stream socket and connects it to the specified port number at the specified IP address. |
|
TcpSocket(java.net.InetAddress host,
int port,
boolean stream)
Deprecated. |
|
TcpSocket(java.net.InetAddress address,
int port,
java.net.InetAddress localAddr,
int localPort)
Creates a socket and connects it to the specified remote address on the specified remote port. |
protected |
TcpSocket(java.net.SocketImpl impl)
Creates an unconnected Socket with a user-specified SocketImpl. |
|
TcpSocket(java.lang.String host,
int port)
Creates a stream socket and connects it to the specified port number on the named host. |
|
TcpSocket(java.lang.String host,
int port,
boolean stream)
Deprecated. |
|
TcpSocket(java.lang.String host,
int port,
java.net.InetAddress localAddr,
int localPort)
Creates a socket and connects it to the specified remote host on the specified remote port. |
protected |
TcpSocket(TransInterface.TransTcpInterface tcpEntity,
java.net.InetAddress rAddr,
short rPort,
java.net.InetAddress lAddr,
short lPort,
int initialAckNum,
short winSize)
Creates an unconnected Socket with a user-specified TransInterface Entity and SYN packet received by TcpServerSocket. |
Method Summary | |
---|---|
void |
_jistPostInit()
Post-constructor call. |
void |
bind(java.net.SocketAddress bindpoint)
Binds the ServerSocket to a specific address (IP address and port number). |
private void |
cancelPersistTimer()
Cancel the current persist timer. |
private void |
cancelResetTimer()
Cancel the current reset timer. |
void |
checkPacketandState(TransTcp.TcpMessage msg,
NetAddress src)
Check and process the incoming packet depending on current state of the socket. |
void |
close()
Closes this socket. |
private void |
closeSocket(boolean doUnbind)
This method is called when socket is to be closed. |
private long |
compareUnsignedInt(int a,
int b)
Returns the difference between two unsigned integers. |
private int |
compareUnsignedShort(short a,
short b)
Returns the difference between two unsigned shorts. |
private void |
CongestionAvoidance()
This method implements Congestion Avoidance phase for congestion control. |
private void |
connect(java.net.InetAddress raddr,
int rport,
int timeout)
Connects this socket to a specified address and timeout value. |
void |
connect(java.net.SocketAddress endpoint)
Connects this socket to the server. |
void |
connect(java.net.SocketAddress endpoint,
int timeout)
Connects this socket to the server with a specified timeout value. |
void |
constructPackets()
Creates packets to be sent based on the receiver's advertised window (managing flow control). |
private boolean |
createProbeMessage()
Create a probe message (for persist timer) by extracting one byte of data from the send buffer. |
void |
createProxy()
Create an entity reference to itself. |
private void |
createStreams()
Create the input and output streams for this socket. |
protected void |
establishingConnection()
this method is used to wait for incoming ACK packet for connection establishment. |
private void |
FastRetransmit()
This method implements Fast Retransmit algorithm. |
byte[] |
getBytesFromSocket(int length)
This method is called by the input stream to retrieve data from the transport layer. |
java.nio.channels.SocketChannel |
getChannel()
Returns the unique SocketChannel object associated with this socket, if any. |
private short |
getCurrentReceiverWindow()
Returns the smaller window (between the last advertised window and the congestion window) for the receiver. |
private java.lang.String |
getCurrentStateString()
Returns the string name of current state. |
java.net.InetAddress |
getInetAddress()
Returns the local address of this server socket/socket. |
InputStream |
getInputStream()
Returns an input stream for this socket. |
boolean |
getKeepAlive()
Tests if SO_KEEPALIVE is enabled. |
java.net.InetAddress |
getLocalAddress()
Gets the local address to which the socket is bound. |
int |
getLocalPort()
Returns the port on which this socket is listening. |
java.net.SocketAddress |
getLocalSocketAddress()
Returns the address of the endpoint this socket is bound to, or null if it is not bound yet. |
boolean |
getOOBInline()
Tests if OOBINLINE is enabled. |
OutputStream |
getOutputStream()
Returns an output stream for this socket. |
int |
getPort()
Returns the remote port to which this socket is connected. |
SocketInterface.TcpSocketInterface |
getProxy()
Returns the entity reference to the socket itself. |
int |
getReceiveBufferSize()
Gets the value of the SO_RCVBUF option for this ServerSocket, that is the proposed buffer size that will be used for Sockets accepted from this ServerSocket. |
java.net.SocketAddress |
getRemoteSocketAddress()
Returns the address of the endpoint this socket is connected to, or null if it is unconnected. |
boolean |
getReuseAddress()
Tests if SO_REUSEADDR is enabled. |
int |
getSendBufferSize()
Get value of the SO_SNDBUF option for this Socket, that is the buffer size used by the platform for output on this Socket. |
int |
getSoLinger()
Returns setting for SO_LINGER. |
int |
getSoTimeout()
Retrieve setting for SO_TIMEOUT. |
boolean |
getTcpNoDelay()
Tests if TCP_NODELAY is enabled. |
int |
getTrafficClass()
Gets traffic class or type-of-service in the IP header for packets sent from this Socket. |
private void |
initializeAll(java.net.InetAddress rAddr,
int rPort,
java.net.InetAddress lAddr,
int lPort,
boolean doConnect)
Initialize all variables needed. |
private void |
initializeSocketVariables()
Initialize all the socket variables. |
private void |
initializeTCPBuffers()
Initialize all buffers needed for TCP implementation. |
private void |
initializeTCPVariables()
Initialize all variables needed for TCP Implementation. |
private void |
initializeTimerVariables()
Initialize all variables needed for TCP timers. |
private void |
initiateClosingConnection()
this method is called to close the connection. |
private boolean |
isAcceptableACK(TransTcp.TcpMessage msg)
Check if the ACK packet received is acknowledging the data that have not been acknowledged. |
boolean |
isBound()
Returns the binding state of the ServerSocket. |
boolean |
isClosed()
Returns the closed state of the ServerSocket. |
boolean |
isConnected()
Returns the connection state of the socket. |
boolean |
isInputShutdown()
Returns wether the read-half of the socket connection is closed. |
boolean |
isOutputShutdown()
Returns wether the write-half of the socket connection is closed. |
private boolean |
isPacketOutofWindow(TransTcp.TcpMessage msg)
Check if the incoming packet is out of receiving window. |
private void |
onClosedState(TransTcp.TcpMessage msg,
NetAddress src)
This method takes care of all the steps that need to be done if we receive a packet during CLOSED state. |
private void |
onClosingState(TransTcp.TcpMessage msg)
This method takes care of all the steps that need to be done if we receive a packet during CLOSING state. |
private void |
onEstablishedState(TransTcp.TcpMessage msg)
This method takes care of all the steps that need to be done if we receive a packet during ESTABLISHED state. |
private void |
onFinWait1State(TransTcp.TcpMessage msg)
This method takes care of all the steps that need to be done if we receive a packet during FIN_WAIT_1 state. |
private void |
onFinWait2State(TransTcp.TcpMessage msg)
This method takes care of all the steps that need to be done if we receive a packet during FIN_WAIT_2 state. |
private void |
onLastAckState(TransTcp.TcpMessage msg)
This method takes care of all the steps that need to be done if we receive a packet during LAST_ACK state. |
private void |
onReceiveACK(TransTcp.TcpMessage msg)
This method handles the case when ACK packet is received. |
private void |
onReceiveData(TransTcp.TcpMessage msg)
This method handles the case when data packet is received. |
private void |
onReceiveValidDataorACK(TransTcp.TcpMessage msg)
This method is to check if receive data packet or ACK packet. |
private boolean |
onRetransmit(int seqNumToSend)
Called when retransmission happens. |
private void |
onSynReceivedState(TransTcp.TcpMessage msg)
This method takes care of all the steps that need to be done if we receive a packet during SYN_RECEIVED state. |
private void |
onSynSentState(TransTcp.TcpMessage msg)
This method takes care of all the steps that need to be done if we receive a packet during SYN_SENT state. |
void |
persistTimerTimeout(int timerId,
int seqNum)
Execution when persist timer times out (sending probe message). |
protected void |
printMessage(TransTcp.TcpMessage msg,
boolean isReceive)
Prints out the message header and payload. |
int |
queueBytes(byte[] data)
This method is called to send bytes to the other side. |
void |
resetTimerTimeout(int timerId)
Execution when reset timer times out (closing the socket). |
void |
retransmitTimerTimeout(int seqNum,
long time)
Attempt to retransmit because the timer times out. |
private void |
sendBytesInBuffer()
This method is called to send bytes in the buffer until they fill the receiver window. |
private void |
sendBytesToChannel(int length)
This method sends bytes to channel. |
protected TransTcp.TcpMessage |
sendDataPacket(byte[] data)
Send a packet to the remote socket. |
protected void |
sendFINPacket()
A method to send FIN packet. |
protected void |
sendFirstACKPacket()
A method to send ACK packet. |
private void |
sendMessage(TransTcp.TcpMessage msg)
Send a TCP message to remote socket. |
protected void |
sendRSTPacket(int seqNum,
int ackNum)
A method to send RST packet. |
protected void |
sendSYNACKPacket()
A method to send SYNACK packet. |
protected void |
sendSYNPacket()
A method to send SYN packet. |
void |
sendUrgentData(int data)
Send one byte of urgent data on the socket. |
private void |
setInitAckNum(int ackNum)
Set the initial acknowledgement number for this socket. |
void |
setKeepAlive(boolean on)
Enable/disable SO_KEEPALIVE. |
private void |
setLocalAddress(java.net.InetAddress address,
int port)
Set the local address and local port for this socket. |
void |
setOOBInline(boolean on)
Enable/disable OOBINLINE (receipt of TCP urgent data) By default, this option is disabled and TCP urgent data received on a socket is silently discarded. |
void |
setReceiveBufferSize(int size)
Sets a default proposed value for the SO_RCVBUF option for sockets accepted from this ServerSocket. |
private void |
setRemoteAddress(java.net.InetAddress address,
int port)
Set the remote address and remote port for this socket. |
void |
setReuseAddress(boolean on)
Enable/disable the SO_REUSEADDR socket option. |
void |
setSendBufferSize(int size)
Sets the SO_SNDBUF option to the specified value for this Socket. |
static void |
setSocketImplFactory(java.net.SocketImplFactory fac)
Sets the client socket implementation factory for the application. |
void |
setSoLinger(boolean on,
int linger)
Enable/disable SO_LINGER with the specified linger time in seconds. |
void |
setSoTimeout(int timeout)
Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. |
void |
setTcpEntity(TransInterface.TransTcpInterface tcpEntity)
Sets the reference to the network layer. |
void |
setTcpNoDelay(boolean on)
Enable/disable TCP_NODELAY (disable/enable Nagle's algorithm). |
void |
setTrafficClass(int tc)
Sets traffic class or type-of-service octet in the IP header for packets sent from this Socket. |
void |
shutdownInput()
Places the input stream for this socket at "end of stream". |
void |
shutdownOutput()
Disables the output stream for this socket. |
private void |
SlowStart()
This method implements Start phase for congestion control. |
void |
startPersistTimer(int seqNum)
Methods for persist timer (sender sending packets to probe receiver window). |
void |
startResetTimer()
Methods for reset timer (this timer is used when establishing or closing connection --> If no reply is received, connection is reset). |
void |
startRetransmitTimer(int seqNum,
long time)
Schedule a retransmission for a message. |
void |
startTimeWaitTimer()
Methods for timer during TIME_WAIT state. |
void |
timeWaitTimerTimeout()
Execution when time wait timer times out (closing the socket). |
java.lang.String |
toString()
Returns the implementation address and implementation port of this socket as a String. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int OFF
public static final int INFO
public static final int TCP_DEBUG
public static final int FULL_DEBUG
public static final int PRINTOUT
public static final int MSS
public static final int MSL
public static final long DELAYED_ACK_TIME
public static final long RETRANSMIT_TIMEOUT
public static final long RETRANSMIT_TIMEOUT_FINAL
public static final long PERSIST_TIMER
public static final short INIT_WINDOW_SIZE
private SocketInterface.TcpSocketInterface self
private int lport
private int rport
private NetAddress laddr
private NetAddress raddr
private Channel channel
private TransInterface.SocketHandler.TcpHandler callback
private TransInterface.TransTcpInterface tcpEntity
private boolean isBound
private boolean isClosed
private boolean isConnected
private boolean isTcpNoDelay
private TcpInputStream in
private TcpOutputStream out
private boolean connectInConstructor
private boolean isClosing
private boolean isApplicationWaiting
private int numBytesRequest
private int currentState
private CircularBuffer receiveBuffer
private CircularBuffer sendBuffer
private int initSeqNum
private int initAckNum
private int snd_nxt
private int snd_una
private short rwnd
private short cwnd
private double cwnd_increment
private short sshtresh
private int dupAckCounter
private TransTcp.TcpMessage probeMessage
private PriorityList rList
private PriorityList rMsgBuffer
private int rcv_nxt
private short rcv_wnd
private short temp_rcv_wnd
private short last_adv_wnd
private int probeCounter
private int persistTimerId
private int resetTimerId
private int packetCounter
Constructor Detail |
---|
public TcpSocket()
public TcpSocket(java.net.InetAddress address, int port)
address
- the IP addressport
- the port numberpublic TcpSocket(java.net.InetAddress host, int port, boolean stream)
host
- the IP addressport
- the port numberstream
- if true, create a stream socket;
otherwise, create a datagram socket.public TcpSocket(java.net.InetAddress address, int port, java.net.InetAddress localAddr, int localPort)
address
- the remote addressport
- the remote portlocalAddr
- the local address the socket is bound tolocalPort
- the local port the socket is bound toprotected TcpSocket(java.net.SocketImpl impl)
impl
- an instance of a SocketImpl the subclass wishes to use on the Socketprotected TcpSocket(TransInterface.TransTcpInterface tcpEntity, java.net.InetAddress rAddr, short rPort, java.net.InetAddress lAddr, short lPort, int initialAckNum, short winSize)
tcpEntity
- entity reference to transport layerrAddr
- remote addressrPort
- remote port numberlAddr
- local addresslPort
- local port numberinitialAckNum
- initial acknowledgement numberwinSize
- the other side's receiver window sizepublic TcpSocket(java.lang.String host, int port)
host
- the host name, or null for the loopback address.port
- the port number.public TcpSocket(java.lang.String host, int port, boolean stream)
host
- the host name, or null for the loopback address.port
- the port number.stream
- a boolean indicating whether this is
a stream socket or a datagram socket.public TcpSocket(java.lang.String host, int port, java.net.InetAddress localAddr, int localPort)
host
- the name of the remote host, or null for the loopback address.port
- the remote portlocalAddr
- the local address the socket is bound tolocalPort
- the local port the socket is bound toMethod Detail |
---|
public void createProxy()
public SocketInterface.TcpSocketInterface getProxy()
public void setTcpEntity(TransInterface.TransTcpInterface tcpEntity)
setTcpEntity
in interface SocketInterface
tcpEntity
- entity reference to transport layerpublic void _jistPostInit()
_jistPostInit
in interface SocketInterface
public void bind(java.net.SocketAddress bindpoint)
bind
in interface SocketInterface
bindpoint
- The IP address & port number to bind to.public void close()
close
in interface SocketInterface
public void connect(java.net.SocketAddress endpoint)
connect
in interface SocketInterface.TcpSocketInterface
endpoint
- the SocketAddresspublic void connect(java.net.SocketAddress endpoint, int timeout)
connect
in interface SocketInterface.TcpSocketInterface
endpoint
- the SocketAddresstimeout
- the timeout value to be used in millisecondsprivate void connect(java.net.InetAddress raddr, int rport, int timeout)
raddr
- remote addressrport
- remote porttimeout
- the timeout value to be used in millisecondspublic java.nio.channels.SocketChannel getChannel()
getChannel
in interface SocketInterface.TcpSocketInterface
public java.net.InetAddress getInetAddress()
getInetAddress
in interface SocketInterface
public InputStream getInputStream()
getInputStream
in interface SocketInterface.TcpSocketInterface
public boolean getKeepAlive()
getKeepAlive
in interface SocketInterface.TcpSocketInterface
public java.net.InetAddress getLocalAddress()
getLocalAddress
in interface SocketInterface.TcpSocketInterface
public int getLocalPort()
getLocalPort
in interface SocketInterface
public java.net.SocketAddress getLocalSocketAddress()
getLocalSocketAddress
in interface SocketInterface
public boolean getOOBInline()
getOOBInline
in interface SocketInterface.TcpSocketInterface
public OutputStream getOutputStream()
getOutputStream
in interface SocketInterface.TcpSocketInterface
public int getPort()
getPort
in interface SocketInterface.TcpSocketInterface
public int getReceiveBufferSize()
getReceiveBufferSize
in interface SocketInterface
public java.net.SocketAddress getRemoteSocketAddress()
getRemoteSocketAddress
in interface SocketInterface.TcpSocketInterface
public boolean getReuseAddress()
getReuseAddress
in interface SocketInterface
public int getSendBufferSize()
getSendBufferSize
in interface SocketInterface.TcpSocketInterface
public int getSoLinger()
getSoLinger
in interface SocketInterface.TcpSocketInterface
public int getSoTimeout()
getSoTimeout
in interface SocketInterface
public boolean getTcpNoDelay()
getTcpNoDelay
in interface SocketInterface.TcpSocketInterface
public int getTrafficClass()
getTrafficClass
in interface SocketInterface.TcpSocketInterface
public boolean isBound()
isBound
in interface SocketInterface
public boolean isClosed()
isClosed
in interface SocketInterface
public boolean isConnected()
isConnected
in interface SocketInterface.TcpSocketInterface
public boolean isInputShutdown()
isInputShutdown
in interface SocketInterface.TcpSocketInterface
public boolean isOutputShutdown()
isOutputShutdown
in interface SocketInterface.TcpSocketInterface
public void sendUrgentData(int data)
sendUrgentData
in interface SocketInterface.TcpSocketInterface
data
- The byte of data to sendpublic void setKeepAlive(boolean on)
setKeepAlive
in interface SocketInterface.TcpSocketInterface
on
- whether or not to have socket keep alive turned onpublic void setOOBInline(boolean on)
setOOBInline
in interface SocketInterface.TcpSocketInterface
on
- true to enable OOBINLINE, false to disable.public void setReceiveBufferSize(int size)
setReceiveBufferSize
in interface SocketInterface
size
- the size to which to set the receive buffer size.
This value must be greater than 0.public void setReuseAddress(boolean on)
setReuseAddress
in interface SocketInterface
on
- whether to enable or disable the socket optionpublic void setSendBufferSize(int size)
setSendBufferSize
in interface SocketInterface.TcpSocketInterface
size
- the size to which to set the send buffer size.
This value must be greater than 0.public static void setSocketImplFactory(java.net.SocketImplFactory fac)
fac
- the desired factorypublic void setSoLinger(boolean on, int linger)
setSoLinger
in interface SocketInterface.TcpSocketInterface
on
- whether or not to linger on.linger
- how long to linger for, if on is true.public void setSoTimeout(int timeout)
setSoTimeout
in interface SocketInterface
timeout
- the specified timeout, in millisecondspublic void setTcpNoDelay(boolean on)
setTcpNoDelay
in interface SocketInterface.TcpSocketInterface
on
- true to enable TCP_NODELAY, false to disable.public void setTrafficClass(int tc)
setTrafficClass
in interface SocketInterface.TcpSocketInterface
tc
- an int value for the bitset.public void shutdownInput() throws java.io.IOException
shutdownInput
in interface SocketInterface.TcpSocketInterface
java.io.IOException
- if an I/O error occurs when shutting down this socket.public void shutdownOutput() throws java.io.IOException
shutdownOutput
in interface SocketInterface.TcpSocketInterface
java.io.IOException
- if an I/O error occurs when shutting down this socket.public java.lang.String toString()
toString
in interface SocketInterface
toString
in class java.lang.Object
private void setRemoteAddress(java.net.InetAddress address, int port)
address
- remote addressport
- remote port numberprivate void setLocalAddress(java.net.InetAddress address, int port)
address
- local addressport
- local port numberprivate void initializeSocketVariables()
private void initializeTCPVariables()
private void initializeTimerVariables()
private void initializeTCPBuffers()
private void initializeAll(java.net.InetAddress rAddr, int rPort, java.net.InetAddress lAddr, int lPort, boolean doConnect)
rAddr
- remote addressrPort
- remote port numberlAddr
- local addresslPort
- local port numberdoConnect
- set to true to try to connect in constructorprivate void createStreams()
protected void establishingConnection()
private void initiateClosingConnection()
private void setInitAckNum(int ackNum)
ackNum
- acknowledgement numberprotected void printMessage(TransTcp.TcpMessage msg, boolean isReceive)
msg
- TCP message to print outisReceive
- true if printing for receiving sideprivate java.lang.String getCurrentStateString()
private int compareUnsignedShort(short a, short b)
a
- first shortb
- second short
private long compareUnsignedInt(int a, int b)
a
- first integerb
- second integer
protected void sendSYNPacket()
protected void sendSYNACKPacket()
protected void sendFirstACKPacket()
protected void sendFINPacket()
protected void sendRSTPacket(int seqNum, int ackNum)
seqNum
- sequence numberackNum
- acknowledgement numberprotected TransTcp.TcpMessage sendDataPacket(byte[] data)
data
- data to send
private void sendMessage(TransTcp.TcpMessage msg)
msg
- message to sendprivate void sendBytesInBuffer()
public void constructPackets()
constructPackets
in interface SocketInterface.TcpSocketInterface
public int queueBytes(byte[] data)
queueBytes
in interface SocketInterface.TcpSocketInterface
data
- bytes to be stored in the send buffer
private void sendBytesToChannel(int length)
length
- number of bytes to send to application layerpublic byte[] getBytesFromSocket(int length)
getBytesFromSocket
in interface SocketInterface.TcpSocketInterface
length
- number of bytes to retrieve
private short getCurrentReceiverWindow()
public void startRetransmitTimer(int seqNum, long time)
startRetransmitTimer
in interface SocketInterface.TcpSocketInterface
seqNum
- sequence number of message to retransmittime
- wait time before attempting to retransmitpublic void retransmitTimerTimeout(int seqNum, long time)
retransmitTimerTimeout
in interface SocketInterface.TcpSocketInterface
seqNum
- sequence number of message to retransmittime
- wait time before attempting to retransmitpublic void startPersistTimer(int seqNum)
startPersistTimer
in interface SocketInterface.TcpSocketInterface
seqNum
- number of the probe messageprivate void cancelPersistTimer()
public void persistTimerTimeout(int timerId, int seqNum)
persistTimerTimeout
in interface SocketInterface.TcpSocketInterface
timerId
- ID of the persist timerseqNum
- number of the probe messageprivate boolean createProbeMessage()
public void startResetTimer()
startResetTimer
in interface SocketInterface.TcpSocketInterface
private void cancelResetTimer()
public void resetTimerTimeout(int timerId)
resetTimerTimeout
in interface SocketInterface.TcpSocketInterface
timerId
- ID of the reset timerpublic void startTimeWaitTimer()
startTimeWaitTimer
in interface SocketInterface.TcpSocketInterface
public void timeWaitTimerTimeout()
timeWaitTimerTimeout
in interface SocketInterface.TcpSocketInterface
public void checkPacketandState(TransTcp.TcpMessage msg, NetAddress src)
checkPacketandState
in interface SocketInterface
msg
- the incoming TCP messagesrc
- source of packetprivate void onClosedState(TransTcp.TcpMessage msg, NetAddress src)
msg
- incoming packetsrc
- packet sourceprivate void onSynSentState(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void onSynReceivedState(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void onEstablishedState(TransTcp.TcpMessage msg)
msg
- incoming packetprivate boolean isPacketOutofWindow(TransTcp.TcpMessage msg)
msg
- incoming packet
private boolean isAcceptableACK(TransTcp.TcpMessage msg)
msg
- incoming packet
private void onReceiveValidDataorACK(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void onReceiveData(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void onReceiveACK(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void FastRetransmit()
private void SlowStart()
private void CongestionAvoidance()
private boolean onRetransmit(int seqNumToSend)
seqNumToSend
- sequence number of the packet to be retransmitted
private void onFinWait1State(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void onFinWait2State(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void onClosingState(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void onLastAckState(TransTcp.TcpMessage msg)
msg
- incoming packetprivate void closeSocket(boolean doUnbind)
doUnbind
- set to true to unbind from current port
when closing socket.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |