Change 'Enable Authentication' to 'Enable Packet Verification'

This commit is contained in:
Simon Walton 2018-07-24 17:06:09 -07:00
parent d147d17b70
commit 81c8fe6114
2 changed files with 3 additions and 3 deletions

View file

@ -48,8 +48,8 @@
"advanced": true
},
{
"name": "enable_authentication",
"label": "Enable Authentication",
"name": "enable_packet_verification",
"label": "Enable Packet Verification",
"help": "Enable secure checksums on communication that uses the High Fidelity protocol. Increases security with possibly a small performance penalty.",
"default": true,
"type": "checkbox",

View file

@ -630,7 +630,7 @@ bool DomainServer::isPacketVerified(const udt::Packet& packet) {
void DomainServer::setupNodeListAndAssignments() {
const QString CUSTOM_LOCAL_PORT_OPTION = "metaverse.local_port";
static const QString ENABLE_PACKET_AUTHENTICATION = "metaverse.enable_authentication";
static const QString ENABLE_PACKET_AUTHENTICATION = "metaverse.enable_packet_verification";
QVariant localPortValue = _settingsManager.valueOrDefaultValueForKeyPath(CUSTOM_LOCAL_PORT_OPTION);
int domainServerPort = localPortValue.toInt();