mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
Change 'Enable Authentication' to 'Enable Packet Verification'
This commit is contained in:
parent
d147d17b70
commit
81c8fe6114
2 changed files with 3 additions and 3 deletions
|
@ -48,8 +48,8 @@
|
||||||
"advanced": true
|
"advanced": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "enable_authentication",
|
"name": "enable_packet_verification",
|
||||||
"label": "Enable Authentication",
|
"label": "Enable Packet Verification",
|
||||||
"help": "Enable secure checksums on communication that uses the High Fidelity protocol. Increases security with possibly a small performance penalty.",
|
"help": "Enable secure checksums on communication that uses the High Fidelity protocol. Increases security with possibly a small performance penalty.",
|
||||||
"default": true,
|
"default": true,
|
||||||
"type": "checkbox",
|
"type": "checkbox",
|
||||||
|
|
|
@ -630,7 +630,7 @@ bool DomainServer::isPacketVerified(const udt::Packet& packet) {
|
||||||
|
|
||||||
void DomainServer::setupNodeListAndAssignments() {
|
void DomainServer::setupNodeListAndAssignments() {
|
||||||
const QString CUSTOM_LOCAL_PORT_OPTION = "metaverse.local_port";
|
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);
|
QVariant localPortValue = _settingsManager.valueOrDefaultValueForKeyPath(CUSTOM_LOCAL_PORT_OPTION);
|
||||||
int domainServerPort = localPortValue.toInt();
|
int domainServerPort = localPortValue.toInt();
|
||||||
|
|
Loading…
Reference in a new issue