diff --git a/nex/authentication.go b/nex/authentication.go index ea7e74b..235a694 100644 --- a/nex/authentication.go +++ b/nex/authentication.go @@ -23,6 +23,7 @@ func StartAuthenticationServer() { globals.AuthenticationServer.BindPRUDPEndPoint(globals.AuthenticationEndpoint) globals.AuthenticationServer.ByteStreamSettings.UseStructureHeader = false + // Technically this title is 3.4.2; however, it uses older-style structures and is therefore defined here as 3.3.2 globals.AuthenticationServer.LibraryVersions.SetDefault(nex.NewLibraryVersion(3, 3, 2)) globals.AuthenticationServer.AccessKey = "e7a47214" diff --git a/nex/secure.go b/nex/secure.go index 8c5dc06..cf2b1ea 100644 --- a/nex/secure.go +++ b/nex/secure.go @@ -20,6 +20,7 @@ func StartSecureServer() { globals.SecureServer.BindPRUDPEndPoint(globals.SecureEndpoint) globals.SecureServer.ByteStreamSettings.UseStructureHeader = false + // Technically this title is 3.4.2; however, it uses older-style structures and is therefore defined here as 3.3.2 globals.SecureServer.LibraryVersions.SetDefault(nex.NewLibraryVersion(3, 3, 2)) globals.SecureServer.AccessKey = "e7a47214"