Files
minecraft-pe-0.6.1/src/raknet/UDPProxyCoordinator.h
2026-03-02 22:04:18 +03:00

116 lines
4.7 KiB
C++
Executable File

/// \file
/// \brief Essentially maintains a list of servers running UDPProxyServer, and some state management for UDPProxyClient to find a free server to forward datagrams
///
/// This file is part of RakNet Copyright 2003 Jenkins Software LLC
///
/// Usage of RakNet is subject to the appropriate license agreement.
/// Creative Commons Licensees are subject to the
/// license found at
/// http://creativecommons.org/licenses/by-nc/2.5/
/// Single application licensees are subject to the license found at
/// http://www.jenkinssoftware.com/SingleApplicationLicense.html
/// Custom license users are subject to the terms therein.
#include "NativeFeatureIncludes.h"
#if _RAKNET_SUPPORT_UDPProxyCoordinator==1 && _RAKNET_SUPPORT_UDPForwarder==1
#ifndef __UDP_PROXY_COORDINATOR_H
#define __UDP_PROXY_COORDINATOR_H
#include "Export.h"
#include "RakNetTypes.h"
#include "PluginInterface2.h"
#include "RakString.h"
#include "BitStream.h"
#include "DS_Queue.h"
#include "DS_OrderedList.h"
namespace RakNet
{
/// When NAT Punchthrough fails, it is possible to use a non-NAT system to forward messages from us to the recipient, and vice-versa
/// The class to forward messages is UDPForwarder, and it is triggered over the network via the UDPProxyServer plugin.
/// The UDPProxyClient connects to UDPProxyCoordinator to get a list of servers running UDPProxyServer, and the coordinator will relay our forwarding request
/// \brief Middleman between UDPProxyServer and UDPProxyClient, maintaining a list of UDPProxyServer, and managing state for clients to find an available forwarding server.
/// \ingroup NAT_PUNCHTHROUGH_GROUP
class RAK_DLL_EXPORT UDPProxyCoordinator : public PluginInterface2
{
public:
// GetInstance() and DestroyInstance(instance*)
STATIC_FACTORY_DECLARATIONS(UDPProxyCoordinator)
UDPProxyCoordinator();
virtual ~UDPProxyCoordinator();
/// For UDPProxyServers logging in remotely, they must pass a password to UDPProxyServer::LoginToCoordinator(). It must match the password set here.
/// If no password is set, they cannot login remotely.
/// By default, no password is set
void SetRemoteLoginPassword(RakNet::RakString password);
/// \internal
virtual void Update(void);
virtual PluginReceiveResult OnReceive(Packet *packet);
virtual void OnClosedConnection(const SystemAddress &systemAddress, RakNetGUID rakNetGUID, PI2_LostConnectionReason lostConnectionReason );
struct SenderAndTargetAddress
{
SystemAddress senderClientAddress;
RakNetGUID senderClientGuid;
SystemAddress targetClientAddress;
RakNetGUID targetClientGuid;
};
struct ServerWithPing
{
unsigned short ping;
SystemAddress serverAddress;
};
struct ForwardingRequest
{
RakNet::TimeMS timeoutOnNoDataMS;
RakNet::TimeMS timeoutAfterSuccess;
SenderAndTargetAddress sata;
SystemAddress requestingAddress; // Which system originally sent the network message to start forwarding
SystemAddress currentlyAttemptedServerAddress;
DataStructures::Queue<SystemAddress> remainingServersToTry;
RakNet::BitStream serverSelectionBitstream;
DataStructures::List<ServerWithPing> sourceServerPings, targetServerPings;
RakNet::TimeMS timeRequestedPings;
// Order based on sourceServerPings and targetServerPings
void OrderRemainingServersToTry(void);
};
protected:
static int ServerWithPingComp( const unsigned short &key, const UDPProxyCoordinator::ServerWithPing &data );
static int ForwardingRequestComp( const SenderAndTargetAddress &key, ForwardingRequest* const &data);
void OnForwardingRequestFromClientToCoordinator(Packet *packet);
void OnLoginRequestFromServerToCoordinator(Packet *packet);
void OnForwardingReplyFromServerToCoordinator(Packet *packet);
void OnPingServersReplyFromClientToCoordinator(Packet *packet);
void TryNextServer(SenderAndTargetAddress sata, ForwardingRequest *fw);
void SendAllBusy(SystemAddress senderClientAddress, SystemAddress targetClientAddress, RakNetGUID targetClientGuid, SystemAddress requestingAddress);
void Clear(void);
void SendForwardingRequest(SystemAddress sourceAddress, SystemAddress targetAddress, SystemAddress serverAddress, RakNet::TimeMS timeoutOnNoDataMS);
// Logged in servers
//DataStructures::Multilist<ML_UNORDERED_LIST, SystemAddress> serverList;
DataStructures::List<SystemAddress> serverList;
// Forwarding requests in progress
//DataStructures::Multilist<ML_ORDERED_LIST, ForwardingRequest*, SenderAndTargetAddress> forwardingRequestList;
DataStructures::OrderedList<SenderAndTargetAddress, ForwardingRequest*, ForwardingRequestComp> forwardingRequestList;
RakNet::RakString remoteLoginPassword;
};
} // End namespace
#endif
#endif // _RAKNET_SUPPORT_*