OpenTTD Source 20250509-master-ga45f23686d
|
Connect to the content server. More...
Public Member Functions | |
NetworkContentConnecter (std::string_view connection_string) | |
Initiate the connecting. | |
void | OnFailure () override |
Callback for when the connection attempt failed. | |
void | OnConnect (SOCKET s) override |
Callback when the connection succeeded. | |
![]() | |
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. | |
Additional Inherited Members | |
![]() | |
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. | |
Connect to the content server.
Definition at line 695 of file network_content.cpp.
|
inline |
Initiate the connecting.
address | The address of the server. |
Definition at line 701 of file network_content.cpp.
|
inlineoverridevirtual |
Callback when the connection succeeded.
s | the socket that we opened |
Reimplemented from TCPConnecter.
Definition at line 709 of file network_content.cpp.
References _network_content_client, ClientNetworkContentSocketHandler::is_connecting, ClientNetworkContentSocketHandler::last_activity, ClientNetworkContentSocketHandler::OnConnect(), NetworkSocketHandler::Reopen(), and NetworkTCPSocketHandler::sock.
|
inlineoverridevirtual |
Callback for when the connection attempt failed.
Reimplemented from TCPConnecter.
Definition at line 703 of file network_content.cpp.
References _network_content_client, ClientNetworkContentSocketHandler::is_connecting, and ClientNetworkContentSocketHandler::OnConnect().