diff options
author | Justin Clark-Casey (justincc) | 2013-09-19 22:45:50 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-26 20:08:49 +0100 |
commit | 882ba741404a4c233bdf947071a45349b74bd8a3 (patch) | |
tree | 651bd961332680726f348ab1290d2ce77a19f2e9 /bin | |
parent | minor: Make log message at top of ScenePresence.CompleteMovement info level a... (diff) | |
download | opensim-SC-882ba741404a4c233bdf947071a45349b74bd8a3.zip opensim-SC-882ba741404a4c233bdf947071a45349b74bd8a3.tar.gz opensim-SC-882ba741404a4c233bdf947071a45349b74bd8a3.tar.bz2 opensim-SC-882ba741404a4c233bdf947071a45349b74bd8a3.tar.xz |
For debug purposes, allow simulators to force use of earlier SIMULATION/0.1 teleport protocol even if SIMULATION/0.2 is available.
This is specified in the MaxOutgoingTransferVersion attribute of [EntityTransfer] in OpenSim.ini, see OpenSimDefaults.ini for more details.
Default remains "SIMULATION/0.2"
Primarily for http://opensimulator.org/mantis/view.php?id=6755
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSimDefaults.ini | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index b9eb4e8..f9105a1 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -636,7 +636,6 @@ | |||
636 | Cap_AvatarPickerSearch = "localhost" | 636 | Cap_AvatarPickerSearch = "localhost" |
637 | 637 | ||
638 | 638 | ||
639 | |||
640 | [Chat] | 639 | [Chat] |
641 | ; Controls whether the chat module is enabled. Default is true. | 640 | ; Controls whether the chat module is enabled. Default is true. |
642 | enabled = true; | 641 | enabled = true; |
@@ -657,6 +656,15 @@ | |||
657 | ; Setting to 0 will allow teleports of any distance | 656 | ; Setting to 0 will allow teleports of any distance |
658 | max_distance = 4095 | 657 | max_distance = 4095 |
659 | 658 | ||
659 | ; The maximum protocol version that we will use for outgoing transfers | ||
660 | ; Valid values are | ||
661 | ; "SIMULATION/0.2" | ||
662 | ; - this is the default. A source simulator which only implements "SIMULATION/0.1" can still teleport with that protocol | ||
663 | ; - this protocol is more efficient than "SIMULATION/0.1" | ||
664 | ; "SIMULATION/0.1" | ||
665 | ; - this is an older teleport protocol used in OpenSimulator 0.7.5 and before. | ||
666 | MaxOutgoingTransferVersion = "SIMULATION/0.2" | ||
667 | |||
660 | ; Minimum user level required for HyperGrid teleports | 668 | ; Minimum user level required for HyperGrid teleports |
661 | LevelHGTeleport = 0 | 669 | LevelHGTeleport = 0 |
662 | 670 | ||