|
OpenTTD Source 20251104-master-g3befbdd52f
|
Connecter used after STUN exchange to connect from both sides to each other. More...
Public Member Functions | |
| NetworkReuseStunConnecter (std::string_view hostname, uint16_t port, const NetworkAddress &bind_address, std::string &&token, uint8_t tracking_number, uint8_t family) | |
| Try to establish a STUN-based connection. | |
| 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 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 | token |
| Token of this connection. | |
| uint8_t | tracking_number |
| Tracking number of this connection. | |
| uint8_t | family |
| Family of this connection. | |
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. | |
Connecter used after STUN exchange to connect from both sides to each other.
Definition at line 63 of file network_coordinator.cpp.
|
inline |
Try to establish a STUN-based connection.
| hostname | The hostname of the peer. |
| port | The port of the peer. |
| bind_address | The local bind address used for this connection. |
| token | The connection token. |
| tracking_number | The tracking number of the connection. |
| family | The family this connection is using. |
Definition at line 79 of file network_coordinator.cpp.
|
inlineoverridevirtual |
Callback when the connection succeeded.
| s | the socket that we opened |
Reimplemented from TCPConnecter.
Definition at line 95 of file network_coordinator.cpp.
References _network_coordinator_client, ClientNetworkCoordinatorSocketHandler::ConnectSuccess(), and NetworkAddress::GetPeerAddress().
|
inlineoverridevirtual |
Callback for when the connection attempt failed.
Reimplemented from TCPConnecter.
Definition at line 87 of file network_coordinator.cpp.
References _network_coordinator_client, ClientNetworkCoordinatorSocketHandler::CloseStunHandler(), and ClientNetworkCoordinatorSocketHandler::ConnectFailure().
|
private |
Family of this connection.
Definition at line 67 of file network_coordinator.cpp.
|
private |
Token of this connection.
Definition at line 65 of file network_coordinator.cpp.
|
private |
Tracking number of this connection.
Definition at line 66 of file network_coordinator.cpp.