diff options
author | gareth | 2007-04-14 12:48:38 +0000 |
---|---|---|
committer | gareth | 2007-04-14 12:48:38 +0000 |
commit | ba7aeb1479e2df2e376242bc8e22da5931c1354b (patch) | |
tree | ee5de07d15350565f70c3f9751a9ec9059457cac /OpenGridServices.GridServer/SimProfiles.cs | |
parent | Fixed weird XML/HTTP bugs (diff) | |
download | opensim-SC_OLD-ba7aeb1479e2df2e376242bc8e22da5931c1354b.zip opensim-SC_OLD-ba7aeb1479e2df2e376242bc8e22da5931c1354b.tar.gz opensim-SC_OLD-ba7aeb1479e2df2e376242bc8e22da5931c1354b.tar.bz2 opensim-SC_OLD-ba7aeb1479e2df2e376242bc8e22da5931c1354b.tar.xz |
In the grid, there is life!
OGS now functional again, can login! w00t
Diffstat (limited to 'OpenGridServices.GridServer/SimProfiles.cs')
-rw-r--r-- | OpenGridServices.GridServer/SimProfiles.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenGridServices.GridServer/SimProfiles.cs b/OpenGridServices.GridServer/SimProfiles.cs index 5e02b4f..7fcfb8c 100644 --- a/OpenGridServices.GridServer/SimProfiles.cs +++ b/OpenGridServices.GridServer/SimProfiles.cs | |||
@@ -168,13 +168,15 @@ namespace OpenGridServices.GridServer | |||
168 | } | 168 | } |
169 | } | 169 | } |
170 | 170 | ||
171 | responseData["UUID"] = TheSim.UUID; | 171 | responseData["UUID"] = TheSim.UUID.ToString(); |
172 | responseData["region_locx"] = TheSim.RegionLocX.ToString(); | 172 | responseData["region_locx"] = TheSim.RegionLocX.ToString(); |
173 | responseData["region_locy"] = TheSim.RegionLocY.ToString(); | 173 | responseData["region_locy"] = TheSim.RegionLocY.ToString(); |
174 | responseData["regionname"] = TheSim.regionname; | 174 | responseData["regionname"] = TheSim.regionname; |
175 | responseData["estate_id"] = "1"; | 175 | responseData["estate_id"] = "1"; |
176 | responseData["neighbours"] = SimNeighboursData; | 176 | responseData["neighbours"] = SimNeighboursData; |
177 | 177 | ||
178 | responseData["sim_ip"] = TheSim.sim_ip; | ||
179 | responseData["sim_port"] = TheSim.sim_port.ToString(); | ||
178 | responseData["asset_url"] = m_gridManager.Cfg.DefaultAssetServer; | 180 | responseData["asset_url"] = m_gridManager.Cfg.DefaultAssetServer; |
179 | responseData["asset_sendkey"] = m_gridManager.Cfg.AssetSendKey; | 181 | responseData["asset_sendkey"] = m_gridManager.Cfg.AssetSendKey; |
180 | responseData["asset_recvkey"] = m_gridManager.Cfg.AssetRecvKey; | 182 | responseData["asset_recvkey"] = m_gridManager.Cfg.AssetRecvKey; |