From c60aec78dcb8c6fe03ed6f6e4ad89b088be1d89e Mon Sep 17 00:00:00 2001 From: exuvo Date: Mon, 16 Aug 2021 05:35:28 +0200 Subject: [PATCH 01/11] Update for changes in OpenSSL 1.1.0 --- Source/include/slikenet/crypto/cryptomanager.h | 6 +++--- Source/src/crypto/cryptomanager.cpp | 18 +++++++++--------- Source/src/crypto/fileencrypter.cpp | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Source/include/slikenet/crypto/cryptomanager.h b/Source/include/slikenet/crypto/cryptomanager.h index f9b8dd3a4..4558350d2 100644 --- a/Source/include/slikenet/crypto/cryptomanager.h +++ b/Source/include/slikenet/crypto/cryptomanager.h @@ -20,8 +20,8 @@ namespace SLNet // class members // note: using distinct contexts for encryption/decryption to prevent potential for race conditions // #med - consider moving to SessionEncrypter class - static EVP_CIPHER_CTX m_decryptionContext; - static EVP_CIPHER_CTX m_encryptionContext; + static EVP_CIPHER_CTX* m_decryptionContext; + static EVP_CIPHER_CTX* m_encryptionContext; static unsigned char m_initializationVector[EVP_MAX_IV_LENGTH]; static unsigned char m_sessionKey[EVP_MAX_KEY_LENGTH]; static bool m_Initialized; @@ -45,4 +45,4 @@ namespace SLNet }; } } -} \ No newline at end of file +} diff --git a/Source/src/crypto/cryptomanager.cpp b/Source/src/crypto/cryptomanager.cpp index 2864f7459..47c285e98 100644 --- a/Source/src/crypto/cryptomanager.cpp +++ b/Source/src/crypto/cryptomanager.cpp @@ -69,18 +69,18 @@ namespace SLNet // #high - review usage of the CBC mode here --- not the best nowadays // #med - add engine support to use HW-acceleration - if (EVP_EncryptInit_ex(&m_encryptionContext, EVP_aes_256_cbc(), nullptr, m_sessionKey, m_initializationVector) == 0) { + if (EVP_EncryptInit_ex(m_encryptionContext, EVP_aes_256_cbc(), nullptr, m_sessionKey, m_initializationVector) == 0) { return false; // failed to initialize the encryption context } int bytesWritten1; // note: static_cast<> safe here, since GetRequiredEncrpytionBufferSize()-check ensured dataLength is <= int::max() - if (EVP_EncryptUpdate(&m_encryptionContext, outBuffer, &bytesWritten1, plaintext, static_cast(dataLength)) == 0) { + if (EVP_EncryptUpdate(m_encryptionContext, outBuffer, &bytesWritten1, plaintext, static_cast(dataLength)) == 0) { return false; // encryption failed } RakAssert(static_cast(bytesWritten1) <= inOutBufferSize); int bytesWritten2; - if (EVP_EncryptFinal_ex(&m_encryptionContext, outBuffer + bytesWritten1, &bytesWritten2) == 0) { + if (EVP_EncryptFinal_ex(m_encryptionContext, outBuffer + bytesWritten1, &bytesWritten2) == 0) { return false; // failed final encryption step } RakAssert(static_cast(bytesWritten1) + static_cast(bytesWritten2) <= inOutBufferSize); @@ -112,18 +112,18 @@ namespace SLNet // #high - review usage of the CBC mode here --- not the best nowadays // #med - add engine support to use HW-acceleration - if (EVP_DecryptInit_ex(&m_decryptionContext, EVP_aes_256_cbc(), nullptr, m_sessionKey, m_initializationVector) == 0) { + if (EVP_DecryptInit_ex(m_decryptionContext, EVP_aes_256_cbc(), nullptr, m_sessionKey, m_initializationVector) == 0) { return false; // failed to initialize the decryption context } int bytesWritten1; // static cast safe due to size-check above - if (EVP_DecryptUpdate(&m_decryptionContext, outBuffer, &bytesWritten1, encryptedtext, static_cast(dataLength)) == 0) { + if (EVP_DecryptUpdate(m_decryptionContext, outBuffer, &bytesWritten1, encryptedtext, static_cast(dataLength)) == 0) { return false; // decryption failed } RakAssert(static_cast(bytesWritten1) <= inOutBufferSize); int bytesWritten2; - if (EVP_DecryptFinal_ex(&m_decryptionContext, outBuffer + bytesWritten1, &bytesWritten2) == 0) { + if (EVP_DecryptFinal_ex(m_decryptionContext, outBuffer + bytesWritten1, &bytesWritten2) == 0) { return false; // failed final decryption step } RakAssert(static_cast(bytesWritten1) + static_cast(bytesWritten2) <= inOutBufferSize); @@ -174,11 +174,11 @@ namespace SLNet } // initialization list - EVP_CIPHER_CTX CCryptoManager::m_decryptionContext; - EVP_CIPHER_CTX CCryptoManager::m_encryptionContext; + EVP_CIPHER_CTX* CCryptoManager::m_decryptionContext = EVP_CIPHER_CTX_new(); + EVP_CIPHER_CTX* CCryptoManager::m_encryptionContext = EVP_CIPHER_CTX_new(); unsigned char CCryptoManager::m_sessionKey[EVP_MAX_KEY_LENGTH]; unsigned char CCryptoManager::m_initializationVector[EVP_MAX_IV_LENGTH]; bool CCryptoManager::m_Initialized = false; } } -} \ No newline at end of file +} diff --git a/Source/src/crypto/fileencrypter.cpp b/Source/src/crypto/fileencrypter.cpp index 102177914..788332c0b 100644 --- a/Source/src/crypto/fileencrypter.cpp +++ b/Source/src/crypto/fileencrypter.cpp @@ -107,7 +107,7 @@ namespace SLNet // #med - review the return value here - it's not documented in the manual // note: cleanup() must be called so to not leak resources generated during the EVP_SignalFinal()-call - (void)EVP_MD_CTX_cleanup(rsaSigningContext); + (void)EVP_MD_CTX_reset(rsaSigningContext); EVP_MD_CTX_destroy(rsaSigningContext); return success ? m_sigBuffer : nullptr; @@ -158,7 +158,7 @@ namespace SLNet const int authenticStatus = EVP_DigestVerifyFinal(rsaVerifyContext, const_cast(signature), signatureLength); // #med - review the return value here - it's not documented in the manual // note: cleanup() must be called so to not leak resources generated during the EVP_SignalFinal()-call - (void)EVP_MD_CTX_cleanup(rsaVerifyContext); + (void)EVP_MD_CTX_reset(rsaVerifyContext); EVP_MD_CTX_destroy(rsaVerifyContext); if (authenticStatus == 1) { @@ -309,4 +309,4 @@ namespace SLNet } } } -} \ No newline at end of file +} From cbace626dd436604b6fd715ff0356e95ef831e5a Mon Sep 17 00:00:00 2001 From: exuvo Date: Mon, 16 Aug 2021 05:48:26 +0200 Subject: [PATCH 02/11] Change RAND_pseudo_bytes to RAND_bytes as the former is deprecated --- Source/src/crypto/cryptomanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/src/crypto/cryptomanager.cpp b/Source/src/crypto/cryptomanager.cpp index 47c285e98..0786a89cf 100644 --- a/Source/src/crypto/cryptomanager.cpp +++ b/Source/src/crypto/cryptomanager.cpp @@ -45,7 +45,7 @@ namespace SLNet if (RAND_bytes(m_sessionKey, EVP_MAX_KEY_LENGTH) == 0) { return false; // failed to initialize the random session key } - if (RAND_pseudo_bytes(m_initializationVector, EVP_MAX_IV_LENGTH) == 0) { + if (RAND_bytes(m_initializationVector, EVP_MAX_IV_LENGTH) == 0) { return false; // failed to initialize the initialization vector } From e7b60b00255284e688d6389de1b6261c51980cd6 Mon Sep 17 00:00:00 2001 From: exuvo Date: Thu, 9 Sep 2021 18:51:51 +0200 Subject: [PATCH 03/11] Correct comment --- Source/include/slikenet/types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/include/slikenet/types.h b/Source/include/slikenet/types.h index 7d3279585..ed4e3e209 100644 --- a/Source/include/slikenet/types.h +++ b/Source/include/slikenet/types.h @@ -148,7 +148,7 @@ struct RAK_DLL_EXPORT SocketDescriptor char hostAddress[32]; /// IP version: For IPV4, use AF_INET (default). For IPV6, use AF_INET6. To autoselect, use AF_UNSPEC. - /// IPV6 is the newer internet protocol. Instead of addresses such as natpunch.slikesoft.com, you may have an address such as fe80::7c:31f7:fec4:27de%14. + /// IPV6 is the newer internet protocol. Instead of addresses such as 192.168.0.1, you may have an address such as fe80::7c:31f7:fec4:27de%14. /// Encoding takes 16 bytes instead of 4, so IPV6 is less efficient for bandwidth. /// On the positive side, NAT Punchthrough is not needed and should not be used with IPV6 because there are enough addresses that routers do not need to create address mappings. /// RakPeer::Startup() will fail if this IP version is not supported. @@ -178,6 +178,7 @@ struct RAK_DLL_EXPORT SystemAddress { /// Constructors SystemAddress(); + SystemAddress(const SystemAddress& input) = default; SystemAddress(const char *str); SystemAddress(const char *str, unsigned short port); From b696cae52b637838d0eba39a589b7cb023fcbb5a Mon Sep 17 00:00:00 2001 From: exuvo Date: Mon, 28 Mar 2022 20:05:26 +0200 Subject: [PATCH 04/11] Update cmake version --- CMakeLists.txt | 10 +++------- Lib/CMakeLists.txt | 2 +- Lib/LibStatic/CMakeLists.txt | 17 +++++------------ 3 files changed, 9 insertions(+), 20 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 007291d94..10a2397ac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ # license found in the license.txt file in the root directory of this source tree. # -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.12) # CMake policy settings if( POLICY CMP0037 ) @@ -18,14 +18,10 @@ endif() if( POLICY CMP0042 ) cmake_policy(SET CMP0042 NEW) # CMake 3.0 warning: Use @rpath in a target's install name. endif() +cmake_policy(SET CMP0048 NEW) -project(SLikeNet) +project(SLikeNet VERSION 0.2.0) -# version number -set(SLikeNet_VERSION_MAJOR "0") -set(SLikeNet_VERSION_MINOR "2") -set(SLikeNet_VERSION_PATCH "0") -set(SLikeNet_VERSION ${SLikeNet_VERSION_MAJOR}.${SLikeNet_VERSION_MINOR}.${SLikeNet_VERSION_PATCH}) set(SLikeNet_API_VERSION ${SLikeNet_VERSION_MAJOR}.${SLikeNet_VERSION_MINOR}) # explicitly enable @rpath in the install name for any shared library being built (for cmake >=2.8.12 and <3.0 - it's enabled by default for >= 3.0) diff --git a/Lib/CMakeLists.txt b/Lib/CMakeLists.txt index 903452c44..4d3171387 100644 --- a/Lib/CMakeLists.txt +++ b/Lib/CMakeLists.txt @@ -9,7 +9,7 @@ # license found in the license.txt file in the root directory of this source tree. # -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.12) set(SLIKENET_INTERNAL_INCLUDE_DIRS ${SLikeNet_SOURCE_DIR}/Source/include diff --git a/Lib/LibStatic/CMakeLists.txt b/Lib/LibStatic/CMakeLists.txt index 955a99dec..134f611f8 100644 --- a/Lib/LibStatic/CMakeLists.txt +++ b/Lib/LibStatic/CMakeLists.txt @@ -9,9 +9,11 @@ # license found in the license.txt file in the root directory of this source tree. # -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.12) -project(SLikeNetLibStatic) +cmake_policy(SET CMP0048 NEW) + +project(SLikeNetLibStatic VERSION ${SLikeNet_VERSION}) FILE(GLOB ALL_HEADER_SRCS ${SLikeNet_SOURCE_DIR}/Source/include/slikenet/*.h) FILE(GLOB ALL_COMPATIBILITY_HEADER_SRC ${SLikeNet_SOURCE_DIR}/Source/*.h) @@ -21,19 +23,10 @@ FILE(GLOB CRYPTO_CPP_SRCS ${SLikeNet_SOURCE_DIR}/Source/src/crypto/*.cpp) add_library(SLikeNetLibStatic STATIC ${ALL_CPP_SRCS} ${CRYPTO_CPP_SRCS} ${ALL_HEADER_SRCS}) -#if(NOT (CMAKE_VERSION VERSION_LESS 2.8)) - # target_include_directories is only supported since CMake 2.8 -# target_include_directories(SLikeNetLibStatic PUBLIC -# $ -# $ -# ) -#else() - include_directories(${SLIKENET_INTERNAL_INCLUDE_DIRS}) -#endif() +include_directories(${SLIKENET_INTERNAL_INCLUDE_DIRS}) # set the version number set_target_properties(SLikeNetLibStatic PROPERTIES - VERSION ${SLikeNet_VERSION} SOVERSION ${SLikeNet_API_VERSION} ) From a6aab7f1226222034e8c735c72dfaf783bcfcd3a Mon Sep 17 00:00:00 2001 From: exuvo Date: Sun, 15 May 2022 18:39:09 +0200 Subject: [PATCH 05/11] Update comments --- .../include/slikenet/CCRakNetSlidingWindow.h | 31 +- Source/include/slikenet/CCRakNetUDT.h | 2 +- Source/src/CCRakNetSlidingWindow.cpp | 272 ++++++++---------- Source/src/ReliabilityLayer.cpp | 4 +- 4 files changed, 137 insertions(+), 172 deletions(-) diff --git a/Source/include/slikenet/CCRakNetSlidingWindow.h b/Source/include/slikenet/CCRakNetSlidingWindow.h index 5d73d227a..755161df9 100644 --- a/Source/include/slikenet/CCRakNetSlidingWindow.h +++ b/Source/include/slikenet/CCRakNetSlidingWindow.h @@ -16,27 +16,32 @@ /* http://www.ssfnet.org/Exchange/tcp/tcpTutorialNotes.html -cwnd=max bytes allowed on wire at once +additive increase/multiplicative decrease (AIMD) algorithm + closest to TCP Tahoe with no duplicate ACK handling https://en.wikipedia.org/wiki/TCP_congestion_control +cwnd: congestion window, max bytes allowed on wire at once +ssthresh: slow start threshold Start: -cwnd=mtu -ssthresh=unlimited + cwnd = mtu + ssthresh = unlimited + +If cwnd < ssthresh, then use slow start +else use congestion avoidance Slow start: -On ack cwnd*=2 + On ack cwnd += MTU congestion avoidance: -On ack during new period -cwnd+=mtu*mtu/cwnd + On ack during new period + cwnd += mtu*mtu/cwnd -on loss or duplicate ack during period: -sshtresh=cwnd/2 -cwnd=MTU -This reenters slow start - -If cwnd < ssthresh, then use slow start -else use congestion avoidance +on nak: + sshtresh = cwnd/2 +on timeout: + sshtresh = cwnd/2 + cwnd = MTU + This reenters slow start */ diff --git a/Source/include/slikenet/CCRakNetUDT.h b/Source/include/slikenet/CCRakNetUDT.h index 27cb0bc25..f1854a24b 100644 --- a/Source/include/slikenet/CCRakNetUDT.h +++ b/Source/include/slikenet/CCRakNetUDT.h @@ -46,7 +46,7 @@ typedef double MicrosecondsPerByte; #define CC_RAKNET_UDT_PACKET_HISTORY_LENGTH 64 #define RTT_HISTORY_LENGTH 64 -/// Sizeof an UDP header in byte +/// Sizeof an UDP header in bytes #define UDP_HEADER_SIZE 28 #define CC_DEBUG_PRINTF_1(x) diff --git a/Source/src/CCRakNetSlidingWindow.cpp b/Source/src/CCRakNetSlidingWindow.cpp index 7c7622e2e..410dad22f 100644 --- a/Source/src/CCRakNetSlidingWindow.cpp +++ b/Source/src/CCRakNetSlidingWindow.cpp @@ -37,39 +37,33 @@ using namespace SLNet; // ****************************************************** PUBLIC METHODS ****************************************************** CCRakNetSlidingWindow::CCRakNetSlidingWindow() -{ -} +{} // ---------------------------------------------------------------------------------------------------------------------------- CCRakNetSlidingWindow::~CCRakNetSlidingWindow() -{ - -} +{} // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::Init(CCTimeType curTime, uint32_t maxDatagramPayload) -{ +void CCRakNetSlidingWindow::Init(CCTimeType curTime, uint32_t maxDatagramPayload) { (void) curTime; - lastRtt=estimatedRTT=deviationRtt=UNSET_TIME_US; + lastRtt = estimatedRTT = deviationRtt = UNSET_TIME_US; RakAssert(maxDatagramPayload <= MAXIMUM_MTU_SIZE); - MAXIMUM_MTU_INCLUDING_UDP_HEADER=maxDatagramPayload; - cwnd=maxDatagramPayload; - ssThresh=0.0; - oldestUnsentAck=0; - nextDatagramSequenceNumber=0; - nextCongestionControlBlock=0; - backoffThisBlock=speedUpThisBlock=false; - expectedNextSequenceNumber=0; - _isContinuousSend=false; + MAXIMUM_MTU_INCLUDING_UDP_HEADER = maxDatagramPayload; + cwnd = maxDatagramPayload; + ssThresh = 0.0; + oldestUnsentAck = 0; + nextDatagramSequenceNumber = 0; + nextCongestionControlBlock = 0; + backoffThisBlock = speedUpThisBlock = false; + expectedNextSequenceNumber = 0; + _isContinuousSend = false; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::Update(CCTimeType curTime, bool hasDataToSendOrResend) -{ +void CCRakNetSlidingWindow::Update(CCTimeType curTime, bool hasDataToSendOrResend) { (void) curTime; (void) hasDataToSendOrResend; } // ---------------------------------------------------------------------------------------------------------------------------- -int CCRakNetSlidingWindow::GetRetransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend) -{ +int CCRakNetSlidingWindow::GetRetransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend) { (void) curTime; (void) isContinuousSend; (void) timeSinceLastTick; @@ -77,8 +71,7 @@ int CCRakNetSlidingWindow::GetRetransmissionBandwidth(CCTimeType curTime, CCTime return unacknowledgedBytes; } // ---------------------------------------------------------------------------------------------------------------------------- -int CCRakNetSlidingWindow::GetTransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend) -{ +int CCRakNetSlidingWindow::GetTransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend) { (void) curTime; (void) timeSinceLastTick; @@ -90,14 +83,12 @@ int CCRakNetSlidingWindow::GetTransmissionBandwidth(CCTimeType curTime, CCTimeTy return 0; } // ---------------------------------------------------------------------------------------------------------------------------- -bool CCRakNetSlidingWindow::ShouldSendACKs(CCTimeType curTime, CCTimeType estimatedTimeToNextTick) -{ +bool CCRakNetSlidingWindow::ShouldSendACKs(CCTimeType curTime, CCTimeType estimatedTimeToNextTick) { CCTimeType rto = GetSenderRTOForACK(); (void) estimatedTimeToNextTick; // iphone crashes on comparison between double and int64 http://www.jenkinssoftware.com/forum/index.php?topic=2717.0 - if (rto==(CCTimeType) UNSET_TIME_US) - { + if (rto == (CCTimeType) UNSET_TIME_US) { // Unknown how long until the remote system will retransmit, so better send right away return true; } @@ -105,169 +96,149 @@ bool CCRakNetSlidingWindow::ShouldSendACKs(CCTimeType curTime, CCTimeType estima return curTime >= oldestUnsentAck + SYN; } // ---------------------------------------------------------------------------------------------------------------------------- -DatagramSequenceNumberType CCRakNetSlidingWindow::GetNextDatagramSequenceNumber(void) -{ +DatagramSequenceNumberType CCRakNetSlidingWindow::GetNextDatagramSequenceNumber(void) { return nextDatagramSequenceNumber; } // ---------------------------------------------------------------------------------------------------------------------------- -DatagramSequenceNumberType CCRakNetSlidingWindow::GetAndIncrementNextDatagramSequenceNumber(void) -{ +DatagramSequenceNumberType CCRakNetSlidingWindow::GetAndIncrementNextDatagramSequenceNumber(void) { DatagramSequenceNumberType dsnt=nextDatagramSequenceNumber; nextDatagramSequenceNumber++; return dsnt; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::OnSendBytes(CCTimeType curTime, uint32_t numBytes) -{ +void CCRakNetSlidingWindow::OnSendBytes(CCTimeType curTime, uint32_t numBytes) { (void) curTime; (void) numBytes; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::OnGotPacketPair(DatagramSequenceNumberType datagramSequenceNumber, uint32_t sizeInBytes, CCTimeType curTime) -{ +void CCRakNetSlidingWindow::OnGotPacketPair(DatagramSequenceNumberType datagramSequenceNumber, uint32_t sizeInBytes, CCTimeType curTime) { (void) curTime; (void) sizeInBytes; (void) datagramSequenceNumber; } // ---------------------------------------------------------------------------------------------------------------------------- -bool CCRakNetSlidingWindow::OnGotPacket(DatagramSequenceNumberType datagramSequenceNumber, bool isContinuousSend, CCTimeType curTime, uint32_t sizeInBytes, uint32_t *skippedMessageCount) -{ +bool CCRakNetSlidingWindow::OnGotPacket(DatagramSequenceNumberType datagramSequenceNumber, bool isContinuousSend, CCTimeType curTime, uint32_t sizeInBytes, uint32_t *skippedMessageCount) { (void) curTime; (void) sizeInBytes; (void) isContinuousSend; - if (oldestUnsentAck==0) + if (oldestUnsentAck == 0) { oldestUnsentAck=curTime; - - if (datagramSequenceNumber==expectedNextSequenceNumber) - { - *skippedMessageCount=0; - expectedNextSequenceNumber=datagramSequenceNumber+(DatagramSequenceNumberType)1; } - else if (GreaterThan(datagramSequenceNumber, expectedNextSequenceNumber)) - { - *skippedMessageCount=datagramSequenceNumber-expectedNextSequenceNumber; + + if (datagramSequenceNumber == expectedNextSequenceNumber) { + *skippedMessageCount = 0; + expectedNextSequenceNumber = datagramSequenceNumber + (DatagramSequenceNumberType) 1; + + } else if (GreaterThan(datagramSequenceNumber, expectedNextSequenceNumber)) { + *skippedMessageCount = datagramSequenceNumber - expectedNextSequenceNumber; // Sanity check, just use timeout resend if this was really valid - if (*skippedMessageCount>1000) - { + if (*skippedMessageCount > 1000) { // During testing, the nat punchthrough server got 51200 on the first packet. I have no idea where this comes from, but has happened twice - if (*skippedMessageCount>(uint32_t)50000) + if (*skippedMessageCount > (uint32_t) 50000) { return false; - *skippedMessageCount=1000; + } + *skippedMessageCount = 1000; } - expectedNextSequenceNumber=datagramSequenceNumber+(DatagramSequenceNumberType)1; - } - else - { + expectedNextSequenceNumber = datagramSequenceNumber + (DatagramSequenceNumberType) 1; + + } else { *skippedMessageCount=0; } return true; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::OnResend(CCTimeType curTime, SLNet::TimeUS nextActionTime) -{ +void CCRakNetSlidingWindow::OnResend(CCTimeType curTime, SLNet::TimeUS nextActionTime) { (void) curTime; (void) nextActionTime; - if (_isContinuousSend && backoffThisBlock==false && cwnd>MAXIMUM_MTU_INCLUDING_UDP_HEADER*2) - { + if (_isContinuousSend && backoffThisBlock == false && cwnd > MAXIMUM_MTU_INCLUDING_UDP_HEADER * 2) { // Spec says 1/2 cwnd, but it never recovers because cwnd increases too slowly //ssThresh=cwnd-8.0 * (MAXIMUM_MTU_INCLUDING_UDP_HEADER*MAXIMUM_MTU_INCLUDING_UDP_HEADER/cwnd); - ssThresh=cwnd/2; - if (ssThresh ssThresh && ssThresh!=0) - cwnd = ssThresh + MAXIMUM_MTU_INCLUDING_UDP_HEADER*MAXIMUM_MTU_INCLUDING_UDP_HEADER/cwnd; - + + if (IsInSlowStart()) { + cwnd += MAXIMUM_MTU_INCLUDING_UDP_HEADER; + if (cwnd > ssThresh && ssThresh != 0) { + cwnd = ssThresh + MAXIMUM_MTU_INCLUDING_UDP_HEADER * MAXIMUM_MTU_INCLUDING_UDP_HEADER / cwnd; + } + // CC PRINTF - // printf("++ %.0f Slow start increase.\n", cwnd); - - } - else if (isNewCongestionControlPeriod) - { - cwnd+=MAXIMUM_MTU_INCLUDING_UDP_HEADER*MAXIMUM_MTU_INCLUDING_UDP_HEADER/cwnd; - + // printf("++ %.0f Slow start increase.\n", cwnd); + + } else if (isNewCongestionControlPeriod) { + cwnd += MAXIMUM_MTU_INCLUDING_UDP_HEADER * MAXIMUM_MTU_INCLUDING_UDP_HEADER / cwnd; + // CC PRINTF // printf("+ %.0f Congestion avoidance increase.\n", cwnd); } } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::OnDuplicateAck( CCTimeType curTime, DatagramSequenceNumberType sequenceNumber ) -{ +void CCRakNetSlidingWindow::OnDuplicateAck( CCTimeType curTime, DatagramSequenceNumberType sequenceNumber ) { (void) curTime; (void) sequenceNumber; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::OnSendAckGetBAndAS(CCTimeType curTime, bool *hasBAndAS, BytesPerMicrosecond *_B, BytesPerMicrosecond *_AS) -{ +void CCRakNetSlidingWindow::OnSendAckGetBAndAS(CCTimeType curTime, bool *hasBAndAS, BytesPerMicrosecond *_B, BytesPerMicrosecond *_AS) { (void) curTime; (void) _B; (void) _AS; @@ -275,103 +246,92 @@ void CCRakNetSlidingWindow::OnSendAckGetBAndAS(CCTimeType curTime, bool *hasBAnd *hasBAndAS=false; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::OnSendAck(CCTimeType curTime, uint32_t numBytes) -{ +void CCRakNetSlidingWindow::OnSendAck(CCTimeType curTime, uint32_t numBytes) { (void) curTime; (void) numBytes; oldestUnsentAck=0; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::OnSendNACK(CCTimeType curTime, uint32_t numBytes) -{ +void CCRakNetSlidingWindow::OnSendNACK(CCTimeType curTime, uint32_t numBytes) { (void) curTime; (void) numBytes; } // ---------------------------------------------------------------------------------------------------------------------------- -CCTimeType CCRakNetSlidingWindow::GetRTOForRetransmission(unsigned char timesSent) const -{ +CCTimeType CCRakNetSlidingWindow::GetRTOForRetransmission(unsigned char timesSent) const { (void) timesSent; #if CC_TIME_TYPE_BYTES==4 - const CCTimeType maxThreshold=2000; - //const CCTimeType minThreshold=100; - const CCTimeType additionalVariance=30; + const CCTimeType maxThreshold = 2000; + //const CCTimeType minThreshold = 100; + const CCTimeType additionalVariance = 30; #else - const CCTimeType maxThreshold=2000000; - //const CCTimeType minThreshold=100000; - const CCTimeType additionalVariance=30000; + const CCTimeType maxThreshold = 2000000; + //const CCTimeType minThreshold = 100000; + const CCTimeType additionalVariance = 30000; #endif - - if (estimatedRTT==UNSET_TIME_US) + if (estimatedRTT==UNSET_TIME_US) { return maxThreshold; + } //double u=1.0f; - double u=2.0f; - double q=4.0f; + double u = 2.0f; + double q = 4.0f; CCTimeType threshhold = (CCTimeType) (u * estimatedRTT + q * deviationRtt) + additionalVariance; - if (threshhold > maxThreshold) + if (threshhold > maxThreshold) { return maxThreshold; + } return threshhold; } // ---------------------------------------------------------------------------------------------------------------------------- -void CCRakNetSlidingWindow::SetMTU(uint32_t bytes) -{ +void CCRakNetSlidingWindow::SetMTU(uint32_t bytes) { RakAssert(bytes < MAXIMUM_MTU_SIZE); - MAXIMUM_MTU_INCLUDING_UDP_HEADER=bytes; + MAXIMUM_MTU_INCLUDING_UDP_HEADER = bytes; } // ---------------------------------------------------------------------------------------------------------------------------- -uint32_t CCRakNetSlidingWindow::GetMTU(void) const -{ +uint32_t CCRakNetSlidingWindow::GetMTU(void) const { return MAXIMUM_MTU_INCLUDING_UDP_HEADER; } // ---------------------------------------------------------------------------------------------------------------------------- -BytesPerMicrosecond CCRakNetSlidingWindow::GetLocalReceiveRate(CCTimeType currentTime) const -{ +BytesPerMicrosecond CCRakNetSlidingWindow::GetLocalReceiveRate(CCTimeType currentTime) const { (void) currentTime; - + return 0; // TODO } // ---------------------------------------------------------------------------------------------------------------------------- -double CCRakNetSlidingWindow::GetRTT(void) const -{ - if (lastRtt==UNSET_TIME_US) - return 0.0; +double CCRakNetSlidingWindow::GetRTT(void) const { + if (lastRtt == UNSET_TIME_US) return 0.0; return lastRtt; } // ---------------------------------------------------------------------------------------------------------------------------- -bool CCRakNetSlidingWindow::GreaterThan(DatagramSequenceNumberType a, DatagramSequenceNumberType b) -{ +bool CCRakNetSlidingWindow::GreaterThan(DatagramSequenceNumberType a, DatagramSequenceNumberType b) { // a > b? - const DatagramSequenceNumberType halfSpan =(DatagramSequenceNumberType) (((DatagramSequenceNumberType)(const uint32_t)-1)/(DatagramSequenceNumberType)2); - return b!=a && b-a>halfSpan; + const DatagramSequenceNumberType halfSpan = (DatagramSequenceNumberType) (((DatagramSequenceNumberType) (const uint32_t) -1) / (DatagramSequenceNumberType) 2); + return b != a && b - a > halfSpan; } // ---------------------------------------------------------------------------------------------------------------------------- -bool CCRakNetSlidingWindow::LessThan(DatagramSequenceNumberType a, DatagramSequenceNumberType b) -{ +bool CCRakNetSlidingWindow::LessThan(DatagramSequenceNumberType a, DatagramSequenceNumberType b) { // a < b? - const DatagramSequenceNumberType halfSpan = ((DatagramSequenceNumberType)(const uint32_t)-1)/(DatagramSequenceNumberType)2; - return b!=a && b-anextActionTime != 0) { internalPacket->nextActionTime = timeRead; } - } + } messageNumberNode = messageNumberNode->next; } @@ -1858,7 +1858,7 @@ void ReliabilityLayer::UpdateInternal( RakNetSocket2 *s, SystemAddress &systemAd } - // Due to thread vagarities and the way I store the time to avoid slow calls to SLNet::GetTime + // Due to thread jitter and the way I store the time to avoid slow calls to SLNet::GetTime // time may be less than lastAck #if CC_TIME_TYPE_BYTES==4 if ( statistics.messagesInResendBuffer!=0 && AckTimeout(time) ) From cc0a64ff2e5aab82a8c539c17201df57e0ae8578 Mon Sep 17 00:00:00 2001 From: exuvo Date: Tue, 30 Aug 2022 02:46:05 +0200 Subject: [PATCH 06/11] Remove legacy mode --- DependentExtensions/Lobby2/Lobby2ResultCode.h | 1 - .../Lobby2/Rooms/RoomsErrorCodes.h | 1 - Samples/CrashReporter/CrashReporter.h | 1 - Source/AutopatcherPatchContext.h | 10 ---------- Source/AutopatcherRepositoryInterface.h | 10 ---------- Source/Base64Encoder.h | 10 ---------- Source/BitStream.h | 10 ---------- Source/CCRakNetSlidingWindow.h | 10 ---------- Source/CCRakNetUDT.h | 10 ---------- Source/CheckSum.h | 10 ---------- Source/CloudClient.h | 10 ---------- Source/CloudCommon.h | 10 ---------- Source/CloudServer.h | 10 ---------- Source/CommandParserInterface.h | 10 ---------- Source/ConnectionGraph2.h | 10 ---------- Source/ConsoleServer.h | 10 ---------- Source/DR_SHA1.h | 10 ---------- Source/DS_BPlusTree.h | 10 ---------- Source/DS_BinarySearchTree.h | 10 ---------- Source/DS_BytePool.h | 10 ---------- Source/DS_ByteQueue.h | 10 ---------- Source/DS_Hash.h | 10 ---------- Source/DS_Heap.h | 10 ---------- Source/DS_HuffmanEncodingTree.h | 10 ---------- Source/DS_HuffmanEncodingTreeFactory.h | 10 ---------- Source/DS_HuffmanEncodingTreeNode.h | 10 ---------- Source/DS_LinkedList.h | 10 ---------- Source/DS_List.h | 10 ---------- Source/DS_Map.h | 10 ---------- Source/DS_MemoryPool.h | 10 ---------- Source/DS_Multilist.h | 10 ---------- Source/DS_OrderedChannelHeap.h | 10 ---------- Source/DS_OrderedList.h | 10 ---------- Source/DS_Queue.h | 10 ---------- Source/DS_QueueLinkedList.h | 10 ---------- Source/DS_RangeList.h | 10 ---------- Source/DS_Table.h | 10 ---------- Source/DS_ThreadsafeAllocatingQueue.h | 10 ---------- Source/DS_Tree.h | 10 ---------- Source/DS_WeightedGraph.h | 10 ---------- Source/DataCompressor.h | 10 ---------- Source/DirectoryDeltaTransfer.h | 10 ---------- Source/DynDNS.h | 10 ---------- Source/EmailSender.h | 10 ---------- Source/EmptyHeader.h | 10 ---------- Source/EpochTimeToString.h | 10 ---------- Source/Export.h | 10 ---------- Source/FileList.h | 10 ---------- Source/FileListNodeContext.h | 10 ---------- Source/FileListTransfer.h | 10 ---------- Source/FileListTransferCBInterface.h | 10 ---------- Source/FileOperations.h | 10 ---------- Source/FormatString.h | 10 ---------- Source/FullyConnectedMesh2.h | 10 ---------- Source/GetTime.h | 10 ---------- Source/Getche.h | 10 ---------- Source/Gets.h | 10 ---------- Source/GridSectorizer.h | 10 ---------- Source/HTTPConnection.h | 10 ---------- Source/HTTPConnection2.h | 10 ---------- Source/IncrementalReadInterface.h | 10 ---------- Source/InternalPacket.h | 10 ---------- Source/Itoa.h | 10 ---------- Source/Kbhit.h | 10 ---------- Source/LinuxStrings.h | 10 ---------- Source/LocklessTypes.h | 10 ---------- Source/LogCommandParser.h | 10 ---------- Source/MTUSize.h | 10 ---------- Source/MessageFilter.h | 10 ---------- Source/MessageIdentifiers.h | 10 ---------- Source/NatPunchthroughClient.h | 10 ---------- Source/NatPunchthroughServer.h | 10 ---------- Source/NatTypeDetectionClient.h | 10 ---------- Source/NatTypeDetectionCommon.h | 10 ---------- Source/NatTypeDetectionServer.h | 10 ---------- Source/NativeFeatureIncludes.h | 10 ---------- Source/NativeFeatureIncludesOverrides.h | 10 ---------- Source/NativeTypes.h | 10 ---------- Source/NetworkIDManager.h | 10 ---------- Source/NetworkIDObject.h | 10 ---------- Source/PS3Includes.h | 10 ---------- Source/PS4Includes.h | 10 ---------- Source/PacketConsoleLogger.h | 10 ---------- Source/PacketFileLogger.h | 10 ---------- Source/PacketLogger.h | 10 ---------- Source/PacketOutputWindowLogger.h | 10 ---------- Source/PacketPool.h | 10 ---------- Source/PacketPriority.h | 10 ---------- Source/PacketizedTCP.h | 10 ---------- Source/PluginInterface2.h | 10 ---------- Source/RPC4Plugin.h | 10 ---------- Source/Rackspace.h | 10 ---------- Source/RakAlloca.h | 10 ---------- Source/RakAssert.h | 10 ---------- Source/RakMemoryOverride.h | 10 ---------- Source/RakNetCommandParser.h | 10 ---------- Source/RakNetDefines.h | 10 ---------- Source/RakNetDefinesOverrides.h | 10 ---------- Source/RakNetSmartPtr.h | 10 ---------- Source/RakNetSocket.h | 10 ---------- Source/RakNetSocket2.h | 10 ---------- Source/RakNetStatistics.h | 10 ---------- Source/RakNetTime.h | 10 ---------- Source/RakNetTransport2.h | 10 ---------- Source/RakNetTypes.h | 10 ---------- Source/RakNetVersion.h | 10 ---------- Source/RakPeer.h | 10 ---------- Source/RakPeerInterface.h | 10 ---------- Source/RakSleep.h | 10 ---------- Source/RakString.h | 10 ---------- Source/RakThread.h | 10 ---------- Source/RakWString.h | 10 ---------- Source/Rand.h | 10 ---------- Source/RandSync.h | 10 ---------- Source/ReadyEvent.h | 10 ---------- Source/RefCountedObj.h | 10 ---------- Source/RelayPlugin.h | 10 ---------- Source/ReliabilityLayer.h | 10 ---------- Source/ReplicaEnums.h | 10 ---------- Source/ReplicaManager3.h | 10 ---------- Source/Router2.h | 10 ---------- Source/SecureHandshake.h | 10 ---------- Source/SendToThread.h | 10 ---------- Source/SignaledEvent.h | 10 ---------- Source/SimpleMutex.h | 10 ---------- Source/SimpleTCPServer.h | 10 ---------- Source/SingleProducerConsumer.h | 10 ---------- Source/SocketDefines.h | 10 ---------- Source/SocketIncludes.h | 10 ---------- Source/SocketLayer.h | 10 ---------- Source/StatisticsHistory.h | 10 ---------- Source/StringCompressor.h | 10 ---------- Source/StringTable.h | 10 ---------- Source/SuperFastHash.h | 10 ---------- Source/TCPInterface.h | 10 ---------- Source/TableSerializer.h | 10 ---------- Source/TeamBalancer.h | 10 ---------- Source/TeamManager.h | 10 ---------- Source/TelnetTransport.h | 10 ---------- Source/ThreadPool.h | 10 ---------- Source/ThreadsafePacketLogger.h | 10 ---------- Source/TransportInterface.h | 10 ---------- Source/TwoWayAuthentication.h | 10 ---------- Source/UDPForwarder.h | 10 ---------- Source/UDPProxyClient.h | 10 ---------- Source/UDPProxyCommon.h | 10 ---------- Source/UDPProxyCoordinator.h | 10 ---------- Source/UDPProxyServer.h | 10 ---------- Source/VariableDeltaSerializer.h | 10 ---------- Source/VariableListDeltaTracker.h | 10 ---------- Source/VariadicSQLParser.h | 10 ---------- Source/VitaIncludes.h | 10 ---------- Source/WSAStartupSingleton.h | 10 ---------- Source/WindowsIncludes.h | 10 ---------- Source/XBox360Includes.h | 10 ---------- Source/_FindFirst.h | 10 ---------- Source/gettimeofday.h | 10 ---------- Source/include/slikenet/MessageIdentifiers.h | 2 +- Source/include/slikenet/defineoverrides.h | 7 +++++++ Source/include/slikenet/defines.h | 17 +---------------- Source/include/slikenet/types.h | 2 +- Source/slikenet/AutopatcherPatchContext.h | 11 ----------- .../slikenet/AutopatcherRepositoryInterface.h | 11 ----------- Source/slikenet/Base64Encoder.h | 11 ----------- Source/slikenet/BitStream.h | 11 ----------- Source/slikenet/CCRakNetSlidingWindow.h | 11 ----------- Source/slikenet/CCRakNetUDT.h | 11 ----------- Source/slikenet/CheckSum.h | 11 ----------- Source/slikenet/CloudClient.h | 11 ----------- Source/slikenet/CloudCommon.h | 11 ----------- Source/slikenet/CloudServer.h | 11 ----------- Source/slikenet/CommandParserInterface.h | 11 ----------- Source/slikenet/ConnectionGraph2.h | 11 ----------- Source/slikenet/ConsoleServer.h | 11 ----------- Source/slikenet/DR_SHA1.h | 11 ----------- Source/slikenet/DS_BPlusTree.h | 11 ----------- Source/slikenet/DS_BinarySearchTree.h | 11 ----------- Source/slikenet/DS_BytePool.h | 11 ----------- Source/slikenet/DS_ByteQueue.h | 11 ----------- Source/slikenet/DS_Hash.h | 11 ----------- Source/slikenet/DS_Heap.h | 11 ----------- Source/slikenet/DS_HuffmanEncodingTree.h | 11 ----------- Source/slikenet/DS_HuffmanEncodingTreeFactory.h | 11 ----------- Source/slikenet/DS_HuffmanEncodingTreeNode.h | 11 ----------- Source/slikenet/DS_LinkedList.h | 11 ----------- Source/slikenet/DS_List.h | 11 ----------- Source/slikenet/DS_Map.h | 11 ----------- Source/slikenet/DS_MemoryPool.h | 11 ----------- Source/slikenet/DS_Multilist.h | 11 ----------- Source/slikenet/DS_OrderedChannelHeap.h | 11 ----------- Source/slikenet/DS_OrderedList.h | 11 ----------- Source/slikenet/DS_Queue.h | 11 ----------- Source/slikenet/DS_QueueLinkedList.h | 11 ----------- Source/slikenet/DS_RangeList.h | 11 ----------- Source/slikenet/DS_Table.h | 11 ----------- Source/slikenet/DS_ThreadsafeAllocatingQueue.h | 11 ----------- Source/slikenet/DS_Tree.h | 11 ----------- Source/slikenet/DS_WeightedGraph.h | 11 ----------- Source/slikenet/DataCompressor.h | 11 ----------- Source/slikenet/DirectoryDeltaTransfer.h | 11 ----------- Source/slikenet/DynDNS.h | 11 ----------- Source/slikenet/EmailSender.h | 11 ----------- Source/slikenet/EmptyHeader.h | 11 ----------- Source/slikenet/EpochTimeToString.h | 11 ----------- Source/slikenet/Export.h | 11 ----------- Source/slikenet/FileList.h | 11 ----------- Source/slikenet/FileListNodeContext.h | 11 ----------- Source/slikenet/FileListTransfer.h | 11 ----------- Source/slikenet/FileListTransferCBInterface.h | 11 ----------- Source/slikenet/FileOperations.h | 11 ----------- Source/slikenet/FormatString.h | 11 ----------- Source/slikenet/FullyConnectedMesh2.h | 11 ----------- Source/slikenet/GetTime.h | 11 ----------- Source/slikenet/Getche.h | 11 ----------- Source/slikenet/Gets.h | 11 ----------- Source/slikenet/GridSectorizer.h | 11 ----------- Source/slikenet/HTTPConnection.h | 11 ----------- Source/slikenet/HTTPConnection2.h | 11 ----------- Source/slikenet/IncrementalReadInterface.h | 11 ----------- Source/slikenet/InternalPacket.h | 11 ----------- Source/slikenet/Itoa.h | 11 ----------- Source/slikenet/Kbhit.h | 11 ----------- Source/slikenet/LinuxStrings.h | 11 ----------- Source/slikenet/LocklessTypes.h | 11 ----------- Source/slikenet/LogCommandParser.h | 11 ----------- Source/slikenet/MTUSize.h | 11 ----------- Source/slikenet/MessageFilter.h | 11 ----------- Source/slikenet/MessageIdentifiers.h | 11 ----------- Source/slikenet/NatPunchthroughClient.h | 11 ----------- Source/slikenet/NatPunchthroughServer.h | 11 ----------- Source/slikenet/NatTypeDetectionClient.h | 11 ----------- Source/slikenet/NatTypeDetectionCommon.h | 11 ----------- Source/slikenet/NatTypeDetectionServer.h | 11 ----------- Source/slikenet/NativeFeatureIncludes.h | 11 ----------- .../slikenet/NativeFeatureIncludesOverrides.h | 11 ----------- Source/slikenet/NativeTypes.h | 11 ----------- Source/slikenet/NetworkIDManager.h | 11 ----------- Source/slikenet/NetworkIDObject.h | 11 ----------- Source/slikenet/PS3Includes.h | 11 ----------- Source/slikenet/PS4Includes.h | 11 ----------- Source/slikenet/PacketConsoleLogger.h | 11 ----------- Source/slikenet/PacketFileLogger.h | 11 ----------- Source/slikenet/PacketLogger.h | 11 ----------- Source/slikenet/PacketOutputWindowLogger.h | 11 ----------- Source/slikenet/PacketPool.h | 11 ----------- Source/slikenet/PacketPriority.h | 11 ----------- Source/slikenet/PacketizedTCP.h | 11 ----------- Source/slikenet/PluginInterface2.h | 11 ----------- Source/slikenet/RPC4Plugin.h | 11 ----------- Source/slikenet/Rackspace.h | 11 ----------- Source/slikenet/Rand.h | 11 ----------- Source/slikenet/RandSync.h | 11 ----------- Source/slikenet/ReadyEvent.h | 11 ----------- Source/slikenet/RefCountedObj.h | 11 ----------- Source/slikenet/RelayPlugin.h | 11 ----------- Source/slikenet/ReliabilityLayer.h | 11 ----------- Source/slikenet/ReplicaEnums.h | 11 ----------- Source/slikenet/ReplicaManager3.h | 11 ----------- Source/slikenet/Router2.h | 11 ----------- Source/slikenet/SecureHandshake.h | 11 ----------- Source/slikenet/SendToThread.h | 11 ----------- Source/slikenet/SignaledEvent.h | 11 ----------- Source/slikenet/SimpleMutex.h | 11 ----------- Source/slikenet/SimpleTCPServer.h | 11 ----------- Source/slikenet/SingleProducerConsumer.h | 11 ----------- Source/slikenet/SocketDefines.h | 11 ----------- Source/slikenet/SocketIncludes.h | 11 ----------- Source/slikenet/SocketLayer.h | 11 ----------- Source/slikenet/StatisticsHistory.h | 11 ----------- Source/slikenet/StringCompressor.h | 11 ----------- Source/slikenet/StringTable.h | 11 ----------- Source/slikenet/SuperFastHash.h | 11 ----------- Source/slikenet/TCPInterface.h | 11 ----------- Source/slikenet/TableSerializer.h | 11 ----------- Source/slikenet/TeamBalancer.h | 11 ----------- Source/slikenet/TeamManager.h | 11 ----------- Source/slikenet/TelnetTransport.h | 11 ----------- Source/slikenet/ThreadPool.h | 11 ----------- Source/slikenet/ThreadsafePacketLogger.h | 11 ----------- Source/slikenet/TransportInterface.h | 11 ----------- Source/slikenet/TwoWayAuthentication.h | 11 ----------- Source/slikenet/UDPForwarder.h | 11 ----------- Source/slikenet/UDPProxyClient.h | 11 ----------- Source/slikenet/UDPProxyCommon.h | 11 ----------- Source/slikenet/UDPProxyCoordinator.h | 11 ----------- Source/slikenet/UDPProxyServer.h | 11 ----------- Source/slikenet/VariableDeltaSerializer.h | 11 ----------- Source/slikenet/VariableListDeltaTracker.h | 11 ----------- Source/slikenet/VariadicSQLParser.h | 11 ----------- Source/slikenet/VitaIncludes.h | 11 ----------- Source/slikenet/WSAStartupSingleton.h | 11 ----------- Source/slikenet/WindowsIncludes.h | 11 ----------- Source/slikenet/XBox360Includes.h | 11 ----------- Source/slikenet/_FindFirst.h | 11 ----------- Source/slikenet/alloca.h | 11 ----------- Source/slikenet/assert.h | 11 ----------- Source/slikenet/commandparser.h | 11 ----------- Source/slikenet/defineoverrides.h | 11 ----------- Source/slikenet/defines.h | 11 ----------- Source/slikenet/gettimeofday.h | 11 ----------- Source/slikenet/linux_adapter.h | 11 ----------- Source/slikenet/memoryoverride.h | 11 ----------- Source/slikenet/osx_adapter.h | 11 ----------- Source/slikenet/peer.h | 11 ----------- Source/slikenet/peerinterface.h | 11 ----------- Source/slikenet/sleep.h | 11 ----------- Source/slikenet/smartptr.h | 11 ----------- Source/slikenet/socket.h | 11 ----------- Source/slikenet/socket2.h | 11 ----------- Source/slikenet/statistics.h | 11 ----------- Source/slikenet/string.h | 11 ----------- Source/slikenet/thread.h | 11 ----------- Source/slikenet/time.h | 11 ----------- Source/slikenet/transport2.h | 11 ----------- Source/slikenet/types.h | 11 ----------- Source/slikenet/version.h | 11 ----------- Source/slikenet/wstring.h | 11 ----------- Source/src/RakNetTypes.cpp | 4 ++-- Source/src/RakPeer.cpp | 7 ++++++- 319 files changed, 18 insertions(+), 3280 deletions(-) delete mode 100644 Source/AutopatcherPatchContext.h delete mode 100644 Source/AutopatcherRepositoryInterface.h delete mode 100644 Source/Base64Encoder.h delete mode 100644 Source/BitStream.h delete mode 100644 Source/CCRakNetSlidingWindow.h delete mode 100644 Source/CCRakNetUDT.h delete mode 100644 Source/CheckSum.h delete mode 100644 Source/CloudClient.h delete mode 100644 Source/CloudCommon.h delete mode 100644 Source/CloudServer.h delete mode 100644 Source/CommandParserInterface.h delete mode 100644 Source/ConnectionGraph2.h delete mode 100644 Source/ConsoleServer.h delete mode 100644 Source/DR_SHA1.h delete mode 100644 Source/DS_BPlusTree.h delete mode 100644 Source/DS_BinarySearchTree.h delete mode 100644 Source/DS_BytePool.h delete mode 100644 Source/DS_ByteQueue.h delete mode 100644 Source/DS_Hash.h delete mode 100644 Source/DS_Heap.h delete mode 100644 Source/DS_HuffmanEncodingTree.h delete mode 100644 Source/DS_HuffmanEncodingTreeFactory.h delete mode 100644 Source/DS_HuffmanEncodingTreeNode.h delete mode 100644 Source/DS_LinkedList.h delete mode 100644 Source/DS_List.h delete mode 100644 Source/DS_Map.h delete mode 100644 Source/DS_MemoryPool.h delete mode 100644 Source/DS_Multilist.h delete mode 100644 Source/DS_OrderedChannelHeap.h delete mode 100644 Source/DS_OrderedList.h delete mode 100644 Source/DS_Queue.h delete mode 100644 Source/DS_QueueLinkedList.h delete mode 100644 Source/DS_RangeList.h delete mode 100644 Source/DS_Table.h delete mode 100644 Source/DS_ThreadsafeAllocatingQueue.h delete mode 100644 Source/DS_Tree.h delete mode 100644 Source/DS_WeightedGraph.h delete mode 100644 Source/DataCompressor.h delete mode 100644 Source/DirectoryDeltaTransfer.h delete mode 100644 Source/DynDNS.h delete mode 100644 Source/EmailSender.h delete mode 100644 Source/EmptyHeader.h delete mode 100644 Source/EpochTimeToString.h delete mode 100644 Source/Export.h delete mode 100644 Source/FileList.h delete mode 100644 Source/FileListNodeContext.h delete mode 100644 Source/FileListTransfer.h delete mode 100644 Source/FileListTransferCBInterface.h delete mode 100644 Source/FileOperations.h delete mode 100644 Source/FormatString.h delete mode 100644 Source/FullyConnectedMesh2.h delete mode 100644 Source/GetTime.h delete mode 100644 Source/Getche.h delete mode 100644 Source/Gets.h delete mode 100644 Source/GridSectorizer.h delete mode 100644 Source/HTTPConnection.h delete mode 100644 Source/HTTPConnection2.h delete mode 100644 Source/IncrementalReadInterface.h delete mode 100644 Source/InternalPacket.h delete mode 100644 Source/Itoa.h delete mode 100644 Source/Kbhit.h delete mode 100644 Source/LinuxStrings.h delete mode 100644 Source/LocklessTypes.h delete mode 100644 Source/LogCommandParser.h delete mode 100644 Source/MTUSize.h delete mode 100644 Source/MessageFilter.h delete mode 100644 Source/MessageIdentifiers.h delete mode 100644 Source/NatPunchthroughClient.h delete mode 100644 Source/NatPunchthroughServer.h delete mode 100644 Source/NatTypeDetectionClient.h delete mode 100644 Source/NatTypeDetectionCommon.h delete mode 100644 Source/NatTypeDetectionServer.h delete mode 100644 Source/NativeFeatureIncludes.h delete mode 100644 Source/NativeFeatureIncludesOverrides.h delete mode 100644 Source/NativeTypes.h delete mode 100644 Source/NetworkIDManager.h delete mode 100644 Source/NetworkIDObject.h delete mode 100644 Source/PS3Includes.h delete mode 100644 Source/PS4Includes.h delete mode 100644 Source/PacketConsoleLogger.h delete mode 100644 Source/PacketFileLogger.h delete mode 100644 Source/PacketLogger.h delete mode 100644 Source/PacketOutputWindowLogger.h delete mode 100644 Source/PacketPool.h delete mode 100644 Source/PacketPriority.h delete mode 100644 Source/PacketizedTCP.h delete mode 100644 Source/PluginInterface2.h delete mode 100644 Source/RPC4Plugin.h delete mode 100644 Source/Rackspace.h delete mode 100644 Source/RakAlloca.h delete mode 100644 Source/RakAssert.h delete mode 100644 Source/RakMemoryOverride.h delete mode 100644 Source/RakNetCommandParser.h delete mode 100644 Source/RakNetDefines.h delete mode 100644 Source/RakNetDefinesOverrides.h delete mode 100644 Source/RakNetSmartPtr.h delete mode 100644 Source/RakNetSocket.h delete mode 100644 Source/RakNetSocket2.h delete mode 100644 Source/RakNetStatistics.h delete mode 100644 Source/RakNetTime.h delete mode 100644 Source/RakNetTransport2.h delete mode 100644 Source/RakNetTypes.h delete mode 100644 Source/RakNetVersion.h delete mode 100644 Source/RakPeer.h delete mode 100644 Source/RakPeerInterface.h delete mode 100644 Source/RakSleep.h delete mode 100644 Source/RakString.h delete mode 100644 Source/RakThread.h delete mode 100644 Source/RakWString.h delete mode 100644 Source/Rand.h delete mode 100644 Source/RandSync.h delete mode 100644 Source/ReadyEvent.h delete mode 100644 Source/RefCountedObj.h delete mode 100644 Source/RelayPlugin.h delete mode 100644 Source/ReliabilityLayer.h delete mode 100644 Source/ReplicaEnums.h delete mode 100644 Source/ReplicaManager3.h delete mode 100644 Source/Router2.h delete mode 100644 Source/SecureHandshake.h delete mode 100644 Source/SendToThread.h delete mode 100644 Source/SignaledEvent.h delete mode 100644 Source/SimpleMutex.h delete mode 100644 Source/SimpleTCPServer.h delete mode 100644 Source/SingleProducerConsumer.h delete mode 100644 Source/SocketDefines.h delete mode 100644 Source/SocketIncludes.h delete mode 100644 Source/SocketLayer.h delete mode 100644 Source/StatisticsHistory.h delete mode 100644 Source/StringCompressor.h delete mode 100644 Source/StringTable.h delete mode 100644 Source/SuperFastHash.h delete mode 100644 Source/TCPInterface.h delete mode 100644 Source/TableSerializer.h delete mode 100644 Source/TeamBalancer.h delete mode 100644 Source/TeamManager.h delete mode 100644 Source/TelnetTransport.h delete mode 100644 Source/ThreadPool.h delete mode 100644 Source/ThreadsafePacketLogger.h delete mode 100644 Source/TransportInterface.h delete mode 100644 Source/TwoWayAuthentication.h delete mode 100644 Source/UDPForwarder.h delete mode 100644 Source/UDPProxyClient.h delete mode 100644 Source/UDPProxyCommon.h delete mode 100644 Source/UDPProxyCoordinator.h delete mode 100644 Source/UDPProxyServer.h delete mode 100644 Source/VariableDeltaSerializer.h delete mode 100644 Source/VariableListDeltaTracker.h delete mode 100644 Source/VariadicSQLParser.h delete mode 100644 Source/VitaIncludes.h delete mode 100644 Source/WSAStartupSingleton.h delete mode 100644 Source/WindowsIncludes.h delete mode 100644 Source/XBox360Includes.h delete mode 100644 Source/_FindFirst.h delete mode 100644 Source/gettimeofday.h delete mode 100644 Source/slikenet/AutopatcherPatchContext.h delete mode 100644 Source/slikenet/AutopatcherRepositoryInterface.h delete mode 100644 Source/slikenet/Base64Encoder.h delete mode 100644 Source/slikenet/BitStream.h delete mode 100644 Source/slikenet/CCRakNetSlidingWindow.h delete mode 100644 Source/slikenet/CCRakNetUDT.h delete mode 100644 Source/slikenet/CheckSum.h delete mode 100644 Source/slikenet/CloudClient.h delete mode 100644 Source/slikenet/CloudCommon.h delete mode 100644 Source/slikenet/CloudServer.h delete mode 100644 Source/slikenet/CommandParserInterface.h delete mode 100644 Source/slikenet/ConnectionGraph2.h delete mode 100644 Source/slikenet/ConsoleServer.h delete mode 100644 Source/slikenet/DR_SHA1.h delete mode 100644 Source/slikenet/DS_BPlusTree.h delete mode 100644 Source/slikenet/DS_BinarySearchTree.h delete mode 100644 Source/slikenet/DS_BytePool.h delete mode 100644 Source/slikenet/DS_ByteQueue.h delete mode 100644 Source/slikenet/DS_Hash.h delete mode 100644 Source/slikenet/DS_Heap.h delete mode 100644 Source/slikenet/DS_HuffmanEncodingTree.h delete mode 100644 Source/slikenet/DS_HuffmanEncodingTreeFactory.h delete mode 100644 Source/slikenet/DS_HuffmanEncodingTreeNode.h delete mode 100644 Source/slikenet/DS_LinkedList.h delete mode 100644 Source/slikenet/DS_List.h delete mode 100644 Source/slikenet/DS_Map.h delete mode 100644 Source/slikenet/DS_MemoryPool.h delete mode 100644 Source/slikenet/DS_Multilist.h delete mode 100644 Source/slikenet/DS_OrderedChannelHeap.h delete mode 100644 Source/slikenet/DS_OrderedList.h delete mode 100644 Source/slikenet/DS_Queue.h delete mode 100644 Source/slikenet/DS_QueueLinkedList.h delete mode 100644 Source/slikenet/DS_RangeList.h delete mode 100644 Source/slikenet/DS_Table.h delete mode 100644 Source/slikenet/DS_ThreadsafeAllocatingQueue.h delete mode 100644 Source/slikenet/DS_Tree.h delete mode 100644 Source/slikenet/DS_WeightedGraph.h delete mode 100644 Source/slikenet/DataCompressor.h delete mode 100644 Source/slikenet/DirectoryDeltaTransfer.h delete mode 100644 Source/slikenet/DynDNS.h delete mode 100644 Source/slikenet/EmailSender.h delete mode 100644 Source/slikenet/EmptyHeader.h delete mode 100644 Source/slikenet/EpochTimeToString.h delete mode 100644 Source/slikenet/Export.h delete mode 100644 Source/slikenet/FileList.h delete mode 100644 Source/slikenet/FileListNodeContext.h delete mode 100644 Source/slikenet/FileListTransfer.h delete mode 100644 Source/slikenet/FileListTransferCBInterface.h delete mode 100644 Source/slikenet/FileOperations.h delete mode 100644 Source/slikenet/FormatString.h delete mode 100644 Source/slikenet/FullyConnectedMesh2.h delete mode 100644 Source/slikenet/GetTime.h delete mode 100644 Source/slikenet/Getche.h delete mode 100644 Source/slikenet/Gets.h delete mode 100644 Source/slikenet/GridSectorizer.h delete mode 100644 Source/slikenet/HTTPConnection.h delete mode 100644 Source/slikenet/HTTPConnection2.h delete mode 100644 Source/slikenet/IncrementalReadInterface.h delete mode 100644 Source/slikenet/InternalPacket.h delete mode 100644 Source/slikenet/Itoa.h delete mode 100644 Source/slikenet/Kbhit.h delete mode 100644 Source/slikenet/LinuxStrings.h delete mode 100644 Source/slikenet/LocklessTypes.h delete mode 100644 Source/slikenet/LogCommandParser.h delete mode 100644 Source/slikenet/MTUSize.h delete mode 100644 Source/slikenet/MessageFilter.h delete mode 100644 Source/slikenet/MessageIdentifiers.h delete mode 100644 Source/slikenet/NatPunchthroughClient.h delete mode 100644 Source/slikenet/NatPunchthroughServer.h delete mode 100644 Source/slikenet/NatTypeDetectionClient.h delete mode 100644 Source/slikenet/NatTypeDetectionCommon.h delete mode 100644 Source/slikenet/NatTypeDetectionServer.h delete mode 100644 Source/slikenet/NativeFeatureIncludes.h delete mode 100644 Source/slikenet/NativeFeatureIncludesOverrides.h delete mode 100644 Source/slikenet/NativeTypes.h delete mode 100644 Source/slikenet/NetworkIDManager.h delete mode 100644 Source/slikenet/NetworkIDObject.h delete mode 100644 Source/slikenet/PS3Includes.h delete mode 100644 Source/slikenet/PS4Includes.h delete mode 100644 Source/slikenet/PacketConsoleLogger.h delete mode 100644 Source/slikenet/PacketFileLogger.h delete mode 100644 Source/slikenet/PacketLogger.h delete mode 100644 Source/slikenet/PacketOutputWindowLogger.h delete mode 100644 Source/slikenet/PacketPool.h delete mode 100644 Source/slikenet/PacketPriority.h delete mode 100644 Source/slikenet/PacketizedTCP.h delete mode 100644 Source/slikenet/PluginInterface2.h delete mode 100644 Source/slikenet/RPC4Plugin.h delete mode 100644 Source/slikenet/Rackspace.h delete mode 100644 Source/slikenet/Rand.h delete mode 100644 Source/slikenet/RandSync.h delete mode 100644 Source/slikenet/ReadyEvent.h delete mode 100644 Source/slikenet/RefCountedObj.h delete mode 100644 Source/slikenet/RelayPlugin.h delete mode 100644 Source/slikenet/ReliabilityLayer.h delete mode 100644 Source/slikenet/ReplicaEnums.h delete mode 100644 Source/slikenet/ReplicaManager3.h delete mode 100644 Source/slikenet/Router2.h delete mode 100644 Source/slikenet/SecureHandshake.h delete mode 100644 Source/slikenet/SendToThread.h delete mode 100644 Source/slikenet/SignaledEvent.h delete mode 100644 Source/slikenet/SimpleMutex.h delete mode 100644 Source/slikenet/SimpleTCPServer.h delete mode 100644 Source/slikenet/SingleProducerConsumer.h delete mode 100644 Source/slikenet/SocketDefines.h delete mode 100644 Source/slikenet/SocketIncludes.h delete mode 100644 Source/slikenet/SocketLayer.h delete mode 100644 Source/slikenet/StatisticsHistory.h delete mode 100644 Source/slikenet/StringCompressor.h delete mode 100644 Source/slikenet/StringTable.h delete mode 100644 Source/slikenet/SuperFastHash.h delete mode 100644 Source/slikenet/TCPInterface.h delete mode 100644 Source/slikenet/TableSerializer.h delete mode 100644 Source/slikenet/TeamBalancer.h delete mode 100644 Source/slikenet/TeamManager.h delete mode 100644 Source/slikenet/TelnetTransport.h delete mode 100644 Source/slikenet/ThreadPool.h delete mode 100644 Source/slikenet/ThreadsafePacketLogger.h delete mode 100644 Source/slikenet/TransportInterface.h delete mode 100644 Source/slikenet/TwoWayAuthentication.h delete mode 100644 Source/slikenet/UDPForwarder.h delete mode 100644 Source/slikenet/UDPProxyClient.h delete mode 100644 Source/slikenet/UDPProxyCommon.h delete mode 100644 Source/slikenet/UDPProxyCoordinator.h delete mode 100644 Source/slikenet/UDPProxyServer.h delete mode 100644 Source/slikenet/VariableDeltaSerializer.h delete mode 100644 Source/slikenet/VariableListDeltaTracker.h delete mode 100644 Source/slikenet/VariadicSQLParser.h delete mode 100644 Source/slikenet/VitaIncludes.h delete mode 100644 Source/slikenet/WSAStartupSingleton.h delete mode 100644 Source/slikenet/WindowsIncludes.h delete mode 100644 Source/slikenet/XBox360Includes.h delete mode 100644 Source/slikenet/_FindFirst.h delete mode 100644 Source/slikenet/alloca.h delete mode 100644 Source/slikenet/assert.h delete mode 100644 Source/slikenet/commandparser.h delete mode 100644 Source/slikenet/defineoverrides.h delete mode 100644 Source/slikenet/defines.h delete mode 100644 Source/slikenet/gettimeofday.h delete mode 100644 Source/slikenet/linux_adapter.h delete mode 100644 Source/slikenet/memoryoverride.h delete mode 100644 Source/slikenet/osx_adapter.h delete mode 100644 Source/slikenet/peer.h delete mode 100644 Source/slikenet/peerinterface.h delete mode 100644 Source/slikenet/sleep.h delete mode 100644 Source/slikenet/smartptr.h delete mode 100644 Source/slikenet/socket.h delete mode 100644 Source/slikenet/socket2.h delete mode 100644 Source/slikenet/statistics.h delete mode 100644 Source/slikenet/string.h delete mode 100644 Source/slikenet/thread.h delete mode 100644 Source/slikenet/time.h delete mode 100644 Source/slikenet/transport2.h delete mode 100644 Source/slikenet/types.h delete mode 100644 Source/slikenet/version.h delete mode 100644 Source/slikenet/wstring.h diff --git a/DependentExtensions/Lobby2/Lobby2ResultCode.h b/DependentExtensions/Lobby2/Lobby2ResultCode.h index 1245613c2..c2422c93b 100644 --- a/DependentExtensions/Lobby2/Lobby2ResultCode.h +++ b/DependentExtensions/Lobby2/Lobby2ResultCode.h @@ -16,7 +16,6 @@ #ifndef __LOBBY_2_RESULT_CODE_H #define __LOBBY_2_RESULT_CODE_H -#include "slikenet/defines.h" // used for SLNet -> RakNet namespace change in RAKNET_COMPATIBILITY mode namespace SLNet { diff --git a/DependentExtensions/Lobby2/Rooms/RoomsErrorCodes.h b/DependentExtensions/Lobby2/Rooms/RoomsErrorCodes.h index 04501788c..355b4a85c 100644 --- a/DependentExtensions/Lobby2/Rooms/RoomsErrorCodes.h +++ b/DependentExtensions/Lobby2/Rooms/RoomsErrorCodes.h @@ -16,7 +16,6 @@ #ifndef __ROOMS_ERROR_CODES_H #define __ROOMS_ERROR_CODES_H -#include "slikenet/defines.h" // used for SLNet -> RakNet namespace change in RAKNET_COMPATIBILITY mode namespace SLNet { diff --git a/Samples/CrashReporter/CrashReporter.h b/Samples/CrashReporter/CrashReporter.h index 71a66f36f..69b87b4d3 100644 --- a/Samples/CrashReporter/CrashReporter.h +++ b/Samples/CrashReporter/CrashReporter.h @@ -65,7 +65,6 @@ // #include "DbgHelp.h" // Link with Dbghelp.lib ws2_32.lib -#include "slikenet/defines.h" // used for SLNet -> RakNet namespace change in RAKNET_COMPATIBILITY mode namespace SLNet { // Possible actions to take on a crash. If you want to restart the app as well, see the CrashRelauncher sample. diff --git a/Source/AutopatcherPatchContext.h b/Source/AutopatcherPatchContext.h deleted file mode 100644 index 25b5fafba..000000000 --- a/Source/AutopatcherPatchContext.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/AutopatcherPatchContext.h" diff --git a/Source/AutopatcherRepositoryInterface.h b/Source/AutopatcherRepositoryInterface.h deleted file mode 100644 index 93fa2dd96..000000000 --- a/Source/AutopatcherRepositoryInterface.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/AutopatcherRepositoryInterface.h" diff --git a/Source/Base64Encoder.h b/Source/Base64Encoder.h deleted file mode 100644 index 859d0a04f..000000000 --- a/Source/Base64Encoder.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Base64Encoder.h" diff --git a/Source/BitStream.h b/Source/BitStream.h deleted file mode 100644 index 0fede9999..000000000 --- a/Source/BitStream.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/BitStream.h" diff --git a/Source/CCRakNetSlidingWindow.h b/Source/CCRakNetSlidingWindow.h deleted file mode 100644 index 12f0ecb9f..000000000 --- a/Source/CCRakNetSlidingWindow.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/CCRakNetSlidingWindow.h" diff --git a/Source/CCRakNetUDT.h b/Source/CCRakNetUDT.h deleted file mode 100644 index 0205bdf29..000000000 --- a/Source/CCRakNetUDT.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/CCRakNetUDT.h" diff --git a/Source/CheckSum.h b/Source/CheckSum.h deleted file mode 100644 index 27e221073..000000000 --- a/Source/CheckSum.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/CheckSum.h" diff --git a/Source/CloudClient.h b/Source/CloudClient.h deleted file mode 100644 index 0c17a9889..000000000 --- a/Source/CloudClient.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/CloudClient.h" diff --git a/Source/CloudCommon.h b/Source/CloudCommon.h deleted file mode 100644 index f20d1443b..000000000 --- a/Source/CloudCommon.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/CloudCommon.h" diff --git a/Source/CloudServer.h b/Source/CloudServer.h deleted file mode 100644 index 58b036aed..000000000 --- a/Source/CloudServer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/CloudServer.h" diff --git a/Source/CommandParserInterface.h b/Source/CommandParserInterface.h deleted file mode 100644 index 170837ad4..000000000 --- a/Source/CommandParserInterface.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/CommandParserInterface.h" diff --git a/Source/ConnectionGraph2.h b/Source/ConnectionGraph2.h deleted file mode 100644 index 89db73d3b..000000000 --- a/Source/ConnectionGraph2.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ConnectionGraph2.h" diff --git a/Source/ConsoleServer.h b/Source/ConsoleServer.h deleted file mode 100644 index dd097cc6b..000000000 --- a/Source/ConsoleServer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ConsoleServer.h" diff --git a/Source/DR_SHA1.h b/Source/DR_SHA1.h deleted file mode 100644 index 759df5c15..000000000 --- a/Source/DR_SHA1.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DR_SHA1.h" diff --git a/Source/DS_BPlusTree.h b/Source/DS_BPlusTree.h deleted file mode 100644 index 4aa9878bc..000000000 --- a/Source/DS_BPlusTree.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_BPlusTree.h" diff --git a/Source/DS_BinarySearchTree.h b/Source/DS_BinarySearchTree.h deleted file mode 100644 index f81f20db6..000000000 --- a/Source/DS_BinarySearchTree.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_BinarySearchTree.h" diff --git a/Source/DS_BytePool.h b/Source/DS_BytePool.h deleted file mode 100644 index 5f99fe53b..000000000 --- a/Source/DS_BytePool.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_BytePool.h" diff --git a/Source/DS_ByteQueue.h b/Source/DS_ByteQueue.h deleted file mode 100644 index 7b96a1438..000000000 --- a/Source/DS_ByteQueue.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_ByteQueue.h" diff --git a/Source/DS_Hash.h b/Source/DS_Hash.h deleted file mode 100644 index 884c0c4ce..000000000 --- a/Source/DS_Hash.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_Hash.h" diff --git a/Source/DS_Heap.h b/Source/DS_Heap.h deleted file mode 100644 index 261656baa..000000000 --- a/Source/DS_Heap.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_Heap.h" diff --git a/Source/DS_HuffmanEncodingTree.h b/Source/DS_HuffmanEncodingTree.h deleted file mode 100644 index a214ec9a3..000000000 --- a/Source/DS_HuffmanEncodingTree.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_HuffmanEncodingTree.h" diff --git a/Source/DS_HuffmanEncodingTreeFactory.h b/Source/DS_HuffmanEncodingTreeFactory.h deleted file mode 100644 index 19a831434..000000000 --- a/Source/DS_HuffmanEncodingTreeFactory.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_HuffmanEncodingTreeFactory.h" diff --git a/Source/DS_HuffmanEncodingTreeNode.h b/Source/DS_HuffmanEncodingTreeNode.h deleted file mode 100644 index cb1a7e291..000000000 --- a/Source/DS_HuffmanEncodingTreeNode.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_HuffmanEncodingTreeNode.h" diff --git a/Source/DS_LinkedList.h b/Source/DS_LinkedList.h deleted file mode 100644 index 365c81ffb..000000000 --- a/Source/DS_LinkedList.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_LinkedList.h" diff --git a/Source/DS_List.h b/Source/DS_List.h deleted file mode 100644 index 3e675a382..000000000 --- a/Source/DS_List.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_List.h" diff --git a/Source/DS_Map.h b/Source/DS_Map.h deleted file mode 100644 index 9d4238736..000000000 --- a/Source/DS_Map.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_Map.h" diff --git a/Source/DS_MemoryPool.h b/Source/DS_MemoryPool.h deleted file mode 100644 index 8d93842c8..000000000 --- a/Source/DS_MemoryPool.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_MemoryPool.h" diff --git a/Source/DS_Multilist.h b/Source/DS_Multilist.h deleted file mode 100644 index e4a66ee93..000000000 --- a/Source/DS_Multilist.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_Multilist.h" diff --git a/Source/DS_OrderedChannelHeap.h b/Source/DS_OrderedChannelHeap.h deleted file mode 100644 index fe667803a..000000000 --- a/Source/DS_OrderedChannelHeap.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_OrderedChannelHeap.h" diff --git a/Source/DS_OrderedList.h b/Source/DS_OrderedList.h deleted file mode 100644 index 15f694ef8..000000000 --- a/Source/DS_OrderedList.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_OrderedList.h" diff --git a/Source/DS_Queue.h b/Source/DS_Queue.h deleted file mode 100644 index ea895701c..000000000 --- a/Source/DS_Queue.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_Queue.h" diff --git a/Source/DS_QueueLinkedList.h b/Source/DS_QueueLinkedList.h deleted file mode 100644 index 5a41caf36..000000000 --- a/Source/DS_QueueLinkedList.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_QueueLinkedList.h" diff --git a/Source/DS_RangeList.h b/Source/DS_RangeList.h deleted file mode 100644 index 887455fe0..000000000 --- a/Source/DS_RangeList.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_RangeList.h" diff --git a/Source/DS_Table.h b/Source/DS_Table.h deleted file mode 100644 index 42a22228e..000000000 --- a/Source/DS_Table.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_Table.h" diff --git a/Source/DS_ThreadsafeAllocatingQueue.h b/Source/DS_ThreadsafeAllocatingQueue.h deleted file mode 100644 index 671279487..000000000 --- a/Source/DS_ThreadsafeAllocatingQueue.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_ThreadsafeAllocatingQueue.h" diff --git a/Source/DS_Tree.h b/Source/DS_Tree.h deleted file mode 100644 index 76c20131e..000000000 --- a/Source/DS_Tree.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_Tree.h" diff --git a/Source/DS_WeightedGraph.h b/Source/DS_WeightedGraph.h deleted file mode 100644 index 6beefcc81..000000000 --- a/Source/DS_WeightedGraph.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DS_WeightedGraph.h" diff --git a/Source/DataCompressor.h b/Source/DataCompressor.h deleted file mode 100644 index 800253903..000000000 --- a/Source/DataCompressor.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DataCompressor.h" diff --git a/Source/DirectoryDeltaTransfer.h b/Source/DirectoryDeltaTransfer.h deleted file mode 100644 index 1e42dccda..000000000 --- a/Source/DirectoryDeltaTransfer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DirectoryDeltaTransfer.h" diff --git a/Source/DynDNS.h b/Source/DynDNS.h deleted file mode 100644 index 7d7c11aa7..000000000 --- a/Source/DynDNS.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/DynDNS.h" diff --git a/Source/EmailSender.h b/Source/EmailSender.h deleted file mode 100644 index 191ec2103..000000000 --- a/Source/EmailSender.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/EmailSender.h" diff --git a/Source/EmptyHeader.h b/Source/EmptyHeader.h deleted file mode 100644 index 3d95fa228..000000000 --- a/Source/EmptyHeader.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/EmptyHeader.h" diff --git a/Source/EpochTimeToString.h b/Source/EpochTimeToString.h deleted file mode 100644 index 7a316345d..000000000 --- a/Source/EpochTimeToString.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/EpochTimeToString.h" diff --git a/Source/Export.h b/Source/Export.h deleted file mode 100644 index 5d99ca18a..000000000 --- a/Source/Export.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Export.h" diff --git a/Source/FileList.h b/Source/FileList.h deleted file mode 100644 index c811d20a6..000000000 --- a/Source/FileList.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/FileList.h" diff --git a/Source/FileListNodeContext.h b/Source/FileListNodeContext.h deleted file mode 100644 index 593cba9d5..000000000 --- a/Source/FileListNodeContext.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/FileListNodeContext.h" diff --git a/Source/FileListTransfer.h b/Source/FileListTransfer.h deleted file mode 100644 index aef0a3228..000000000 --- a/Source/FileListTransfer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/FileListTransfer.h" diff --git a/Source/FileListTransferCBInterface.h b/Source/FileListTransferCBInterface.h deleted file mode 100644 index ee0c7cd50..000000000 --- a/Source/FileListTransferCBInterface.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/FileListTransferCBInterface.h" diff --git a/Source/FileOperations.h b/Source/FileOperations.h deleted file mode 100644 index 50b61b8a8..000000000 --- a/Source/FileOperations.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/FileOperations.h" diff --git a/Source/FormatString.h b/Source/FormatString.h deleted file mode 100644 index afe02d411..000000000 --- a/Source/FormatString.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/FormatString.h" diff --git a/Source/FullyConnectedMesh2.h b/Source/FullyConnectedMesh2.h deleted file mode 100644 index 37c040bb4..000000000 --- a/Source/FullyConnectedMesh2.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/FullyConnectedMesh2.h" diff --git a/Source/GetTime.h b/Source/GetTime.h deleted file mode 100644 index be9f521b8..000000000 --- a/Source/GetTime.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/GetTime.h" diff --git a/Source/Getche.h b/Source/Getche.h deleted file mode 100644 index 3bc80e15c..000000000 --- a/Source/Getche.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Getche.h" diff --git a/Source/Gets.h b/Source/Gets.h deleted file mode 100644 index e1221e438..000000000 --- a/Source/Gets.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Gets.h" diff --git a/Source/GridSectorizer.h b/Source/GridSectorizer.h deleted file mode 100644 index 3fb921296..000000000 --- a/Source/GridSectorizer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/GridSectorizer.h" diff --git a/Source/HTTPConnection.h b/Source/HTTPConnection.h deleted file mode 100644 index b2a2099fc..000000000 --- a/Source/HTTPConnection.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/HTTPConnection.h" diff --git a/Source/HTTPConnection2.h b/Source/HTTPConnection2.h deleted file mode 100644 index f85239fef..000000000 --- a/Source/HTTPConnection2.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/HTTPConnection2.h" diff --git a/Source/IncrementalReadInterface.h b/Source/IncrementalReadInterface.h deleted file mode 100644 index a5ca80029..000000000 --- a/Source/IncrementalReadInterface.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/IncrementalReadInterface.h" diff --git a/Source/InternalPacket.h b/Source/InternalPacket.h deleted file mode 100644 index d6436f2d9..000000000 --- a/Source/InternalPacket.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/InternalPacket.h" diff --git a/Source/Itoa.h b/Source/Itoa.h deleted file mode 100644 index 72dbafe8b..000000000 --- a/Source/Itoa.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Itoa.h" diff --git a/Source/Kbhit.h b/Source/Kbhit.h deleted file mode 100644 index 6aa8c3b04..000000000 --- a/Source/Kbhit.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Kbhit.h" diff --git a/Source/LinuxStrings.h b/Source/LinuxStrings.h deleted file mode 100644 index 5b07185e1..000000000 --- a/Source/LinuxStrings.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/LinuxStrings.h" diff --git a/Source/LocklessTypes.h b/Source/LocklessTypes.h deleted file mode 100644 index 06d4dd9f1..000000000 --- a/Source/LocklessTypes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/LocklessTypes.h" diff --git a/Source/LogCommandParser.h b/Source/LogCommandParser.h deleted file mode 100644 index a819d892f..000000000 --- a/Source/LogCommandParser.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/LogCommandParser.h" diff --git a/Source/MTUSize.h b/Source/MTUSize.h deleted file mode 100644 index 10c122f11..000000000 --- a/Source/MTUSize.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/MTUSize.h" diff --git a/Source/MessageFilter.h b/Source/MessageFilter.h deleted file mode 100644 index 7c1fba9de..000000000 --- a/Source/MessageFilter.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/MessageFilter.h" diff --git a/Source/MessageIdentifiers.h b/Source/MessageIdentifiers.h deleted file mode 100644 index 56129e551..000000000 --- a/Source/MessageIdentifiers.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/MessageIdentifiers.h" diff --git a/Source/NatPunchthroughClient.h b/Source/NatPunchthroughClient.h deleted file mode 100644 index 7d75027b9..000000000 --- a/Source/NatPunchthroughClient.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NatPunchthroughClient.h" diff --git a/Source/NatPunchthroughServer.h b/Source/NatPunchthroughServer.h deleted file mode 100644 index 803380acc..000000000 --- a/Source/NatPunchthroughServer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NatPunchthroughServer.h" diff --git a/Source/NatTypeDetectionClient.h b/Source/NatTypeDetectionClient.h deleted file mode 100644 index f2d2f9f33..000000000 --- a/Source/NatTypeDetectionClient.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NatTypeDetectionClient.h" diff --git a/Source/NatTypeDetectionCommon.h b/Source/NatTypeDetectionCommon.h deleted file mode 100644 index 33366b80c..000000000 --- a/Source/NatTypeDetectionCommon.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NatTypeDetectionCommon.h" diff --git a/Source/NatTypeDetectionServer.h b/Source/NatTypeDetectionServer.h deleted file mode 100644 index 3f39d038b..000000000 --- a/Source/NatTypeDetectionServer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NatTypeDetectionServer.h" diff --git a/Source/NativeFeatureIncludes.h b/Source/NativeFeatureIncludes.h deleted file mode 100644 index cf5e39453..000000000 --- a/Source/NativeFeatureIncludes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NativeFeatureIncludes.h" diff --git a/Source/NativeFeatureIncludesOverrides.h b/Source/NativeFeatureIncludesOverrides.h deleted file mode 100644 index c6f5c42a5..000000000 --- a/Source/NativeFeatureIncludesOverrides.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NativeFeatureIncludesOverrides.h" diff --git a/Source/NativeTypes.h b/Source/NativeTypes.h deleted file mode 100644 index f7f41d08b..000000000 --- a/Source/NativeTypes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NativeTypes.h" diff --git a/Source/NetworkIDManager.h b/Source/NetworkIDManager.h deleted file mode 100644 index 4145a1672..000000000 --- a/Source/NetworkIDManager.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NetworkIDManager.h" diff --git a/Source/NetworkIDObject.h b/Source/NetworkIDObject.h deleted file mode 100644 index 1cff47b2d..000000000 --- a/Source/NetworkIDObject.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/NetowkrIDObject.h" diff --git a/Source/PS3Includes.h b/Source/PS3Includes.h deleted file mode 100644 index 405a5b9a9..000000000 --- a/Source/PS3Includes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PS3Includes.h" diff --git a/Source/PS4Includes.h b/Source/PS4Includes.h deleted file mode 100644 index 1ce60063d..000000000 --- a/Source/PS4Includes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PS4Includes.h" diff --git a/Source/PacketConsoleLogger.h b/Source/PacketConsoleLogger.h deleted file mode 100644 index 182f607c7..000000000 --- a/Source/PacketConsoleLogger.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PacketConsoleLogger.h" diff --git a/Source/PacketFileLogger.h b/Source/PacketFileLogger.h deleted file mode 100644 index fcd3a33f1..000000000 --- a/Source/PacketFileLogger.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PacketFileLogger.h" diff --git a/Source/PacketLogger.h b/Source/PacketLogger.h deleted file mode 100644 index 51fd61f9b..000000000 --- a/Source/PacketLogger.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PacketLogger.h" diff --git a/Source/PacketOutputWindowLogger.h b/Source/PacketOutputWindowLogger.h deleted file mode 100644 index 90b5a56ec..000000000 --- a/Source/PacketOutputWindowLogger.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PacketOutputWindowLogger.h" diff --git a/Source/PacketPool.h b/Source/PacketPool.h deleted file mode 100644 index 4ea412859..000000000 --- a/Source/PacketPool.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PacketPool.h" diff --git a/Source/PacketPriority.h b/Source/PacketPriority.h deleted file mode 100644 index 2ca6bb146..000000000 --- a/Source/PacketPriority.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PacketPriority.h" diff --git a/Source/PacketizedTCP.h b/Source/PacketizedTCP.h deleted file mode 100644 index 9523c0f89..000000000 --- a/Source/PacketizedTCP.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PacketizedTCP.h" diff --git a/Source/PluginInterface2.h b/Source/PluginInterface2.h deleted file mode 100644 index 7973b0ad2..000000000 --- a/Source/PluginInterface2.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/PluginInterface2.h" diff --git a/Source/RPC4Plugin.h b/Source/RPC4Plugin.h deleted file mode 100644 index 007cc1f93..000000000 --- a/Source/RPC4Plugin.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/RPC4Plugin.h" diff --git a/Source/Rackspace.h b/Source/Rackspace.h deleted file mode 100644 index cd4a2ce8b..000000000 --- a/Source/Rackspace.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Rackspace.h" diff --git a/Source/RakAlloca.h b/Source/RakAlloca.h deleted file mode 100644 index c0eba6900..000000000 --- a/Source/RakAlloca.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/alloca.h" diff --git a/Source/RakAssert.h b/Source/RakAssert.h deleted file mode 100644 index ab794700f..000000000 --- a/Source/RakAssert.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/assert.h" diff --git a/Source/RakMemoryOverride.h b/Source/RakMemoryOverride.h deleted file mode 100644 index 4df8b3ed2..000000000 --- a/Source/RakMemoryOverride.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/memoryoverride.h" diff --git a/Source/RakNetCommandParser.h b/Source/RakNetCommandParser.h deleted file mode 100644 index 51edb4e8a..000000000 --- a/Source/RakNetCommandParser.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/commandparser.h" diff --git a/Source/RakNetDefines.h b/Source/RakNetDefines.h deleted file mode 100644 index 3759ebea8..000000000 --- a/Source/RakNetDefines.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/defines.h" diff --git a/Source/RakNetDefinesOverrides.h b/Source/RakNetDefinesOverrides.h deleted file mode 100644 index b998213ac..000000000 --- a/Source/RakNetDefinesOverrides.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/defineoverrides.h" diff --git a/Source/RakNetSmartPtr.h b/Source/RakNetSmartPtr.h deleted file mode 100644 index cc1a08fbc..000000000 --- a/Source/RakNetSmartPtr.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/smartptr.h" diff --git a/Source/RakNetSocket.h b/Source/RakNetSocket.h deleted file mode 100644 index 2315e8abe..000000000 --- a/Source/RakNetSocket.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/socket.h" diff --git a/Source/RakNetSocket2.h b/Source/RakNetSocket2.h deleted file mode 100644 index ae7710f41..000000000 --- a/Source/RakNetSocket2.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/socket2.h" diff --git a/Source/RakNetStatistics.h b/Source/RakNetStatistics.h deleted file mode 100644 index 8c5d91e32..000000000 --- a/Source/RakNetStatistics.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/statistics.h" diff --git a/Source/RakNetTime.h b/Source/RakNetTime.h deleted file mode 100644 index 1b2d314d5..000000000 --- a/Source/RakNetTime.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/time.h" diff --git a/Source/RakNetTransport2.h b/Source/RakNetTransport2.h deleted file mode 100644 index fc2a14bf2..000000000 --- a/Source/RakNetTransport2.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/transport2.h" diff --git a/Source/RakNetTypes.h b/Source/RakNetTypes.h deleted file mode 100644 index c728b136c..000000000 --- a/Source/RakNetTypes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/types.h" diff --git a/Source/RakNetVersion.h b/Source/RakNetVersion.h deleted file mode 100644 index a2d603aa2..000000000 --- a/Source/RakNetVersion.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/version.h" diff --git a/Source/RakPeer.h b/Source/RakPeer.h deleted file mode 100644 index 2e3d0814b..000000000 --- a/Source/RakPeer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/peer.h" diff --git a/Source/RakPeerInterface.h b/Source/RakPeerInterface.h deleted file mode 100644 index 7c1e94418..000000000 --- a/Source/RakPeerInterface.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/peerinterface.h" diff --git a/Source/RakSleep.h b/Source/RakSleep.h deleted file mode 100644 index 8a1c5c72c..000000000 --- a/Source/RakSleep.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/sleep.h" diff --git a/Source/RakString.h b/Source/RakString.h deleted file mode 100644 index 1baa53c1c..000000000 --- a/Source/RakString.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/string.h" diff --git a/Source/RakThread.h b/Source/RakThread.h deleted file mode 100644 index dff4a1227..000000000 --- a/Source/RakThread.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/thread.h" diff --git a/Source/RakWString.h b/Source/RakWString.h deleted file mode 100644 index 9e8a36e65..000000000 --- a/Source/RakWString.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/wstring.h" diff --git a/Source/Rand.h b/Source/Rand.h deleted file mode 100644 index ba987d2a4..000000000 --- a/Source/Rand.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Rand.h" diff --git a/Source/RandSync.h b/Source/RandSync.h deleted file mode 100644 index 1c8829ff7..000000000 --- a/Source/RandSync.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/RandSync.h" diff --git a/Source/ReadyEvent.h b/Source/ReadyEvent.h deleted file mode 100644 index d86a04ea9..000000000 --- a/Source/ReadyEvent.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ReadyEvent.h" diff --git a/Source/RefCountedObj.h b/Source/RefCountedObj.h deleted file mode 100644 index bcacb9afb..000000000 --- a/Source/RefCountedObj.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/RefCountedObj.h" diff --git a/Source/RelayPlugin.h b/Source/RelayPlugin.h deleted file mode 100644 index 20180cc87..000000000 --- a/Source/RelayPlugin.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/RelayPlugin.h" diff --git a/Source/ReliabilityLayer.h b/Source/ReliabilityLayer.h deleted file mode 100644 index a73198163..000000000 --- a/Source/ReliabilityLayer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ReliabilityLayer.h" diff --git a/Source/ReplicaEnums.h b/Source/ReplicaEnums.h deleted file mode 100644 index f18b80319..000000000 --- a/Source/ReplicaEnums.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ReplicaEnums.h" diff --git a/Source/ReplicaManager3.h b/Source/ReplicaManager3.h deleted file mode 100644 index d6d2288d8..000000000 --- a/Source/ReplicaManager3.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ReplicaManager3.h" diff --git a/Source/Router2.h b/Source/Router2.h deleted file mode 100644 index a5c440504..000000000 --- a/Source/Router2.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/Router2.h" diff --git a/Source/SecureHandshake.h b/Source/SecureHandshake.h deleted file mode 100644 index fb9a1ab7f..000000000 --- a/Source/SecureHandshake.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SecureHandshake.h" diff --git a/Source/SendToThread.h b/Source/SendToThread.h deleted file mode 100644 index f167beeef..000000000 --- a/Source/SendToThread.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SendToThread.h" diff --git a/Source/SignaledEvent.h b/Source/SignaledEvent.h deleted file mode 100644 index cf43fb66b..000000000 --- a/Source/SignaledEvent.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SignaledEvent.h" diff --git a/Source/SimpleMutex.h b/Source/SimpleMutex.h deleted file mode 100644 index 25ca36013..000000000 --- a/Source/SimpleMutex.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SimpleMutex.h" diff --git a/Source/SimpleTCPServer.h b/Source/SimpleTCPServer.h deleted file mode 100644 index cc4d01aaa..000000000 --- a/Source/SimpleTCPServer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SimpleTCPServer.h" diff --git a/Source/SingleProducerConsumer.h b/Source/SingleProducerConsumer.h deleted file mode 100644 index 148ed918f..000000000 --- a/Source/SingleProducerConsumer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SingleProducerConsumer.h" diff --git a/Source/SocketDefines.h b/Source/SocketDefines.h deleted file mode 100644 index 3007dc87e..000000000 --- a/Source/SocketDefines.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SocketDefines.h" diff --git a/Source/SocketIncludes.h b/Source/SocketIncludes.h deleted file mode 100644 index 8e463fc8d..000000000 --- a/Source/SocketIncludes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SocketIncludes.h" diff --git a/Source/SocketLayer.h b/Source/SocketLayer.h deleted file mode 100644 index b9da576df..000000000 --- a/Source/SocketLayer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SocketLayer.h" diff --git a/Source/StatisticsHistory.h b/Source/StatisticsHistory.h deleted file mode 100644 index 56740d05d..000000000 --- a/Source/StatisticsHistory.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/StatisticsHistory.h" diff --git a/Source/StringCompressor.h b/Source/StringCompressor.h deleted file mode 100644 index d0ab46ec2..000000000 --- a/Source/StringCompressor.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/StringCompressor.h" diff --git a/Source/StringTable.h b/Source/StringTable.h deleted file mode 100644 index bd38597ea..000000000 --- a/Source/StringTable.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/StringTable.h" diff --git a/Source/SuperFastHash.h b/Source/SuperFastHash.h deleted file mode 100644 index 37fb41895..000000000 --- a/Source/SuperFastHash.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/SuperFastHash.h" diff --git a/Source/TCPInterface.h b/Source/TCPInterface.h deleted file mode 100644 index 85ec9b73b..000000000 --- a/Source/TCPInterface.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/TCPInterface.h" diff --git a/Source/TableSerializer.h b/Source/TableSerializer.h deleted file mode 100644 index 8d5b0784a..000000000 --- a/Source/TableSerializer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/TableSerializer.h" diff --git a/Source/TeamBalancer.h b/Source/TeamBalancer.h deleted file mode 100644 index 8df1993e3..000000000 --- a/Source/TeamBalancer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/TeamBalancer.h" diff --git a/Source/TeamManager.h b/Source/TeamManager.h deleted file mode 100644 index a9e838066..000000000 --- a/Source/TeamManager.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/TeamManager.h" diff --git a/Source/TelnetTransport.h b/Source/TelnetTransport.h deleted file mode 100644 index 74fb36fb5..000000000 --- a/Source/TelnetTransport.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/TelnetTransport.h" diff --git a/Source/ThreadPool.h b/Source/ThreadPool.h deleted file mode 100644 index 7400f94ef..000000000 --- a/Source/ThreadPool.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ThreadPool.h" diff --git a/Source/ThreadsafePacketLogger.h b/Source/ThreadsafePacketLogger.h deleted file mode 100644 index 71d4420f1..000000000 --- a/Source/ThreadsafePacketLogger.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/ThreadsafePacketLogger.h" diff --git a/Source/TransportInterface.h b/Source/TransportInterface.h deleted file mode 100644 index 74fbc95bc..000000000 --- a/Source/TransportInterface.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/TransportInterface.h" diff --git a/Source/TwoWayAuthentication.h b/Source/TwoWayAuthentication.h deleted file mode 100644 index b21e92507..000000000 --- a/Source/TwoWayAuthentication.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/TwoWayAuthentication.h" diff --git a/Source/UDPForwarder.h b/Source/UDPForwarder.h deleted file mode 100644 index 9c0832f35..000000000 --- a/Source/UDPForwarder.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/UDPForwarder.h" diff --git a/Source/UDPProxyClient.h b/Source/UDPProxyClient.h deleted file mode 100644 index a9d9b19a0..000000000 --- a/Source/UDPProxyClient.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/UDPProxyClient.h" diff --git a/Source/UDPProxyCommon.h b/Source/UDPProxyCommon.h deleted file mode 100644 index 5035909ee..000000000 --- a/Source/UDPProxyCommon.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/UDPProxyCommon.h" diff --git a/Source/UDPProxyCoordinator.h b/Source/UDPProxyCoordinator.h deleted file mode 100644 index 567013a5a..000000000 --- a/Source/UDPProxyCoordinator.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/UDPProxyCoordinator.h" diff --git a/Source/UDPProxyServer.h b/Source/UDPProxyServer.h deleted file mode 100644 index 72b56bee6..000000000 --- a/Source/UDPProxyServer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/UDPProxyServer.h" diff --git a/Source/VariableDeltaSerializer.h b/Source/VariableDeltaSerializer.h deleted file mode 100644 index a3c1eb090..000000000 --- a/Source/VariableDeltaSerializer.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/VariableDeltaSerializer.h" diff --git a/Source/VariableListDeltaTracker.h b/Source/VariableListDeltaTracker.h deleted file mode 100644 index bcb89ff28..000000000 --- a/Source/VariableListDeltaTracker.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/VariableListDeltaTracker.h" diff --git a/Source/VariadicSQLParser.h b/Source/VariadicSQLParser.h deleted file mode 100644 index a578b91ca..000000000 --- a/Source/VariadicSQLParser.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/VariadicSQLParser.h" diff --git a/Source/VitaIncludes.h b/Source/VitaIncludes.h deleted file mode 100644 index 743677435..000000000 --- a/Source/VitaIncludes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/VitaIncludes.h" diff --git a/Source/WSAStartupSingleton.h b/Source/WSAStartupSingleton.h deleted file mode 100644 index 79c9fd844..000000000 --- a/Source/WSAStartupSingleton.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/WSAStartupSingleton.h" diff --git a/Source/WindowsIncludes.h b/Source/WindowsIncludes.h deleted file mode 100644 index 5e19d7995..000000000 --- a/Source/WindowsIncludes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/WindowsIncludes.h" diff --git a/Source/XBox360Includes.h b/Source/XBox360Includes.h deleted file mode 100644 index c0a11c8fa..000000000 --- a/Source/XBox360Includes.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/XBox360Includes.h" diff --git a/Source/_FindFirst.h b/Source/_FindFirst.h deleted file mode 100644 index 7ea2e5d75..000000000 --- a/Source/_FindFirst.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/_FindFirst.h" diff --git a/Source/gettimeofday.h b/Source/gettimeofday.h deleted file mode 100644 index a371182fe..000000000 --- a/Source/gettimeofday.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ -#include "include/slikenet/gettimeofday.h" diff --git a/Source/include/slikenet/MessageIdentifiers.h b/Source/include/slikenet/MessageIdentifiers.h index c4ac868af..640b77dc7 100644 --- a/Source/include/slikenet/MessageIdentifiers.h +++ b/Source/include/slikenet/MessageIdentifiers.h @@ -61,7 +61,7 @@ enum DefaultMessageIDTypes // /// These types are never returned to the user. /// Ping from a connected system. Update timestamps (internal use only) - ID_CONNECTED_PING, + ID_CONNECTED_PING, /// Ping from an unconnected system. Reply but do not update timestamps. (internal use only) ID_UNCONNECTED_PING, /// Ping from an unconnected system. Only reply if we have open connections. Do not update timestamps. (internal use only) diff --git a/Source/include/slikenet/defineoverrides.h b/Source/include/slikenet/defineoverrides.h index f3e874fe4..30fb8bf68 100644 --- a/Source/include/slikenet/defineoverrides.h +++ b/Source/include/slikenet/defineoverrides.h @@ -10,3 +10,10 @@ // USER EDITABLE FILE +#define __GET_TIME_64BIT 0 +#define USE_SLIDING_WINDOW_CONGESTION_CONTROL 1 +//#define RAKNET_SUPPORT_IPV6 1 +#define RAKSTRING_TYPE_IS_UNICODE 0 +#define RAKPEER_USER_THREADED 0 +// 100MB +#define SLNET_MAX_RETRIEVABLE_FILESIZE (0x06400000) diff --git a/Source/include/slikenet/defines.h b/Source/include/slikenet/defines.h index d322d2e05..c59649fd0 100644 --- a/Source/include/slikenet/defines.h +++ b/Source/include/slikenet/defines.h @@ -49,12 +49,6 @@ #endif // SWIG #endif // _FILE_AND_LINE_ -/// Define RAKNET_COMPATIBILITY to enable API compatibility with RakNet. -/// This allows you to keep existing code which was compatible with RakNet 4.082 unmodified and -/// use SLikeNet as an in-place replacement for the RakNet library without having to modify any -/// of your code. -// #define RAKNET_COMPATIBILITY - /// Define __BITSTREAM_NATIVE_END to NOT support endian swapping in the BitStream class. This is faster and is what you should use /// unless you actually plan to have different endianness systems connect to each other /// Enabled by default. @@ -132,7 +126,7 @@ #endif /// This is the maximum number of reliable user messages that can be on the wire at a time -/// If this is too low, then high ping connections with a large throughput will be underutilized +/// If this is too low, then high ping connections with a large throughput will be underutilised /// This will be evident because RakNetStatistics::messagesInSend buffer will increase over time, yet at the same time the outgoing bandwidth per second is less than your connection supports #ifndef RESEND_BUFFER_ARRAY_LENGTH #define RESEND_BUFFER_ARRAY_LENGTH 512 @@ -220,13 +214,4 @@ #define SLNET_MAX_RETRIEVABLE_FILESIZE (0xFFFFFFFF) #endif -// #blocker_2_0 - remove RAKNET_COMPATIBILITY -#ifdef RAKNET_COMPATIBILITY -// note: we cannot use namespace aliases here since we need to ensure ABI compatibility with shared libraries/DLLs -// if we'd use a namespace alias, the names in the DLLs would still point to the actual namespace (SLNet) rather -// than the alias namespace and old apps would not be able to use the DLL as an in-place replacement -// hence, go with a simple preprocessor macro which will replace the SLNet namespace names with RakNet -#define SLNet RakNet -#endif - #endif // __RAKNET_DEFINES_H diff --git a/Source/include/slikenet/types.h b/Source/include/slikenet/types.h index ed4e3e209..700718991 100644 --- a/Source/include/slikenet/types.h +++ b/Source/include/slikenet/types.h @@ -407,7 +407,7 @@ typedef uint64_t NetworkID; /// This represents a user message from another system. struct Packet { - /// The system that send this packet. + /// The system that sent this packet. SystemAddress systemAddress; /// A unique identifier for the system that sent this packet, regardless of IP address (internal / external / remote system) diff --git a/Source/slikenet/AutopatcherPatchContext.h b/Source/slikenet/AutopatcherPatchContext.h deleted file mode 100644 index ac00df49f..000000000 --- a/Source/slikenet/AutopatcherPatchContext.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/AutopatcherPatchContext.h" diff --git a/Source/slikenet/AutopatcherRepositoryInterface.h b/Source/slikenet/AutopatcherRepositoryInterface.h deleted file mode 100644 index cd1fa3414..000000000 --- a/Source/slikenet/AutopatcherRepositoryInterface.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/AutopatcherRepositoryInterface.h" diff --git a/Source/slikenet/Base64Encoder.h b/Source/slikenet/Base64Encoder.h deleted file mode 100644 index 5e3ffde09..000000000 --- a/Source/slikenet/Base64Encoder.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Base64Encoder.h" diff --git a/Source/slikenet/BitStream.h b/Source/slikenet/BitStream.h deleted file mode 100644 index 099f57d8a..000000000 --- a/Source/slikenet/BitStream.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/BitStream.h" diff --git a/Source/slikenet/CCRakNetSlidingWindow.h b/Source/slikenet/CCRakNetSlidingWindow.h deleted file mode 100644 index 2818f6b37..000000000 --- a/Source/slikenet/CCRakNetSlidingWindow.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/CCRakNetSlidingWindow.h" diff --git a/Source/slikenet/CCRakNetUDT.h b/Source/slikenet/CCRakNetUDT.h deleted file mode 100644 index d054c0f24..000000000 --- a/Source/slikenet/CCRakNetUDT.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/CCRakNetUDT.h" diff --git a/Source/slikenet/CheckSum.h b/Source/slikenet/CheckSum.h deleted file mode 100644 index a018e4b66..000000000 --- a/Source/slikenet/CheckSum.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/CheckSum.h" diff --git a/Source/slikenet/CloudClient.h b/Source/slikenet/CloudClient.h deleted file mode 100644 index 45e612157..000000000 --- a/Source/slikenet/CloudClient.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/CloudClient.h" diff --git a/Source/slikenet/CloudCommon.h b/Source/slikenet/CloudCommon.h deleted file mode 100644 index 82cc4cc67..000000000 --- a/Source/slikenet/CloudCommon.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/CloudCommon.h" diff --git a/Source/slikenet/CloudServer.h b/Source/slikenet/CloudServer.h deleted file mode 100644 index 99b5cba67..000000000 --- a/Source/slikenet/CloudServer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/CloudServer.h" diff --git a/Source/slikenet/CommandParserInterface.h b/Source/slikenet/CommandParserInterface.h deleted file mode 100644 index 8c1dfe09f..000000000 --- a/Source/slikenet/CommandParserInterface.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/CommandParserInterface.h" diff --git a/Source/slikenet/ConnectionGraph2.h b/Source/slikenet/ConnectionGraph2.h deleted file mode 100644 index 68fada8b5..000000000 --- a/Source/slikenet/ConnectionGraph2.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ConnectionGraph2.h" diff --git a/Source/slikenet/ConsoleServer.h b/Source/slikenet/ConsoleServer.h deleted file mode 100644 index e9e95f3c6..000000000 --- a/Source/slikenet/ConsoleServer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ConsoleServer.h" diff --git a/Source/slikenet/DR_SHA1.h b/Source/slikenet/DR_SHA1.h deleted file mode 100644 index c9ee06e95..000000000 --- a/Source/slikenet/DR_SHA1.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DR_SHA1.h" diff --git a/Source/slikenet/DS_BPlusTree.h b/Source/slikenet/DS_BPlusTree.h deleted file mode 100644 index fbf773bf0..000000000 --- a/Source/slikenet/DS_BPlusTree.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_BPlusTree.h" diff --git a/Source/slikenet/DS_BinarySearchTree.h b/Source/slikenet/DS_BinarySearchTree.h deleted file mode 100644 index eb1786149..000000000 --- a/Source/slikenet/DS_BinarySearchTree.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_BinarySearchTree.h" diff --git a/Source/slikenet/DS_BytePool.h b/Source/slikenet/DS_BytePool.h deleted file mode 100644 index d9ea39956..000000000 --- a/Source/slikenet/DS_BytePool.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_BytePool.h" diff --git a/Source/slikenet/DS_ByteQueue.h b/Source/slikenet/DS_ByteQueue.h deleted file mode 100644 index 261de2f9b..000000000 --- a/Source/slikenet/DS_ByteQueue.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_ByteQueue.h" diff --git a/Source/slikenet/DS_Hash.h b/Source/slikenet/DS_Hash.h deleted file mode 100644 index 89b34a833..000000000 --- a/Source/slikenet/DS_Hash.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_Hash.h" diff --git a/Source/slikenet/DS_Heap.h b/Source/slikenet/DS_Heap.h deleted file mode 100644 index b17f2e530..000000000 --- a/Source/slikenet/DS_Heap.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_Heap.h" diff --git a/Source/slikenet/DS_HuffmanEncodingTree.h b/Source/slikenet/DS_HuffmanEncodingTree.h deleted file mode 100644 index 02c424773..000000000 --- a/Source/slikenet/DS_HuffmanEncodingTree.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_HuffmanEncodingTree.h" diff --git a/Source/slikenet/DS_HuffmanEncodingTreeFactory.h b/Source/slikenet/DS_HuffmanEncodingTreeFactory.h deleted file mode 100644 index 3747242a0..000000000 --- a/Source/slikenet/DS_HuffmanEncodingTreeFactory.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_HuffmanEncodingTreeFactory.h" diff --git a/Source/slikenet/DS_HuffmanEncodingTreeNode.h b/Source/slikenet/DS_HuffmanEncodingTreeNode.h deleted file mode 100644 index 30c6ffafe..000000000 --- a/Source/slikenet/DS_HuffmanEncodingTreeNode.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_HuffmanEncodingTreeNode.h" diff --git a/Source/slikenet/DS_LinkedList.h b/Source/slikenet/DS_LinkedList.h deleted file mode 100644 index 7c7090638..000000000 --- a/Source/slikenet/DS_LinkedList.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_LinkedList.h" diff --git a/Source/slikenet/DS_List.h b/Source/slikenet/DS_List.h deleted file mode 100644 index 394a955bc..000000000 --- a/Source/slikenet/DS_List.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_List.h" diff --git a/Source/slikenet/DS_Map.h b/Source/slikenet/DS_Map.h deleted file mode 100644 index f8c7cd84c..000000000 --- a/Source/slikenet/DS_Map.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_Map.h" diff --git a/Source/slikenet/DS_MemoryPool.h b/Source/slikenet/DS_MemoryPool.h deleted file mode 100644 index af3594737..000000000 --- a/Source/slikenet/DS_MemoryPool.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_MemoryPool.h" diff --git a/Source/slikenet/DS_Multilist.h b/Source/slikenet/DS_Multilist.h deleted file mode 100644 index e9162475f..000000000 --- a/Source/slikenet/DS_Multilist.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_Multilist.h" diff --git a/Source/slikenet/DS_OrderedChannelHeap.h b/Source/slikenet/DS_OrderedChannelHeap.h deleted file mode 100644 index 9e17c6709..000000000 --- a/Source/slikenet/DS_OrderedChannelHeap.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_OrderedChannelHeap.h" diff --git a/Source/slikenet/DS_OrderedList.h b/Source/slikenet/DS_OrderedList.h deleted file mode 100644 index 680b3b51c..000000000 --- a/Source/slikenet/DS_OrderedList.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_OrderedList.h" diff --git a/Source/slikenet/DS_Queue.h b/Source/slikenet/DS_Queue.h deleted file mode 100644 index 16c575a6e..000000000 --- a/Source/slikenet/DS_Queue.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_Queue.h" diff --git a/Source/slikenet/DS_QueueLinkedList.h b/Source/slikenet/DS_QueueLinkedList.h deleted file mode 100644 index 999d9e2ca..000000000 --- a/Source/slikenet/DS_QueueLinkedList.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_QueueLinkedList.h" diff --git a/Source/slikenet/DS_RangeList.h b/Source/slikenet/DS_RangeList.h deleted file mode 100644 index 84ea6f9f2..000000000 --- a/Source/slikenet/DS_RangeList.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_RangeList.h" diff --git a/Source/slikenet/DS_Table.h b/Source/slikenet/DS_Table.h deleted file mode 100644 index e5e88fd91..000000000 --- a/Source/slikenet/DS_Table.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_Table.h" diff --git a/Source/slikenet/DS_ThreadsafeAllocatingQueue.h b/Source/slikenet/DS_ThreadsafeAllocatingQueue.h deleted file mode 100644 index 68f7866be..000000000 --- a/Source/slikenet/DS_ThreadsafeAllocatingQueue.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_ThreadsafeAllocatingQueue.h" diff --git a/Source/slikenet/DS_Tree.h b/Source/slikenet/DS_Tree.h deleted file mode 100644 index 0eb139231..000000000 --- a/Source/slikenet/DS_Tree.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_Tree.h" diff --git a/Source/slikenet/DS_WeightedGraph.h b/Source/slikenet/DS_WeightedGraph.h deleted file mode 100644 index f3b196b12..000000000 --- a/Source/slikenet/DS_WeightedGraph.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DS_WeightedGraph.h" diff --git a/Source/slikenet/DataCompressor.h b/Source/slikenet/DataCompressor.h deleted file mode 100644 index d13fcac9d..000000000 --- a/Source/slikenet/DataCompressor.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DataCompressor.h" diff --git a/Source/slikenet/DirectoryDeltaTransfer.h b/Source/slikenet/DirectoryDeltaTransfer.h deleted file mode 100644 index 6f6b0dab8..000000000 --- a/Source/slikenet/DirectoryDeltaTransfer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DirectoryDeltaTransfer.h" diff --git a/Source/slikenet/DynDNS.h b/Source/slikenet/DynDNS.h deleted file mode 100644 index 67cf17a7c..000000000 --- a/Source/slikenet/DynDNS.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/DynDNS.h" diff --git a/Source/slikenet/EmailSender.h b/Source/slikenet/EmailSender.h deleted file mode 100644 index 869672c07..000000000 --- a/Source/slikenet/EmailSender.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/EmailSender.h" diff --git a/Source/slikenet/EmptyHeader.h b/Source/slikenet/EmptyHeader.h deleted file mode 100644 index 5539b664d..000000000 --- a/Source/slikenet/EmptyHeader.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/EmptyHeader.h" diff --git a/Source/slikenet/EpochTimeToString.h b/Source/slikenet/EpochTimeToString.h deleted file mode 100644 index 660b9a732..000000000 --- a/Source/slikenet/EpochTimeToString.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/EpochTimeToString.h" diff --git a/Source/slikenet/Export.h b/Source/slikenet/Export.h deleted file mode 100644 index 408bd58ae..000000000 --- a/Source/slikenet/Export.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Export.h" diff --git a/Source/slikenet/FileList.h b/Source/slikenet/FileList.h deleted file mode 100644 index e542d485a..000000000 --- a/Source/slikenet/FileList.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/FileList.h" diff --git a/Source/slikenet/FileListNodeContext.h b/Source/slikenet/FileListNodeContext.h deleted file mode 100644 index 6cc268c74..000000000 --- a/Source/slikenet/FileListNodeContext.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/FileListNodeContext.h" diff --git a/Source/slikenet/FileListTransfer.h b/Source/slikenet/FileListTransfer.h deleted file mode 100644 index a6d7d685e..000000000 --- a/Source/slikenet/FileListTransfer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/FileListTransfer.h" diff --git a/Source/slikenet/FileListTransferCBInterface.h b/Source/slikenet/FileListTransferCBInterface.h deleted file mode 100644 index d3d5334cf..000000000 --- a/Source/slikenet/FileListTransferCBInterface.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/FileListTransferCBInterface.h" diff --git a/Source/slikenet/FileOperations.h b/Source/slikenet/FileOperations.h deleted file mode 100644 index 2d926a97d..000000000 --- a/Source/slikenet/FileOperations.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/FileOperations.h" diff --git a/Source/slikenet/FormatString.h b/Source/slikenet/FormatString.h deleted file mode 100644 index 3377fee59..000000000 --- a/Source/slikenet/FormatString.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/FormatString.h" diff --git a/Source/slikenet/FullyConnectedMesh2.h b/Source/slikenet/FullyConnectedMesh2.h deleted file mode 100644 index 556774ddd..000000000 --- a/Source/slikenet/FullyConnectedMesh2.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/FullyConnectedMesh2.h" diff --git a/Source/slikenet/GetTime.h b/Source/slikenet/GetTime.h deleted file mode 100644 index 77171eb1d..000000000 --- a/Source/slikenet/GetTime.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/GetTime.h" diff --git a/Source/slikenet/Getche.h b/Source/slikenet/Getche.h deleted file mode 100644 index 7bdcc29e8..000000000 --- a/Source/slikenet/Getche.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Getche.h" diff --git a/Source/slikenet/Gets.h b/Source/slikenet/Gets.h deleted file mode 100644 index c2b2bbbc5..000000000 --- a/Source/slikenet/Gets.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Gets.h" diff --git a/Source/slikenet/GridSectorizer.h b/Source/slikenet/GridSectorizer.h deleted file mode 100644 index ac219b8ff..000000000 --- a/Source/slikenet/GridSectorizer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/GridSectorizer.h" diff --git a/Source/slikenet/HTTPConnection.h b/Source/slikenet/HTTPConnection.h deleted file mode 100644 index ecd7d1633..000000000 --- a/Source/slikenet/HTTPConnection.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/HTTPConnection.h" diff --git a/Source/slikenet/HTTPConnection2.h b/Source/slikenet/HTTPConnection2.h deleted file mode 100644 index d8c809de1..000000000 --- a/Source/slikenet/HTTPConnection2.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/HTTPConnection2.h" diff --git a/Source/slikenet/IncrementalReadInterface.h b/Source/slikenet/IncrementalReadInterface.h deleted file mode 100644 index 6558d5e1a..000000000 --- a/Source/slikenet/IncrementalReadInterface.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/IncrementalReadInterface.h" diff --git a/Source/slikenet/InternalPacket.h b/Source/slikenet/InternalPacket.h deleted file mode 100644 index 2498503dd..000000000 --- a/Source/slikenet/InternalPacket.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/InternalPacket.h" diff --git a/Source/slikenet/Itoa.h b/Source/slikenet/Itoa.h deleted file mode 100644 index 38f327d86..000000000 --- a/Source/slikenet/Itoa.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Itoa.h" diff --git a/Source/slikenet/Kbhit.h b/Source/slikenet/Kbhit.h deleted file mode 100644 index 25e7beba5..000000000 --- a/Source/slikenet/Kbhit.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Kbhit.h" diff --git a/Source/slikenet/LinuxStrings.h b/Source/slikenet/LinuxStrings.h deleted file mode 100644 index 02f86cb6a..000000000 --- a/Source/slikenet/LinuxStrings.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/LinuxStrings.h" diff --git a/Source/slikenet/LocklessTypes.h b/Source/slikenet/LocklessTypes.h deleted file mode 100644 index c40950706..000000000 --- a/Source/slikenet/LocklessTypes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/LocklessTypes.h" diff --git a/Source/slikenet/LogCommandParser.h b/Source/slikenet/LogCommandParser.h deleted file mode 100644 index a56df020c..000000000 --- a/Source/slikenet/LogCommandParser.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/LogCommandParser.h" diff --git a/Source/slikenet/MTUSize.h b/Source/slikenet/MTUSize.h deleted file mode 100644 index a1880ddc0..000000000 --- a/Source/slikenet/MTUSize.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/MTUSize.h" diff --git a/Source/slikenet/MessageFilter.h b/Source/slikenet/MessageFilter.h deleted file mode 100644 index 56dd4d3db..000000000 --- a/Source/slikenet/MessageFilter.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/MessageFilter.h" diff --git a/Source/slikenet/MessageIdentifiers.h b/Source/slikenet/MessageIdentifiers.h deleted file mode 100644 index 30c066f8e..000000000 --- a/Source/slikenet/MessageIdentifiers.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/MessageIdentifiers.h" diff --git a/Source/slikenet/NatPunchthroughClient.h b/Source/slikenet/NatPunchthroughClient.h deleted file mode 100644 index 7dc584db2..000000000 --- a/Source/slikenet/NatPunchthroughClient.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NatPunchthroughClient.h" diff --git a/Source/slikenet/NatPunchthroughServer.h b/Source/slikenet/NatPunchthroughServer.h deleted file mode 100644 index 8bd234c16..000000000 --- a/Source/slikenet/NatPunchthroughServer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NatPunchthroughServer.h" diff --git a/Source/slikenet/NatTypeDetectionClient.h b/Source/slikenet/NatTypeDetectionClient.h deleted file mode 100644 index b817b5abc..000000000 --- a/Source/slikenet/NatTypeDetectionClient.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NatTypeDetectionClient.h" diff --git a/Source/slikenet/NatTypeDetectionCommon.h b/Source/slikenet/NatTypeDetectionCommon.h deleted file mode 100644 index f9b547a57..000000000 --- a/Source/slikenet/NatTypeDetectionCommon.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NatTypeDetectionCommon.h" diff --git a/Source/slikenet/NatTypeDetectionServer.h b/Source/slikenet/NatTypeDetectionServer.h deleted file mode 100644 index 398f467ce..000000000 --- a/Source/slikenet/NatTypeDetectionServer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NatTypeDetectionServer.h" diff --git a/Source/slikenet/NativeFeatureIncludes.h b/Source/slikenet/NativeFeatureIncludes.h deleted file mode 100644 index e33a1d20a..000000000 --- a/Source/slikenet/NativeFeatureIncludes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NativeFeatureIncludes.h" diff --git a/Source/slikenet/NativeFeatureIncludesOverrides.h b/Source/slikenet/NativeFeatureIncludesOverrides.h deleted file mode 100644 index 53aad32e6..000000000 --- a/Source/slikenet/NativeFeatureIncludesOverrides.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NativeFeatureIncludesOverrides.h" diff --git a/Source/slikenet/NativeTypes.h b/Source/slikenet/NativeTypes.h deleted file mode 100644 index b8acc9a56..000000000 --- a/Source/slikenet/NativeTypes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NativeTypes.h" diff --git a/Source/slikenet/NetworkIDManager.h b/Source/slikenet/NetworkIDManager.h deleted file mode 100644 index 39b425b84..000000000 --- a/Source/slikenet/NetworkIDManager.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NetworkIDManager.h" diff --git a/Source/slikenet/NetworkIDObject.h b/Source/slikenet/NetworkIDObject.h deleted file mode 100644 index 8fd46c92d..000000000 --- a/Source/slikenet/NetworkIDObject.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/NetworkIDObject.h" diff --git a/Source/slikenet/PS3Includes.h b/Source/slikenet/PS3Includes.h deleted file mode 100644 index 97bdf5e74..000000000 --- a/Source/slikenet/PS3Includes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PS3Includes.h" diff --git a/Source/slikenet/PS4Includes.h b/Source/slikenet/PS4Includes.h deleted file mode 100644 index 6bde968ae..000000000 --- a/Source/slikenet/PS4Includes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PS4Includes.h" diff --git a/Source/slikenet/PacketConsoleLogger.h b/Source/slikenet/PacketConsoleLogger.h deleted file mode 100644 index 6b7552ec9..000000000 --- a/Source/slikenet/PacketConsoleLogger.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PacketConsoleLogger.h" diff --git a/Source/slikenet/PacketFileLogger.h b/Source/slikenet/PacketFileLogger.h deleted file mode 100644 index 3fddae17e..000000000 --- a/Source/slikenet/PacketFileLogger.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PacketFileLogger.h" diff --git a/Source/slikenet/PacketLogger.h b/Source/slikenet/PacketLogger.h deleted file mode 100644 index 3154c10f6..000000000 --- a/Source/slikenet/PacketLogger.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PacketLogger.h" diff --git a/Source/slikenet/PacketOutputWindowLogger.h b/Source/slikenet/PacketOutputWindowLogger.h deleted file mode 100644 index 2a40fc9c1..000000000 --- a/Source/slikenet/PacketOutputWindowLogger.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PacketOutputWindowLogger.h" diff --git a/Source/slikenet/PacketPool.h b/Source/slikenet/PacketPool.h deleted file mode 100644 index c812a2228..000000000 --- a/Source/slikenet/PacketPool.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PacketPool.h" diff --git a/Source/slikenet/PacketPriority.h b/Source/slikenet/PacketPriority.h deleted file mode 100644 index 2ec706d1a..000000000 --- a/Source/slikenet/PacketPriority.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PacketPriority.h" diff --git a/Source/slikenet/PacketizedTCP.h b/Source/slikenet/PacketizedTCP.h deleted file mode 100644 index b2393cbad..000000000 --- a/Source/slikenet/PacketizedTCP.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PacketizedTCP.h" diff --git a/Source/slikenet/PluginInterface2.h b/Source/slikenet/PluginInterface2.h deleted file mode 100644 index 92efafa3a..000000000 --- a/Source/slikenet/PluginInterface2.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/PluginInterface2.h" diff --git a/Source/slikenet/RPC4Plugin.h b/Source/slikenet/RPC4Plugin.h deleted file mode 100644 index 152e2dedc..000000000 --- a/Source/slikenet/RPC4Plugin.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/RPC4Plugin.h" diff --git a/Source/slikenet/Rackspace.h b/Source/slikenet/Rackspace.h deleted file mode 100644 index 53527b287..000000000 --- a/Source/slikenet/Rackspace.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Rackspace.h" diff --git a/Source/slikenet/Rand.h b/Source/slikenet/Rand.h deleted file mode 100644 index a04bef662..000000000 --- a/Source/slikenet/Rand.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Rand.h" diff --git a/Source/slikenet/RandSync.h b/Source/slikenet/RandSync.h deleted file mode 100644 index d89dbcee1..000000000 --- a/Source/slikenet/RandSync.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/RandSync.h" diff --git a/Source/slikenet/ReadyEvent.h b/Source/slikenet/ReadyEvent.h deleted file mode 100644 index 625129e87..000000000 --- a/Source/slikenet/ReadyEvent.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ReadyEvent.h" diff --git a/Source/slikenet/RefCountedObj.h b/Source/slikenet/RefCountedObj.h deleted file mode 100644 index 53c0c0e37..000000000 --- a/Source/slikenet/RefCountedObj.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/RefCountedObj.h" diff --git a/Source/slikenet/RelayPlugin.h b/Source/slikenet/RelayPlugin.h deleted file mode 100644 index afa3fe11e..000000000 --- a/Source/slikenet/RelayPlugin.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/RelayPlugin.h" diff --git a/Source/slikenet/ReliabilityLayer.h b/Source/slikenet/ReliabilityLayer.h deleted file mode 100644 index 4d3531840..000000000 --- a/Source/slikenet/ReliabilityLayer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ReliabilityLayer.h" diff --git a/Source/slikenet/ReplicaEnums.h b/Source/slikenet/ReplicaEnums.h deleted file mode 100644 index 5e1182d1c..000000000 --- a/Source/slikenet/ReplicaEnums.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ReplicaEnums.h" diff --git a/Source/slikenet/ReplicaManager3.h b/Source/slikenet/ReplicaManager3.h deleted file mode 100644 index b37e8fa08..000000000 --- a/Source/slikenet/ReplicaManager3.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ReplicaManager3.h" diff --git a/Source/slikenet/Router2.h b/Source/slikenet/Router2.h deleted file mode 100644 index 7b0b4f51d..000000000 --- a/Source/slikenet/Router2.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/Router2.h" diff --git a/Source/slikenet/SecureHandshake.h b/Source/slikenet/SecureHandshake.h deleted file mode 100644 index dca4422f9..000000000 --- a/Source/slikenet/SecureHandshake.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SecureHandshake.h" diff --git a/Source/slikenet/SendToThread.h b/Source/slikenet/SendToThread.h deleted file mode 100644 index 3935625c4..000000000 --- a/Source/slikenet/SendToThread.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SendToThread.h" diff --git a/Source/slikenet/SignaledEvent.h b/Source/slikenet/SignaledEvent.h deleted file mode 100644 index f0f358a4f..000000000 --- a/Source/slikenet/SignaledEvent.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SignaledEvent.h" diff --git a/Source/slikenet/SimpleMutex.h b/Source/slikenet/SimpleMutex.h deleted file mode 100644 index 10af7ab44..000000000 --- a/Source/slikenet/SimpleMutex.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SimpleMutex.h" diff --git a/Source/slikenet/SimpleTCPServer.h b/Source/slikenet/SimpleTCPServer.h deleted file mode 100644 index 54b72f8ef..000000000 --- a/Source/slikenet/SimpleTCPServer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SimpleTCPServer.h" diff --git a/Source/slikenet/SingleProducerConsumer.h b/Source/slikenet/SingleProducerConsumer.h deleted file mode 100644 index aa820f5c7..000000000 --- a/Source/slikenet/SingleProducerConsumer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SingleProducerConsumer.h" diff --git a/Source/slikenet/SocketDefines.h b/Source/slikenet/SocketDefines.h deleted file mode 100644 index 609ef5573..000000000 --- a/Source/slikenet/SocketDefines.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SocketDefines.h" diff --git a/Source/slikenet/SocketIncludes.h b/Source/slikenet/SocketIncludes.h deleted file mode 100644 index 0c3c2b9e6..000000000 --- a/Source/slikenet/SocketIncludes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SocketIncludes.h" diff --git a/Source/slikenet/SocketLayer.h b/Source/slikenet/SocketLayer.h deleted file mode 100644 index 5620b447d..000000000 --- a/Source/slikenet/SocketLayer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SocketLayer.h" diff --git a/Source/slikenet/StatisticsHistory.h b/Source/slikenet/StatisticsHistory.h deleted file mode 100644 index 96c6e61d0..000000000 --- a/Source/slikenet/StatisticsHistory.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/StatisticsHistory.h" diff --git a/Source/slikenet/StringCompressor.h b/Source/slikenet/StringCompressor.h deleted file mode 100644 index 346f2ff9e..000000000 --- a/Source/slikenet/StringCompressor.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/StringCompressor.h" diff --git a/Source/slikenet/StringTable.h b/Source/slikenet/StringTable.h deleted file mode 100644 index 8ed972eed..000000000 --- a/Source/slikenet/StringTable.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/StringTable.h" diff --git a/Source/slikenet/SuperFastHash.h b/Source/slikenet/SuperFastHash.h deleted file mode 100644 index 8aee1efd9..000000000 --- a/Source/slikenet/SuperFastHash.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/SuperFastHash.h" diff --git a/Source/slikenet/TCPInterface.h b/Source/slikenet/TCPInterface.h deleted file mode 100644 index 527b300b5..000000000 --- a/Source/slikenet/TCPInterface.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/TCPInterface.h" diff --git a/Source/slikenet/TableSerializer.h b/Source/slikenet/TableSerializer.h deleted file mode 100644 index 1922628dc..000000000 --- a/Source/slikenet/TableSerializer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/TableSerializer.h" diff --git a/Source/slikenet/TeamBalancer.h b/Source/slikenet/TeamBalancer.h deleted file mode 100644 index 99c364200..000000000 --- a/Source/slikenet/TeamBalancer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/TeamBalancer.h" diff --git a/Source/slikenet/TeamManager.h b/Source/slikenet/TeamManager.h deleted file mode 100644 index b7041434c..000000000 --- a/Source/slikenet/TeamManager.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/TeamManager.h" diff --git a/Source/slikenet/TelnetTransport.h b/Source/slikenet/TelnetTransport.h deleted file mode 100644 index 4895fca83..000000000 --- a/Source/slikenet/TelnetTransport.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/TelnetTransport.h" diff --git a/Source/slikenet/ThreadPool.h b/Source/slikenet/ThreadPool.h deleted file mode 100644 index a4d3f9f19..000000000 --- a/Source/slikenet/ThreadPool.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ThreadPool.h" diff --git a/Source/slikenet/ThreadsafePacketLogger.h b/Source/slikenet/ThreadsafePacketLogger.h deleted file mode 100644 index 14629c4dc..000000000 --- a/Source/slikenet/ThreadsafePacketLogger.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/ThreadsafePacketLogger.h" diff --git a/Source/slikenet/TransportInterface.h b/Source/slikenet/TransportInterface.h deleted file mode 100644 index 78eadae19..000000000 --- a/Source/slikenet/TransportInterface.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/TransportInterface.h" diff --git a/Source/slikenet/TwoWayAuthentication.h b/Source/slikenet/TwoWayAuthentication.h deleted file mode 100644 index 1195e6bd1..000000000 --- a/Source/slikenet/TwoWayAuthentication.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/TwoWayAuthentication.h" diff --git a/Source/slikenet/UDPForwarder.h b/Source/slikenet/UDPForwarder.h deleted file mode 100644 index c3508da58..000000000 --- a/Source/slikenet/UDPForwarder.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/UDPForwarder.h" diff --git a/Source/slikenet/UDPProxyClient.h b/Source/slikenet/UDPProxyClient.h deleted file mode 100644 index d2ed143c0..000000000 --- a/Source/slikenet/UDPProxyClient.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/UDPProxyClient.h" diff --git a/Source/slikenet/UDPProxyCommon.h b/Source/slikenet/UDPProxyCommon.h deleted file mode 100644 index ffff01738..000000000 --- a/Source/slikenet/UDPProxyCommon.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/UDPProxyCommon.h" diff --git a/Source/slikenet/UDPProxyCoordinator.h b/Source/slikenet/UDPProxyCoordinator.h deleted file mode 100644 index d982c7d07..000000000 --- a/Source/slikenet/UDPProxyCoordinator.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/UDPProxyCoordinator.h" diff --git a/Source/slikenet/UDPProxyServer.h b/Source/slikenet/UDPProxyServer.h deleted file mode 100644 index 18af69025..000000000 --- a/Source/slikenet/UDPProxyServer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/UDPProxyServer.h" diff --git a/Source/slikenet/VariableDeltaSerializer.h b/Source/slikenet/VariableDeltaSerializer.h deleted file mode 100644 index 4443e350a..000000000 --- a/Source/slikenet/VariableDeltaSerializer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/VariableDeltaSerializer.h" diff --git a/Source/slikenet/VariableListDeltaTracker.h b/Source/slikenet/VariableListDeltaTracker.h deleted file mode 100644 index 4f23dde5c..000000000 --- a/Source/slikenet/VariableListDeltaTracker.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/VariableListDeltaTracker.h" diff --git a/Source/slikenet/VariadicSQLParser.h b/Source/slikenet/VariadicSQLParser.h deleted file mode 100644 index 752e5cbb7..000000000 --- a/Source/slikenet/VariadicSQLParser.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/VariadicSQLParser.h" diff --git a/Source/slikenet/VitaIncludes.h b/Source/slikenet/VitaIncludes.h deleted file mode 100644 index f54fd36d8..000000000 --- a/Source/slikenet/VitaIncludes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017-2018, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/VitaIncludes.h" diff --git a/Source/slikenet/WSAStartupSingleton.h b/Source/slikenet/WSAStartupSingleton.h deleted file mode 100644 index 417659b43..000000000 --- a/Source/slikenet/WSAStartupSingleton.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/WSAStartupSingleton.h" diff --git a/Source/slikenet/WindowsIncludes.h b/Source/slikenet/WindowsIncludes.h deleted file mode 100644 index 133c881de..000000000 --- a/Source/slikenet/WindowsIncludes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/WindowsIncludes.h" diff --git a/Source/slikenet/XBox360Includes.h b/Source/slikenet/XBox360Includes.h deleted file mode 100644 index b2dc0dcd9..000000000 --- a/Source/slikenet/XBox360Includes.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/XBox360Includes.h" diff --git a/Source/slikenet/_FindFirst.h b/Source/slikenet/_FindFirst.h deleted file mode 100644 index f8572e704..000000000 --- a/Source/slikenet/_FindFirst.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/_FindFirst.h" diff --git a/Source/slikenet/alloca.h b/Source/slikenet/alloca.h deleted file mode 100644 index b20f45a6a..000000000 --- a/Source/slikenet/alloca.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/alloca.h" diff --git a/Source/slikenet/assert.h b/Source/slikenet/assert.h deleted file mode 100644 index 7462cf0e0..000000000 --- a/Source/slikenet/assert.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/assert.h" diff --git a/Source/slikenet/commandparser.h b/Source/slikenet/commandparser.h deleted file mode 100644 index bc04fe92f..000000000 --- a/Source/slikenet/commandparser.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/commandparser.h" diff --git a/Source/slikenet/defineoverrides.h b/Source/slikenet/defineoverrides.h deleted file mode 100644 index 9e2ff1818..000000000 --- a/Source/slikenet/defineoverrides.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/defineoverrides.h" diff --git a/Source/slikenet/defines.h b/Source/slikenet/defines.h deleted file mode 100644 index a152bca13..000000000 --- a/Source/slikenet/defines.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/defines.h" diff --git a/Source/slikenet/gettimeofday.h b/Source/slikenet/gettimeofday.h deleted file mode 100644 index 649526fad..000000000 --- a/Source/slikenet/gettimeofday.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/gettimeofday.h" diff --git a/Source/slikenet/linux_adapter.h b/Source/slikenet/linux_adapter.h deleted file mode 100644 index d4ef2f5d0..000000000 --- a/Source/slikenet/linux_adapter.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/linux_adapter.h" diff --git a/Source/slikenet/memoryoverride.h b/Source/slikenet/memoryoverride.h deleted file mode 100644 index da4a104c4..000000000 --- a/Source/slikenet/memoryoverride.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/memoryoverride.h" diff --git a/Source/slikenet/osx_adapter.h b/Source/slikenet/osx_adapter.h deleted file mode 100644 index 350f514b4..000000000 --- a/Source/slikenet/osx_adapter.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/osx_adapter.h" diff --git a/Source/slikenet/peer.h b/Source/slikenet/peer.h deleted file mode 100644 index 0f2cdde2e..000000000 --- a/Source/slikenet/peer.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/peer.h" diff --git a/Source/slikenet/peerinterface.h b/Source/slikenet/peerinterface.h deleted file mode 100644 index f6d08171c..000000000 --- a/Source/slikenet/peerinterface.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/peerinterface.h" diff --git a/Source/slikenet/sleep.h b/Source/slikenet/sleep.h deleted file mode 100644 index 3a1dc4a4e..000000000 --- a/Source/slikenet/sleep.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/sleep.h" diff --git a/Source/slikenet/smartptr.h b/Source/slikenet/smartptr.h deleted file mode 100644 index efe379237..000000000 --- a/Source/slikenet/smartptr.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/smartptr.h" diff --git a/Source/slikenet/socket.h b/Source/slikenet/socket.h deleted file mode 100644 index db7305ce1..000000000 --- a/Source/slikenet/socket.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/socket.h" diff --git a/Source/slikenet/socket2.h b/Source/slikenet/socket2.h deleted file mode 100644 index b97dbce19..000000000 --- a/Source/slikenet/socket2.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/socket2.h" diff --git a/Source/slikenet/statistics.h b/Source/slikenet/statistics.h deleted file mode 100644 index 3c4d74745..000000000 --- a/Source/slikenet/statistics.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/statistics.h" diff --git a/Source/slikenet/string.h b/Source/slikenet/string.h deleted file mode 100644 index 06e2ea06b..000000000 --- a/Source/slikenet/string.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/string.h" diff --git a/Source/slikenet/thread.h b/Source/slikenet/thread.h deleted file mode 100644 index 41c364d1f..000000000 --- a/Source/slikenet/thread.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/thread.h" diff --git a/Source/slikenet/time.h b/Source/slikenet/time.h deleted file mode 100644 index e4eb76b80..000000000 --- a/Source/slikenet/time.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/time.h" diff --git a/Source/slikenet/transport2.h b/Source/slikenet/transport2.h deleted file mode 100644 index 92716a464..000000000 --- a/Source/slikenet/transport2.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/transport2.h" diff --git a/Source/slikenet/types.h b/Source/slikenet/types.h deleted file mode 100644 index 7560f6a4c..000000000 --- a/Source/slikenet/types.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/types.h" diff --git a/Source/slikenet/version.h b/Source/slikenet/version.h deleted file mode 100644 index a5aa41831..000000000 --- a/Source/slikenet/version.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/version.h" diff --git a/Source/slikenet/wstring.h b/Source/slikenet/wstring.h deleted file mode 100644 index b193f551c..000000000 --- a/Source/slikenet/wstring.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt) - * - * This source code is licensed under the MIT-style license found in the - * license.txt file in the root directory of this source tree. - * - * - * Header file redirection to keep source compatibility with RakNet 4.082. - */ - -#include "../include/slikenet/wstring.h" diff --git a/Source/src/RakNetTypes.cpp b/Source/src/RakNetTypes.cpp index 6be39013f..3eb52ba83 100644 --- a/Source/src/RakNetTypes.cpp +++ b/Source/src/RakNetTypes.cpp @@ -628,7 +628,7 @@ bool SystemAddress::FromString(const char *str, char portDelineator, int ipVersi hints.ai_family = AF_INET; else hints.ai_family = AF_UNSPEC; - INT error = getaddrinfo(ipPart, "", &hints, &servinfo); + int error = getaddrinfo(ipPart, "", &hints, &servinfo); if (servinfo==0 && error != 0) { if (ipVersion==6) @@ -787,4 +787,4 @@ namespace SLNet const SystemAddress UNASSIGNED_SYSTEM_ADDRESS; const RakNetGUID UNASSIGNED_RAKNET_GUID((uint64_t)-1); #endif -} \ No newline at end of file +} diff --git a/Source/src/RakPeer.cpp b/Source/src/RakPeer.cpp index 8c8bb0d1e..0cca3c13b 100644 --- a/Source/src/RakPeer.cpp +++ b/Source/src/RakPeer.cpp @@ -5754,7 +5754,12 @@ bool RakPeer::RunUpdateCycle(BitStream &updateBitStream ) else { - int MTUSizeIndex = rcs->requestsMade / (rcs->sendConnectionAttemptCount/NUM_MTU_SIZES); + int MTUSizeIndex = 0; + + if (rcs->sendConnectionAttemptCount/NUM_MTU_SIZES > 0) { + rcs->requestsMade / (rcs->sendConnectionAttemptCount/NUM_MTU_SIZES); + } + if (MTUSizeIndex>=NUM_MTU_SIZES) MTUSizeIndex=NUM_MTU_SIZES-1; rcs->requestsMade++; From 15b2d71fc0d6aab752198de322f715fd6adbb241 Mon Sep 17 00:00:00 2001 From: exuvo Date: Tue, 30 Aug 2022 02:53:27 +0200 Subject: [PATCH 07/11] Fix splitPacketCount vulnerability per issue #60 --- Source/src/ReliabilityLayer.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/src/ReliabilityLayer.cpp b/Source/src/ReliabilityLayer.cpp index e81b02619..3ed69aafb 100644 --- a/Source/src/ReliabilityLayer.cpp +++ b/Source/src/ReliabilityLayer.cpp @@ -2828,10 +2828,14 @@ InternalPacket* ReliabilityLayer::CreateInternalPacketFromBitStream(SLNet::BitSt internalPacket->splitPacketCount=0; } + const int maxPacketSize = 1024 * 1024 * 4; + const int maxPacketSplit = (maxPacketSize + (MINIMUM_MTU_SIZE - 1)) / MINIMUM_MTU_SIZE; + if (readSuccess==false || internalPacket->dataBitLength==0 || internalPacket->reliability>=NUMBER_OF_RELIABILITIES || - internalPacket->orderingChannel>=32 || + internalPacket->orderingChannel>=32 || + internalPacket->splitPacketCount > maxPacketSplit || (hasSplitPacket && (internalPacket->splitPacketIndex >= internalPacket->splitPacketCount))) { // If this assert hits, encoding is garbage From bc42499aa7e2d80509f68f9f0867f2959f053882 Mon Sep 17 00:00:00 2001 From: exuvo Date: Tue, 30 Aug 2022 03:02:27 +0200 Subject: [PATCH 08/11] fixed crash in RakPeer::GetNumberOfAddresses() when the machine has >= 10 IPs (#261). change max_ip limit to 25. Pullrequest #54 --- Source/include/slikenet/defineoverrides.h | 1 + Source/src/RakPeer.cpp | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Source/include/slikenet/defineoverrides.h b/Source/include/slikenet/defineoverrides.h index 30fb8bf68..cfbd8a611 100644 --- a/Source/include/slikenet/defineoverrides.h +++ b/Source/include/slikenet/defineoverrides.h @@ -17,3 +17,4 @@ #define RAKPEER_USER_THREADED 0 // 100MB #define SLNET_MAX_RETRIEVABLE_FILESIZE (0x06400000) +#define MAXIMUM_NUMBER_OF_INTERNAL_IDS 25 diff --git a/Source/src/RakPeer.cpp b/Source/src/RakPeer.cpp index 0cca3c13b..d5462972b 100644 --- a/Source/src/RakPeer.cpp +++ b/Source/src/RakPeer.cpp @@ -2580,19 +2580,19 @@ int RakPeer::GetMTUSize( const SystemAddress target ) const // Description: // Returns the number of IP addresses we have // -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -unsigned int RakPeer::GetNumberOfAddresses( void ) +unsigned int RakPeer::GetNumberOfAddresses(void) { if (IsActive() == false) { FillIPList(); } - for (unsigned int i = 0; i < MAXIMUM_NUMBER_OF_INTERNAL_IDS && ipList[i] != UNASSIGNED_SYSTEM_ADDRESS; i++) { - if (ipList[i] == UNASSIGNED_SYSTEM_ADDRESS) { - return i; // first unassigned address entry found -> end of address list reached - } + int i = 0; + + while (i < MAXIMUM_NUMBER_OF_INTERNAL_IDS && ipList[i] != UNASSIGNED_SYSTEM_ADDRESS) { + i++; } - return MAXIMUM_NUMBER_OF_INTERNAL_IDS; + return i; } // -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- From 78cfc2d25daef96dc75ed51275f3d07fade8ff02 Mon Sep 17 00:00:00 2001 From: exuvo Date: Tue, 30 Aug 2022 03:05:01 +0200 Subject: [PATCH 09/11] Fix memory leak in UDPForwarder. Pullrequest #64 --- Source/include/slikenet/defineoverrides.h | 2 +- Source/src/UDPForwarder.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/include/slikenet/defineoverrides.h b/Source/include/slikenet/defineoverrides.h index cfbd8a611..220b75631 100644 --- a/Source/include/slikenet/defineoverrides.h +++ b/Source/include/slikenet/defineoverrides.h @@ -12,7 +12,7 @@ #define __GET_TIME_64BIT 0 #define USE_SLIDING_WINDOW_CONGESTION_CONTROL 1 -//#define RAKNET_SUPPORT_IPV6 1 +#define RAKNET_SUPPORT_IPV6 1 #define RAKSTRING_TYPE_IS_UNICODE 0 #define RAKPEER_USER_THREADED 0 // 100MB diff --git a/Source/src/UDPForwarder.cpp b/Source/src/UDPForwarder.cpp index 317dc9f8b..075cd5712 100644 --- a/Source/src/UDPForwarder.cpp +++ b/Source/src/UDPForwarder.cpp @@ -519,6 +519,8 @@ void UDPForwarder::UpdateUDPForwarder(void) } } + freeaddrinfo(servinfo); + if (fe->socket==INVALID_SOCKET) sfos.result=UDPFORWARDER_BIND_FAILED; else From d6e14700a133e9b0836121f7e7dc2a81c549c9fd Mon Sep 17 00:00:00 2001 From: exuvo Date: Tue, 30 Aug 2022 03:07:42 +0200 Subject: [PATCH 10/11] Fix missing DLL_EXPORT --- Source/include/slikenet/ReliabilityLayer.h | 2 +- Source/include/slikenet/defineoverrides.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/include/slikenet/ReliabilityLayer.h b/Source/include/slikenet/ReliabilityLayer.h index 355fafa43..0e858aea1 100644 --- a/Source/include/slikenet/ReliabilityLayer.h +++ b/Source/include/slikenet/ReliabilityLayer.h @@ -135,7 +135,7 @@ struct BPSTracker uint64_t GetTotal1(void) const; // uint64_t GetTotal2(void) const; - struct TimeAndValue2 + struct RAK_DLL_EXPORT TimeAndValue2 { TimeAndValue2(); ~TimeAndValue2(); diff --git a/Source/include/slikenet/defineoverrides.h b/Source/include/slikenet/defineoverrides.h index 220b75631..cfbd8a611 100644 --- a/Source/include/slikenet/defineoverrides.h +++ b/Source/include/slikenet/defineoverrides.h @@ -12,7 +12,7 @@ #define __GET_TIME_64BIT 0 #define USE_SLIDING_WINDOW_CONGESTION_CONTROL 1 -#define RAKNET_SUPPORT_IPV6 1 +//#define RAKNET_SUPPORT_IPV6 1 #define RAKSTRING_TYPE_IS_UNICODE 0 #define RAKPEER_USER_THREADED 0 // 100MB From c24e4281aadd5005b477e3f2d0214d0d9fc5c8be Mon Sep 17 00:00:00 2001 From: exuvo Date: Tue, 30 Aug 2022 03:22:10 +0200 Subject: [PATCH 11/11] Fix memory reference error in NatPunchthroughServer and Integer overflow when 2GB data is transfered continuously. Issue #39 --- Source/include/slikenet/CCRakNetSlidingWindow.h | 4 ++-- Source/include/slikenet/ReliabilityLayer.h | 2 +- Source/include/slikenet/defineoverrides.h | 1 + Source/src/CCRakNetSlidingWindow.cpp | 8 ++++---- Source/src/NatPunchthroughServer.cpp | 5 ++++- Source/src/ReliabilityLayer.cpp | 4 ++-- 6 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Source/include/slikenet/CCRakNetSlidingWindow.h b/Source/include/slikenet/CCRakNetSlidingWindow.h index 755161df9..f6ea7e83f 100644 --- a/Source/include/slikenet/CCRakNetSlidingWindow.h +++ b/Source/include/slikenet/CCRakNetSlidingWindow.h @@ -101,8 +101,8 @@ class CCRakNetSlidingWindow /// Update over time void Update(CCTimeType curTime, bool hasDataToSendOrResend); - int GetRetransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend); - int GetTransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend); + int64_t GetRetransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint64_t unacknowledgedBytes, bool isContinuousSend); + int64_t GetTransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint64_t unacknowledgedBytes, bool isContinuousSend); /// Acks do not have to be sent immediately. Instead, they can be buffered up such that groups of acks are sent at a time /// This reduces overall bandwidth usage diff --git a/Source/include/slikenet/ReliabilityLayer.h b/Source/include/slikenet/ReliabilityLayer.h index 0e858aea1..d7afc52fc 100644 --- a/Source/include/slikenet/ReliabilityLayer.h +++ b/Source/include/slikenet/ReliabilityLayer.h @@ -577,7 +577,7 @@ class ReliabilityLayer// #endif - uint32_t unacknowledgedBytes; + uint64_t unacknowledgedBytes; bool ResendBufferOverflow(void) const; void ValidateResendList(void) const; diff --git a/Source/include/slikenet/defineoverrides.h b/Source/include/slikenet/defineoverrides.h index cfbd8a611..f0bb0e5bf 100644 --- a/Source/include/slikenet/defineoverrides.h +++ b/Source/include/slikenet/defineoverrides.h @@ -12,6 +12,7 @@ #define __GET_TIME_64BIT 0 #define USE_SLIDING_WINDOW_CONGESTION_CONTROL 1 +// Randomly fails with: Socket failed test send //#define RAKNET_SUPPORT_IPV6 1 #define RAKSTRING_TYPE_IS_UNICODE 0 #define RAKPEER_USER_THREADED 0 diff --git a/Source/src/CCRakNetSlidingWindow.cpp b/Source/src/CCRakNetSlidingWindow.cpp index 410dad22f..dd08e7b72 100644 --- a/Source/src/CCRakNetSlidingWindow.cpp +++ b/Source/src/CCRakNetSlidingWindow.cpp @@ -63,7 +63,7 @@ void CCRakNetSlidingWindow::Update(CCTimeType curTime, bool hasDataToSendOrResen (void) hasDataToSendOrResend; } // ---------------------------------------------------------------------------------------------------------------------------- -int CCRakNetSlidingWindow::GetRetransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend) { +int64_t CCRakNetSlidingWindow::GetRetransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint64_t unacknowledgedBytes, bool isContinuousSend) { (void) curTime; (void) isContinuousSend; (void) timeSinceLastTick; @@ -71,14 +71,14 @@ int CCRakNetSlidingWindow::GetRetransmissionBandwidth(CCTimeType curTime, CCTime return unacknowledgedBytes; } // ---------------------------------------------------------------------------------------------------------------------------- -int CCRakNetSlidingWindow::GetTransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowledgedBytes, bool isContinuousSend) { +int64_t CCRakNetSlidingWindow::GetTransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint64_t unacknowledgedBytes, bool isContinuousSend) { (void) curTime; (void) timeSinceLastTick; _isContinuousSend=isContinuousSend; - if (unacknowledgedBytes<=cwnd) - return (int) (cwnd-unacknowledgedBytes); + if (unacknowledgedBytes <= cwnd) + return (int64_t) (cwnd - unacknowledgedBytes); else return 0; } diff --git a/Source/src/NatPunchthroughServer.cpp b/Source/src/NatPunchthroughServer.cpp index 705f29bee..dc408d9b2 100644 --- a/Source/src/NatPunchthroughServer.cpp +++ b/Source/src/NatPunchthroughServer.cpp @@ -331,7 +331,10 @@ void NatPunchthroughServer::OnClosedConnection(const SystemAddress &systemAddres if (connectionAttempt->attemptPhase==ConnectionAttempt::NAT_ATTEMPT_PHASE_GETTING_RECENT_PORTS) { otherUser->isReady=true; - freedUpInProgressUsers.Insert(otherUser, _FILE_AND_LINE_ ); + + if (connectionAttempt->sender != user || connectionAttempt->recipient != user) { + freedUpInProgressUsers.Insert(otherUser, _FILE_AND_LINE_ ); + } } otherUser->DeleteConnectionAttempt(connectionAttempt); diff --git a/Source/src/ReliabilityLayer.cpp b/Source/src/ReliabilityLayer.cpp index 3ed69aafb..5a544acea 100644 --- a/Source/src/ReliabilityLayer.cpp +++ b/Source/src/ReliabilityLayer.cpp @@ -1956,8 +1956,8 @@ void ReliabilityLayer::UpdateInternal( RakNetSocket2 *s, SystemAddress &systemAd dhf.hasBAndAS=false; ResetPacketsAndDatagrams(); - int transmissionBandwidth = congestionManager.GetTransmissionBandwidth(time, timeSinceLastTick, unacknowledgedBytes,dhf.isContinuousSend); - int retransmissionBandwidth = congestionManager.GetRetransmissionBandwidth(time, timeSinceLastTick, unacknowledgedBytes,dhf.isContinuousSend); + int64_t transmissionBandwidth = congestionManager.GetTransmissionBandwidth(time, timeSinceLastTick, unacknowledgedBytes,dhf.isContinuousSend); + int64_t retransmissionBandwidth = congestionManager.GetRetransmissionBandwidth(time, timeSinceLastTick, unacknowledgedBytes,dhf.isContinuousSend); if (retransmissionBandwidth>0 || transmissionBandwidth>0) { statistics.isLimitedByCongestionControl=false;