Uses of Interface
jist.swans.trans.TransInterface.TransTcpInterface

Packages that use TransInterface.TransTcpInterface
jist.swans.app Application layer entity of SWANS simulator and related classes. 
jist.swans.trans Transport layer entity of SWANS simulator and related classes. 
 

Uses of TransInterface.TransTcpInterface in jist.swans.app
 

Methods in jist.swans.app that return TransInterface.TransTcpInterface
 TransInterface.TransTcpInterface AppInterface.TcpApp.getTcpEntity()
          Return application TCP entity.
 TransInterface.TransTcpInterface AppJava.getTcpEntity()
          Return application TCP entity.
 

Methods in jist.swans.app with parameters of type TransInterface.TransTcpInterface
 void AppJava.setTcpEntity(TransInterface.TransTcpInterface tcp)
          Set application TCP entity.
 

Uses of TransInterface.TransTcpInterface in jist.swans.trans
 

Classes in jist.swans.trans that implement TransInterface.TransTcpInterface
 class TransTcp
          Implementation of TCP Transport Layer.
 

Methods in jist.swans.trans that return TransInterface.TransTcpInterface
 TransInterface.TransTcpInterface TransTcp.getProxy()
          Returns an entity reference to this object.
 

Methods in jist.swans.trans with parameters of type TransInterface.TransTcpInterface
 void SocketInterface.setTcpEntity(TransInterface.TransTcpInterface tcpEntity)
          Sets the reference to the network layer.
 void TcpServerSocket.setTcpEntity(TransInterface.TransTcpInterface tcpEntity)
          Sets the reference to the network layer.
 void TcpSocket.setTcpEntity(TransInterface.TransTcpInterface tcpEntity)
          Sets the reference to the network layer.
 

Constructors in jist.swans.trans with parameters of type TransInterface.TransTcpInterface
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.