Revert RakNet source files back to the original v2.518 state

* Add RakNet source files to the VS project
This commit is contained in:
RD42
2024-08-16 23:33:48 +08:00
parent 3bad4d20c2
commit bcdbedc0be
166 changed files with 46610 additions and 1598 deletions

View File

@ -1,16 +0,0 @@
// TODO: Implement TEABlockEncryptor.cpp
#include "TEABlockEncryptor.h"
#define TEA_ROUNDS 32
#define TEA_XOR_MASK 0x5E94A3CF
unsigned int TEABlockEncryptor::initObsDelta = (0x9E3779B9 ^ TEA_XOR_MASK);
TEABlockEncryptor::TEABlockEncryptor()
{
initDelta = initObsDelta ^ TEA_XOR_MASK;
initSum = initDelta * TEA_ROUNDS;
keySet = false;
}