Uses of Class
mobnet.Socket

Packages that use Socket
Default Package   
core   
mobnet   
primitive   
 

Uses of Socket in
 

Methods in Default Package that return Socket
 Socket MobNetThread.getSocket(int port)
           
 

Methods in Default Package with parameters of type Socket
 void MobNetThread.setSocket(Socket sock, int port)
           
 

Uses of Socket in core
 

Methods in core that return Socket
 Socket SingletonManager.findSocketIP(java.lang.String IP, int host, java.lang.String src)
          Find and return Socket
 

Methods in core with parameters of type Socket
 void SingletonManager.setupServerSocket(java.lang.String IP, int port, Socket sock)
          This method is used to create a connection to a ServerSocket from a client.
 

Uses of Socket in mobnet
 

Methods in mobnet that return Socket
 Socket ServerSocket.accept()
          Listens for a connection to be made to this socket and accepts it.
 Socket MobNet.getSocket(int port)
          Get the Socket which belongs to the specified port.
 

Methods in mobnet with parameters of type Socket
 void MobNet.setSocket(Socket sock, int port, java.lang.String destIP)
          Insert the Socket into the ArrayList register of Sockets.
 

Uses of Socket in primitive
 

Methods in primitive that return Socket
 Socket SockHost.getSocket()
          Get the Socket represented by this class.
 Socket PortIP.getSocket()
          Returns the Socket which initiated the connection.
 

Constructors in primitive with parameters of type Socket
SockHost(Socket sock, int port, java.lang.String destIP)
          Contstructor for class SockHost which takes the Socket to be represented the port of the Socket and the destination IP of the Socket.
PortIP(int port, java.lang.String IP, Socket sock)
          Constructor to create a 'PIP' Object.