diff options
author | Melanie Thielker | 2015-09-14 01:26:30 +0200 |
---|---|---|
committer | Melanie Thielker | 2015-09-14 01:26:30 +0200 |
commit | 82105ba81d0cd6b866454402a8b064ecc7ebd514 (patch) | |
tree | 4d6e3f70cc81f4da822867e23bec1079c9b77c7e /OpenSim | |
parent | Make regions tolerant to newer regions with more werables. (diff) | |
download | opensim-SC-82105ba81d0cd6b866454402a8b064ecc7ebd514.zip opensim-SC-82105ba81d0cd6b866454402a8b064ecc7ebd514.tar.gz opensim-SC-82105ba81d0cd6b866454402a8b064ecc7ebd514.tar.bz2 opensim-SC-82105ba81d0cd6b866454402a8b064ecc7ebd514.tar.xz |
Change the actual versions allowed to connect, which is different from
the interface major version
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Server/Base/ProtocolVersions.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Server/Base/ProtocolVersions.cs b/OpenSim/Server/Base/ProtocolVersions.cs index 8db5bb6..5c2278c 100644 --- a/OpenSim/Server/Base/ProtocolVersions.cs +++ b/OpenSim/Server/Base/ProtocolVersions.cs | |||
@@ -46,11 +46,11 @@ namespace OpenSim.Server.Base | |||
46 | /// </value> | 46 | /// </value> |
47 | 47 | ||
48 | // The range of acceptable servers for client-side connectors | 48 | // The range of acceptable servers for client-side connectors |
49 | public readonly static int ClientProtocolVersionMin = 0; | 49 | public readonly static int ClientProtocolVersionMin = 1; |
50 | public readonly static int ClientProtocolVersionMax = 0; | 50 | public readonly static int ClientProtocolVersionMax = 1; |
51 | 51 | ||
52 | // The range of acceptable clients in server-side handlers | 52 | // The range of acceptable clients in server-side handlers |
53 | public readonly static int ServerProtocolVersionMin = 0; | 53 | public readonly static int ServerProtocolVersionMin = 1; |
54 | public readonly static int ServerProtocolVersionMax = 0; | 54 | public readonly static int ServerProtocolVersionMax = 1; |
55 | } | 55 | } |
56 | } | 56 | } |