Package | Description |
---|---|
sime | |
sime.tcp |
Class and Description |
---|
Receiver |
Sender
The base class for a TCP sender protocol module.
Because this is a simple simulator, some intricate details of TCP senders are left out. |
Class and Description |
---|
RTOEstimator
This class performs ongoing estimation of the TCP retransmission
timeout time.
|
Segment
TCP segment, which could carry either data, ACK, or both.
Note that this class implements java.lang.Comparable so that TCP segments can be compared (and sorted) by their sequence number. |
Sender
The base class for a TCP sender protocol module.
Because this is a simple simulator, some intricate details of TCP senders are left out. |
SenderReno
TCP old Reno implementation of a sender that appeared first
in early 1990s.
|
SenderState
This abstract class provides the TCP sender state interface.
Example sender states are: "slow start", "congestion avoidance", "fast recovery", etc. |