Uses of Class
ctf.network.UninitializedSocketException

Packages that use UninitializedSocketException
ctf.network.tcp TCP networking 
 

Uses of UninitializedSocketException in ctf.network.tcp
 

Methods in ctf.network.tcp that throw UninitializedSocketException
 Connection Server.accept()
          Accepts a connection from a client
 java.lang.String Connection.getLine()
          Receive a line (string terminated by newline) from the socket with the newline character removed.
 void Connection.send(java.lang.String string)
          Send a string of characters across the socket
 void TestConnection.sendLine(java.lang.String line)
           
 void Connection.sendLine(java.lang.String s)
          Send a newline-terminated line across the socket
 void Server.startAccepting(int clients)
          Starts accepting TCP clients (asynchronously)
 

Constructors in ctf.network.tcp that throw UninitializedSocketException
CLI(java.lang.String host, int port, java.lang.String colour, int side)
           
Connection(java.net.Socket socket)
          Construct a new (already-opened) connection
Connection(java.net.Socket socket, int timeout)
          Construct a new (already-opened) connection
Connection(java.lang.String host, int port)
          Construct a new connection to a server
Connection(java.lang.String host, int port, int timeout, int retries)
          Construct a new connection to a server
TestConnection(java.net.Socket socket)
          Construct a new (already-opened) connection
TestConnection(java.lang.String host, int port)
          Construct a new connection to a server