OpenTTD
|
Base socket handler for all Content TCP sockets. More...
#include <tcp_content.h>
Public Member Functions | |
NetworkContentSocketHandler (SOCKET s=INVALID_SOCKET, const NetworkAddress &address=NetworkAddress()) | |
Create a new cs socket handler for a given cs. | |
virtual | ~NetworkContentSocketHandler () |
On destructing of this class, the socket needs to be closed. | |
bool | ReceivePackets () |
Receive a packet at TCP level. | |
![]() | |
bool | IsConnected () const |
Whether this socket is currently bound to a socket. | |
virtual NetworkRecvStatus | CloseConnection (bool error=true) |
Close the current connection; for TCP this will be mostly equivalent to Close(), but for UDP it just means the packet has to be dropped. | |
virtual void | SendPacket (Packet *packet) |
This function puts the packet in the send-queue and it is send as soon as possible. | |
SendPacketsState | SendPackets (bool closing_down=false) |
Sends all the buffered packets out for this client. | |
virtual Packet * | ReceivePacket () |
Receives a packet for the given client. | |
bool | CanSendReceive () |
Check whether this socket can send or receive something. | |
bool | HasSendQueue () |
Whether there is something pending in the send queue. | |
NetworkTCPSocketHandler (SOCKET s=INVALID_SOCKET) | |
Construct a socket handler for a TCP connection. | |
![]() | |
NetworkSocketHandler () | |
Create a new unbound socket. | |
virtual | ~NetworkSocketHandler () |
Close the socket when destructing the socket handler. | |
bool | HasClientQuit () const |
Whether the current client connected to the socket has quit. | |
void | Reopen () |
Reopen the socket so we can send/receive stuff again. | |
void | SendGRFIdentifier (Packet *p, const GRFIdentifier *grf) |
Serializes the GRFIdentifier (GRF ID and MD5 checksum) to the packet. | |
void | ReceiveGRFIdentifier (Packet *p, GRFIdentifier *grf) |
Deserializes the GRFIdentifier (GRF ID and MD5 checksum) from the packet. | |
void | SendCompanyInformation (Packet *p, const struct Company *c, const struct NetworkCompanyStats *stats, uint max_len=NETWORK_COMPANY_NAME_LENGTH) |
Package some generic company information into a packet. |
Protected Member Functions | |
virtual void | Close () |
Really close the socket. | |
bool | ReceiveInvalidPacket (PacketContentType type) |
Helper for logging receiving invalid packets. | |
virtual bool | Receive_CLIENT_INFO_LIST (Packet *p) |
Client requesting a list of content info: byte type uint32 openttd version. | |
virtual bool | Receive_CLIENT_INFO_ID (Packet *p) |
Client requesting a list of content info: uint16 count of ids uint32 id (count times) | |
virtual bool | Receive_CLIENT_INFO_EXTID (Packet *p) |
Client requesting a list of content info based on an external 'unique' id; GRF ID for NewGRFS, shortname and for base graphics and AIs. | |
virtual bool | Receive_CLIENT_INFO_EXTID_MD5 (Packet *p) |
Client requesting a list of content info based on an external 'unique' id; GRF ID + MD5 checksum for NewGRFS, shortname and xor-ed MD5 checksums for base graphics and AIs. | |
virtual bool | Receive_SERVER_INFO (Packet *p) |
Server sending list of content info: byte type (invalid ID == does not exist) uint32 id uint32 file_size string name (max 32 characters) string version (max 16 characters) uint32 unique id uint8 md5sum (16 bytes) uint8 dependency count uint32 unique id of dependency (dependency count times) uint8 tag count string tag (max 32 characters for tag count times) | |
virtual bool | Receive_CLIENT_CONTENT (Packet *p) |
Client requesting the actual content: uint16 count of unique ids uint32 unique id (count times) | |
virtual bool | Receive_SERVER_CONTENT (Packet *p) |
Server sending list of content info: uint32 unique id uint32 file size (0 == does not exist) string file name (max 48 characters) After this initial packet, packets with the actual data are send using the same packet type. | |
bool | HandlePacket (Packet *p) |
Handle the given packet, i.e. |
Protected Attributes | |
NetworkAddress | client_addr |
The address we're connected to. |
Additional Inherited Members | |
![]() | |
SOCKET | sock |
The socket currently connected to. | |
bool | writable |
Can we write to this socket? |
Base socket handler for all Content TCP sockets.
Definition at line 100 of file tcp_content.h.
|
inline |
Create a new cs socket handler for a given cs.
s | the socket we are connected with |
address | IP etc. of the client |
Definition at line 200 of file tcp_content.h.
|
protected |
Handle the given packet, i.e.
pass it to the right parser receive command.
p | the packet to handle |
Definition at line 163 of file tcp_content.cpp.
References client_addr, DEBUG, NetworkAddress::GetAddressAsString(), NetworkSocketHandler::HasClientQuit(), PACKET_CONTENT_CLIENT_CONTENT, PACKET_CONTENT_CLIENT_INFO_EXTID, PACKET_CONTENT_CLIENT_INFO_EXTID_MD5, PACKET_CONTENT_CLIENT_INFO_ID, PACKET_CONTENT_CLIENT_INFO_LIST, PACKET_CONTENT_END, PACKET_CONTENT_SERVER_CONTENT, PACKET_CONTENT_SERVER_INFO, Receive_CLIENT_CONTENT(), Receive_CLIENT_INFO_EXTID(), Receive_CLIENT_INFO_EXTID_MD5(), Receive_CLIENT_INFO_ID(), Receive_CLIENT_INFO_LIST(), Receive_SERVER_CONTENT(), Receive_SERVER_INFO(), and Packet::Recv_uint8().
Referenced by ReceivePackets().
|
protectedvirtual |
Client requesting the actual content: uint16 count of unique ids uint32 unique id (count times)
p | The packet that was just received. |
Definition at line 240 of file tcp_content.cpp.
References PACKET_CONTENT_CLIENT_CONTENT, and ReceiveInvalidPacket().
Referenced by HandlePacket().
|
protectedvirtual |
Client requesting a list of content info based on an external 'unique' id; GRF ID for NewGRFS, shortname and for base graphics and AIs.
Scenarios and AI libraries are not supported uint8 count of requests for each request: uint8 type unique id (uint32)
p | The packet that was just received. |
Definition at line 237 of file tcp_content.cpp.
References PACKET_CONTENT_CLIENT_INFO_EXTID, and ReceiveInvalidPacket().
Referenced by HandlePacket().
|
protectedvirtual |
Client requesting a list of content info based on an external 'unique' id; GRF ID + MD5 checksum for NewGRFS, shortname and xor-ed MD5 checksums for base graphics and AIs.
Scenarios and AI libraries are not supported uint8 count of requests for each request: uint8 type unique id (uint32) md5 (16 bytes)
p | The packet that was just received. |
Definition at line 238 of file tcp_content.cpp.
References PACKET_CONTENT_CLIENT_INFO_EXTID_MD5, and ReceiveInvalidPacket().
Referenced by HandlePacket().
|
protectedvirtual |
Client requesting a list of content info: uint16 count of ids uint32 id (count times)
p | The packet that was just received. |
Definition at line 236 of file tcp_content.cpp.
References PACKET_CONTENT_CLIENT_INFO_ID, and ReceiveInvalidPacket().
Referenced by HandlePacket().
|
protectedvirtual |
Client requesting a list of content info: byte type uint32 openttd version.
p | The packet that was just received. |
Definition at line 235 of file tcp_content.cpp.
References PACKET_CONTENT_CLIENT_INFO_LIST, and ReceiveInvalidPacket().
Referenced by HandlePacket().
|
protectedvirtual |
Server sending list of content info: uint32 unique id uint32 file size (0 == does not exist) string file name (max 48 characters) After this initial packet, packets with the actual data are send using the same packet type.
p | The packet that was just received. |
Definition at line 241 of file tcp_content.cpp.
References PACKET_CONTENT_SERVER_CONTENT, and ReceiveInvalidPacket().
Referenced by HandlePacket().
|
protectedvirtual |
Server sending list of content info: byte type (invalid ID == does not exist) uint32 id uint32 file_size string name (max 32 characters) string version (max 16 characters) uint32 unique id uint8 md5sum (16 bytes) uint8 dependency count uint32 unique id of dependency (dependency count times) uint8 tag count string tag (max 32 characters for tag count times)
p | The packet that was just received. |
Definition at line 239 of file tcp_content.cpp.
References PACKET_CONTENT_SERVER_INFO, and ReceiveInvalidPacket().
Referenced by HandlePacket().
|
protected |
Helper for logging receiving invalid packets.
type | The received packet type. |
Definition at line 229 of file tcp_content.cpp.
References client_addr, DEBUG, and NetworkAddress::GetAddressAsString().
Referenced by Receive_CLIENT_CONTENT(), Receive_CLIENT_INFO_EXTID(), Receive_CLIENT_INFO_EXTID_MD5(), Receive_CLIENT_INFO_ID(), Receive_CLIENT_INFO_LIST(), Receive_SERVER_CONTENT(), and Receive_SERVER_INFO().
bool NetworkContentSocketHandler::ReceivePackets | ( | ) |
Receive a packet at TCP level.
Definition at line 190 of file tcp_content.cpp.
References HandlePacket(), and NetworkTCPSocketHandler::ReceivePacket().
Referenced by ClientNetworkContentSocketHandler::SendReceive().