/// \file /// \brief Contains the NAT-type detection code for the server /// /// This file is part of RakNet Copyright 2003 Jenkins Software LLC /// /// Usage of RakNet is subject to the appropriate license agreement. #include "NativeFeatureIncludes.h" #if _RAKNET_SUPPORT_NatTypeDetectionServer==1 #ifndef __NAT_TYPE_DETECTION_SERVER_H #define __NAT_TYPE_DETECTION_SERVER_H #include "RakNetTypes.h" #include "Export.h" #include "PluginInterface2.h" #include "PacketPriority.h" #include "SocketIncludes.h" #include "DS_OrderedList.h" #include "RakString.h" #include "NatTypeDetectionCommon.h" namespace RakNet { /// Forward declarations class RakPeerInterface; struct Packet; /// \brief Server code for NatTypeDetection /// \details /// Sends to a remote system on certain ports and addresses to determine what type of router, if any, that client is behind /// Requires that the server have 4 external IP addresses ///
    ///
  1. Server has 1 instance of RakNet. Server has four external ip addresses S1 to S4. Five ports are used in total P1 to P5. RakNet is bound to S1P1. Sockets are bound to S1P2, S2P3, S3P4, S4P5 ///
  2. Client with one port using RakNet (C1). Another port not using anything (C2). ///
  3. C1 connects to S1P1 for normal communication. ///
  4. S4P5 sends to C2. If arrived, no NAT. Done. (If didn't arrive, S4P5 potentially banned, do not use again). ///
  5. S2P3 sends to C1 (Different address, different port, to previously used port on client). If received, Full-cone nat. Done. (If didn't arrive, S2P3 potentially banned, do not use again). ///
  6. S1P2 sends to C1 (Same address, different port, to previously used port on client). If received, address-restricted cone nat. Done. ///
  7. Server via RakNet connection tells C1 to send to to S3P4. If address of C1 as seen by S3P4 is the same as the address of C1 as seen by S1P1 (RakNet connection), then port-restricted cone nat. Done ///
  8. Else symmetric nat. Done. ///
/// See also http://www.jenkinssoftware.com/raknet/manual/natpunchthrough.html /// \sa NatPunchthroughServer /// \sa NatTypeDetectionClient /// \ingroup NAT_TYPE_DETECTION_GROUP class RAK_DLL_EXPORT NatTypeDetectionServer : public PluginInterface2 { public: // GetInstance() and DestroyInstance(instance*) STATIC_FACTORY_DECLARATIONS(NatTypeDetectionServer) // Constructor NatTypeDetectionServer(); // Destructor virtual ~NatTypeDetectionServer(); /// Start the system, binding to 3 external IPs not already in useS /// \param[in] nonRakNetIP2 First unused external IP /// \param[in] nonRakNetIP3 Second unused external IP /// \param[in] nonRakNetIP4 Third unused external IP void Startup( const char *nonRakNetIP2, const char *nonRakNetIP3, const char *nonRakNetIP4); // Releases the sockets created in Startup(); void Shutdown(void); /// \internal For plugin handling virtual void Update(void); /// \internal For plugin handling virtual PluginReceiveResult OnReceive(Packet *packet); virtual void OnClosedConnection(const SystemAddress &systemAddress, RakNetGUID rakNetGUID, PI2_LostConnectionReason lostConnectionReason ); enum NATDetectionState { STATE_NONE, STATE_TESTING_NONE_1, STATE_TESTING_NONE_2, STATE_TESTING_FULL_CONE_1, STATE_TESTING_FULL_CONE_2, STATE_TESTING_ADDRESS_RESTRICTED_1, STATE_TESTING_ADDRESS_RESTRICTED_2, STATE_TESTING_PORT_RESTRICTED_1, STATE_TESTING_PORT_RESTRICTED_2, STATE_DONE, }; struct NATDetectionAttempt { SystemAddress systemAddress; NATDetectionState detectionState; RakNet::TimeMS nextStateTime; RakNet::TimeMS timeBetweenAttempts; unsigned short c2Port; RakNetGUID guid; }; protected: void OnDetectionRequest(Packet *packet); DataStructures::List natDetectionAttempts; unsigned int GetDetectionAttemptIndex(const SystemAddress &sa); unsigned int GetDetectionAttemptIndex(RakNetGUID guid); // s1p1 is rakpeer itself SOCKET s1p2,s2p3,s3p4,s4p5; unsigned short s1p2Port, s2p3Port, s3p4Port, s4p5Port; char s3p4Address[64]; }; } #endif #endif // _RAKNET_SUPPORT_*