See: Description
| Interface | Description |
|---|---|
| Packet |
Data bearing abstraction that represents a piece of information to communicate between server and client
|
| Class | Description |
|---|---|
| InPacket |
Provides the basis for a packet that is being received by the server
|
| OutPacket | |
| PacketData |
Wraps the raw Packet Data/Bytes received over the network (May serve more functions later)
|
| PacketDecoder |
Decoder that decompresses (if needed) and reads the length of the packet data sent from the stream in the form
of the byte buffer.
|
| PacketDecrypter |
Decrypts incoming packets and forwards the bytes to the PacketDecoder
|
| PacketEncoder |
Used to compress (if needed) outgoing packets from the server
|
| PacketEncrypter |
An encoder that encrypts the information contained in the raw packet
|
| PacketHandler |
The channel handler that is placed into the netty connection bootstrap to process inbound messages from clients (not
just onlinePlayers)
|
| RSA |
Produces RSA encryption digests
|
| UnknownPacket |
Used to represent any erroneous inPackets received
|
| Enum | Description |
|---|---|
| PacketDirection |
The direction the packet is headed, the bound of it
|
Copyright © 2016. All rights reserved.