OpenTTD Source
20241108-master-g80f628063a
|
Template for TCP listeners. More...
#include <tcp_listen.h>
Static Public Member Functions | |
static bool | ValidateClient (SOCKET s, NetworkAddress &address) |
static void | AcceptClient (SOCKET ls) |
Accepts clients from the sockets. More... | |
static bool | Receive () |
Handle the receiving of packets. More... | |
static bool | Listen (uint16_t port) |
Listen on a particular port. More... | |
static void | CloseListeners () |
Close the sockets we're listening on. | |
Static Private Attributes | |
static SocketList | sockets |
List of sockets we listen on. | |
Template for TCP listeners.
Tsocket | The class we create sockets for. |
Tfull_packet | The packet type to return when we don't allow more sockets. |
Tban_packet | The packet type to return when the client is banned. |
Definition at line 28 of file tcp_listen.h.
|
inlinestatic |
Accepts clients from the sockets.
ls | Socket to accept clients from. |
Definition at line 73 of file tcp_listen.h.
References _frame_counter, Debug, NetworkAddress::GetHostname(), SetNoDelay(), and SetNonBlocking().
Referenced by TCPListenHandler< Tsocket, Tfull_packet, Tban_packet >::Receive().
|
inlinestatic |
Listen on a particular port.
port | The port to listen on. |
Definition at line 143 of file tcp_listen.h.
|
inlinestatic |
Handle the receiving of packets.
Definition at line 101 of file tcp_listen.h.
References _networking, TCPListenHandler< Tsocket, Tfull_packet, Tban_packet >::AcceptClient(), and TCPListenHandler< Tsocket, Tfull_packet, Tban_packet >::sockets.