mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
This ConVar governs the use of encryption on game packets. Also removed 'net_toggletrace' ConCommand and added 'net_tracePayload' ConVar as we can no longer hook on-demand as we bound the encryption parameter of the function to a ConVar.
15 lines
311 B
C++
15 lines
311 B
C++
#pragma once
|
|
|
|
struct ServerListing
|
|
{
|
|
std::string svServerName;
|
|
std::string svMapName = "mp_rr_canyonlands_staging";
|
|
std::string svIpAddress;
|
|
std::string svPort;
|
|
std::string svPlaylist = "dev_default";
|
|
bool bHidden{};
|
|
std::string svRemoteChecksum;
|
|
std::string svVersion;
|
|
std::string svEncryptionKey;
|
|
};
|