mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-08 03:34:10 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
44
thirdparty/raknet/Source/RakNetDefines.h
vendored
Normal file
44
thirdparty/raknet/Source/RakNetDefines.h
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
/// Define __GET_TIME_64BIT to have RakNetTime use a 64, rather than 32 bit value. A 32 bit value will overflow after about 5 weeks.
|
||||
/// However, this doubles the bandwidth use for sending times, so don't do it unless you have a reason to.
|
||||
/// Disabled by default.
|
||||
// #define __GET_TIME_64BIT
|
||||
|
||||
/// Makes RakNet threadsafe
|
||||
/// Define this if you use the same instance of RakPeer from multiple threads
|
||||
/// Otherwise leave it undefined, since it makes things an order of magnitude slower.
|
||||
/// Disabled by default
|
||||
// #define _RAKNET_THREADSAFE
|
||||
|
||||
/// 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.
|
||||
#define __BITSTREAM_NATIVE_END
|
||||
|
||||
#if defined(_PS3)
|
||||
#undef __BITSTREAM_NATIVE_END
|
||||
#endif
|
||||
|
||||
/// Maximum (stack) size to use with _alloca before using new and delete instead.
|
||||
#define MAX_ALLOCA_STACK_ALLOCATION 1048576
|
||||
|
||||
// Use WaitForSingleObject instead of sleep.
|
||||
// Defining it plays nicer with other systems, and uses less CPU, but gives worse RakNet performance
|
||||
// Undefining it uses more CPU time, but is more responsive and faster.
|
||||
#define USE_WAIT_FOR_MULTIPLE_EVENTS
|
||||
|
||||
/// Uncomment to use RakMemoryOverride for custom memory tracking
|
||||
// #define _USE_RAK_MEMORY_OVERRIDE
|
||||
|
||||
/// If defined, RakNet will automatically try to determine available bandwidth and buffer accordingly (recommended)
|
||||
/// If commented out, you will probably not be able to send large files and will get increased packetloss. However, responsiveness for the first 10 seconds or so will be improved.
|
||||
#define _ENABLE_FLOW_CONTROL
|
||||
|
||||
/// If defined, OpenSSL is enabled for the class TCPInterface
|
||||
/// This is necessary to use the SendEmail class with Google POP servers
|
||||
/// Note that OpenSSL carries its own license restrictions that you should be aware of. If you don't agree, don't enable this define
|
||||
/// This also requires that you enable header search paths to DependentExtensions\openssl-0.9.8g
|
||||
/// #define OPEN_SSL_CLIENT_SUPPORT
|
||||
|
||||
/// Threshold at which to do a malloc / free rather than pushing data onto a fixed stack for the bitstream class
|
||||
/// Arbitrary size, just picking something likely to be larger than most packets
|
||||
#define BITSTREAM_STACK_ALLOCATION_SIZE 1024
|
Reference in New Issue
Block a user