- Fixed missing ToString() in map_blocks response in grid-server
- Added remoting_port to the non-fast if-branch, too - Added httpPort field to map_blocks response. This isn't needed yet, but will be for correct crossing between regions. Note: This touches the GridServer.0.6.1-post-fixes
parent
7ae9ec217d
commit
33d7913341
|
@ -880,7 +880,8 @@ namespace OpenSim.Grid.GridServer
|
|||
simProfileBlock["sim_port"] = aSim.serverPort.ToString();
|
||||
simProfileBlock["sim_uri"] = aSim.serverURI.ToString();
|
||||
simProfileBlock["uuid"] = aSim.UUID.ToString();
|
||||
simProfileBlock["remoting_port"] = aSim.remotingPort;
|
||||
simProfileBlock["remoting_port"] = aSim.remotingPort.ToString();
|
||||
simProfileBlock["http_port"] = aSim.httpPort.ToString();
|
||||
|
||||
simProfileList.Add(simProfileBlock);
|
||||
}
|
||||
|
@ -914,6 +915,8 @@ namespace OpenSim.Grid.GridServer
|
|||
simProfileBlock["sim_port"] = simProfile.serverPort.ToString();
|
||||
simProfileBlock["sim_uri"] = simProfile.serverURI.ToString();
|
||||
simProfileBlock["uuid"] = simProfile.UUID.ToString();
|
||||
simProfileBlock["remoting_port"] = simProfile.remotingPort.ToString();
|
||||
simProfileBlock["http_port"] = simProfile.httpPort;
|
||||
|
||||
simProfileList.Add(simProfileBlock);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue