diff options
author | Justin Clark-Casey (justincc) | 2013-08-02 23:12:54 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-08-02 23:12:54 +0100 |
commit | 54b1071556edf264835f990bb3595064d2b2e2f0 (patch) | |
tree | bfa4a7a8e445d070cca956b190ba33a8a6edf21d /bin/config-include/Standalone.ini | |
parent | minor: replace veclist.Add(new Vector3(0,0,0)) with Vector3.Zero in Inventory... (diff) | |
download | opensim-SC-54b1071556edf264835f990bb3595064d2b2e2f0.zip opensim-SC-54b1071556edf264835f990bb3595064d2b2e2f0.tar.gz opensim-SC-54b1071556edf264835f990bb3595064d2b2e2f0.tar.bz2 opensim-SC-54b1071556edf264835f990bb3595064d2b2e2f0.tar.xz |
Allow older teleport ConnectorProtocolVersion of "SIMULATION/0.1" to be manually forced in a new [SimulationService] config setting.
This is for testing and debugging purposes to help determine whether a particular issue may be teleport related or not
"SIMULATION/0.2" (the newer teleport protocol) remains the default. If the source simulator only implements "SIMULATION/0.1" this will correctly allow fallback to the older protocol.
Specifying "SIMULATION/0.1" will force the older, less efficient protocol to always be used.
Diffstat (limited to 'bin/config-include/Standalone.ini')
-rw-r--r-- | bin/config-include/Standalone.ini | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index d3b9cb4..7b7beb2 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini | |||
@@ -26,6 +26,17 @@ | |||
26 | GridInfoServiceInConnector = true | 26 | GridInfoServiceInConnector = true |
27 | MapImageServiceInConnector = true | 27 | MapImageServiceInConnector = true |
28 | 28 | ||
29 | [SimulationService] | ||
30 | ; This is the protocol version which the simulator advertises to the source destination when acting as a target destination for a teleport | ||
31 | ; It is used to control the teleport handoff process. | ||
32 | ; Valid values are | ||
33 | ; "SIMULATION/0.2" | ||
34 | ; - this is the default. A source simulator which only implements "SIMULATION/0.1" can still teleport with that protocol | ||
35 | ; - this protocol is more efficient than "SIMULATION/0.1" | ||
36 | ; "SIMULATION/0.1" | ||
37 | ; - this is an older teleport protocol used in OpenSimulator 0.7.5 and before. | ||
38 | ConnectorProtocolVersion = "SIMULATION/0.2" | ||
39 | |||
29 | [SimulationDataStore] | 40 | [SimulationDataStore] |
30 | LocalServiceModule = "OpenSim.Services.Connectors.dll:SimulationDataService" | 41 | LocalServiceModule = "OpenSim.Services.Connectors.dll:SimulationDataService" |
31 | 42 | ||