|
OpenTTD Source 20251117-master-g7398d2e290
|
Non blocking connection create to actually connect to servers. More...
Public Member Functions | |
| TCPClientConnecter (std::string_view connection_string) | |
| void | OnFailure () override |
| Callback for when the connection attempt failed. | |
| void | OnConnect (SOCKET s) override |
| Callback when the connection succeeded. | |
Public Member Functions inherited from TCPServerConnecter | |
| TCPServerConnecter (std::string_view connection_string, uint16_t default_port) | |
| Create a new connecter for the server. | |
| void | SetConnected (SOCKET sock) |
| The connection was successfully established. | |
| void | SetFailure () |
| The connection couldn't be established. | |
Public Member Functions inherited from TCPConnecter | |
| TCPConnecter (std::string_view connection_string, uint16_t default_port, const NetworkAddress &bind_address={}, int family=AF_UNSPEC) | |
| Create a new connecter for the given address. | |
| void | Kill () |
| Kill this connecter. | |
Private Attributes | |
| std::string | connection_string |
Additional Inherited Members | |
Static Public Member Functions inherited from TCPConnecter | |
| static void | CheckCallbacks () |
| Check whether we need to call the callback, i.e. | |
| static void | KillAll () |
| Kill all connection attempts. | |
| template<class T , typename... Args> | |
| static std::shared_ptr< TCPConnecter > | Create (Args &&... args) |
| Create the connecter, and initiate connecting by putting it in the collection of TCP connections to make. | |
Data Fields inherited from TCPServerConnecter | |
| ServerAddress | server_address |
| Address we are connecting to. | |
Non blocking connection create to actually connect to servers.
Definition at line 744 of file network.cpp.
|
inline |
Definition at line 749 of file network.cpp.
|
inlineoverridevirtual |
Callback when the connection succeeded.
| s | the socket that we opened |
Reimplemented from TCPConnecter.
Definition at line 758 of file network.cpp.
References _network_own_client_id, _networking, Debug, IConsoleCmdExec(), and NetworkClient_Connected().
|
inlineoverridevirtual |
Callback for when the connection attempt failed.
Reimplemented from TCPConnecter.
Definition at line 751 of file network.cpp.
References Debug.
|
private |
Definition at line 746 of file network.cpp.