diff options
Diffstat (limited to 'LibOVR/Src/Service/Service_NetSessionCommon.cpp')
-rw-r--r-- | LibOVR/Src/Service/Service_NetSessionCommon.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/LibOVR/Src/Service/Service_NetSessionCommon.cpp b/LibOVR/Src/Service/Service_NetSessionCommon.cpp index 9f8d863..80392a8 100644 --- a/LibOVR/Src/Service/Service_NetSessionCommon.cpp +++ b/LibOVR/Src/Service/Service_NetSessionCommon.cpp @@ -5,16 +5,16 @@ Content : Server for service interface Created : June 12, 2014 Authors : Kevin Jenkins, Chris Taylor -Copyright : Copyright 2014 Oculus VR, Inc. All Rights reserved. +Copyright : Copyright 2014 Oculus VR, LLC All Rights reserved. -Licensed under the Oculus VR Rift SDK License Version 3.1 (the "License"); +Licensed under the Oculus VR Rift SDK License Version 3.2 (the "License"); you may not use the Oculus VR Rift SDK except in compliance with the License, which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. You may obtain a copy of the License at -http://www.oculusvr.com/licenses/LICENSE-3.1 +http://www.oculusvr.com/licenses/LICENSE-3.2 Unless required by applicable law or agreed to in writing, the Oculus VR SDK distributed under the License is distributed on an "AS IS" BASIS, @@ -253,13 +253,13 @@ static const char* KeyNames[][NetSessionCommon::ENumTypes] = { /* EGetStringValue */ { "CameraSerial", "CameraUUID", 0 }, /* EGetBoolValue */ { "ReleaseDK2Sensors", "ReleaseLegacySensors", 0 }, /* EGetIntValue */ { 0 }, - /* EGetNumberValue */{ "CenterPupilDepth", 0 }, + /* EGetNumberValue */{ "CenterPupilDepth", "LoggingMask", 0 }, /* EGetNumberValues */{ "NeckModelVector3f", 0 }, /* ESetStringValue */ { 0 }, /* ESetBoolValue */ { "ReleaseDK2Sensors", "ReleaseLegacySensors", 0 }, /* ESetIntValue */ { 0 }, - /* ESetNumberValue */{ "CenterPupilDepth", 0 }, - /* ESetNumberValues */{ "NeckModelVector3f", 0 } + /* ESetNumberValue */{ "CenterPupilDepth", "LoggingMask", 0 }, + /* ESetNumberValues */{ "NeckModelVector3f", 0 }, }; bool IsInStringArray(const char* a[], const char* key) |