mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Change the actual versions allowed to connect, which is different from
the interface major version
This commit is contained in:
@@ -46,11 +46,11 @@ namespace OpenSim.Server.Base
|
||||
/// </value>
|
||||
|
||||
// The range of acceptable servers for client-side connectors
|
||||
public readonly static int ClientProtocolVersionMin = 0;
|
||||
public readonly static int ClientProtocolVersionMax = 0;
|
||||
public readonly static int ClientProtocolVersionMin = 1;
|
||||
public readonly static int ClientProtocolVersionMax = 1;
|
||||
|
||||
// The range of acceptable clients in server-side handlers
|
||||
public readonly static int ServerProtocolVersionMin = 0;
|
||||
public readonly static int ServerProtocolVersionMax = 0;
|
||||
public readonly static int ServerProtocolVersionMin = 1;
|
||||
public readonly static int ServerProtocolVersionMax = 1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user