- client - package client
-
- ClientConnection - Class in listener_references
-
ServerConnection class that contains information about a socket connection to a client
- ClientConnection(TcpClient, Socket) - Constructor for class listener_references.ClientConnection
-
- ClientException - Exception in client
-
The class client.ClientException and its subclasses are a form of
Exception that indicates conditions that a reasonable
application might want to catch.
- ClientException() - Constructor for exception client.ClientException
-
Constructs a new client exception with null as its detail message.
- ClientException(String) - Constructor for exception client.ClientException
-
Constructs a new client exception with the specified detail message.
- ClientException(String, Exception) - Constructor for exception client.ClientException
-
- ClientListenerManager - Class in client
-
- close() - Method in class client.TcpClient
-
Attempts to gracefully-ish disconnect from the server that the client is connected to
- close() - Method in class server.TcpServer.ClientConnection
-
- close() - Method in class server.TcpServer
-
Attempts to gracefully-ish shutdown the server and disconnect all existing client connections
- Command - Class in listener_references
-
- Command(Connection, String, String) - Constructor for class listener_references.Command
-
- Command(Connection, CommandPacket) - Constructor for class listener_references.Command
-
- COMMAND - packets.EncryptionPacket.PacketType
-
- CommandListener - Interface in listeners
-
CommandListener to be fired whenever a command is received
- CommandPacket - Class in packets
-
- CommandPacket(String, String) - Constructor for class packets.CommandPacket
-
- connect() - Method in class client.TcpClient
-
Attempts to connect the client to the server specified when
creating the client object
- CONNECTED - listener_references.Connection.event
-
- Connection - Class in listener_references
-
ServerConnection class that contains information about a socket connection to a client
- Connection(Socket) - Constructor for class listener_references.Connection
-
- Connection.event - Enum in listener_references
-
- cryptography - package cryptography
-