diff options
author | morphw | 2007-05-06 01:59:12 +0000 |
---|---|---|
committer | morphw | 2007-05-06 01:59:12 +0000 |
commit | 8b5c182e6949ac0c8f835b63739fd2285d233e51 (patch) | |
tree | ee4ce9dc9196059715865dc7333ee0eeaeb3d889 /OpenSim.Servers/LoginResponse.cs | |
parent | Fixed collision error with threaded access. (diff) | |
download | opensim-SC_OLD-8b5c182e6949ac0c8f835b63739fd2285d233e51.zip opensim-SC_OLD-8b5c182e6949ac0c8f835b63739fd2285d233e51.tar.gz opensim-SC_OLD-8b5c182e6949ac0c8f835b63739fd2285d233e51.tar.bz2 opensim-SC_OLD-8b5c182e6949ac0c8f835b63739fd2285d233e51.tar.xz |
return sim_port as an int32 rather than a string in the login response. LL SL Viewer doesn't seem to care, but libsecondlife does.
Diffstat (limited to 'OpenSim.Servers/LoginResponse.cs')
-rw-r--r-- | OpenSim.Servers/LoginResponse.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim.Servers/LoginResponse.cs b/OpenSim.Servers/LoginResponse.cs index 2e29889..4b446d2 100644 --- a/OpenSim.Servers/LoginResponse.cs +++ b/OpenSim.Servers/LoginResponse.cs | |||
@@ -188,7 +188,7 @@ namespace OpenSim.UserServer | |||
188 | this.globalTexturesHash["moon_texture_id"] = this.MoonTexture; | 188 | this.globalTexturesHash["moon_texture_id"] = this.MoonTexture; |
189 | this.globalTextures.Add(this.globalTexturesHash); | 189 | this.globalTextures.Add(this.globalTexturesHash); |
190 | 190 | ||
191 | responseData["sim_port"] = this.SimPort; | 191 | responseData["sim_port"] = Int32.Parse(this.SimPort); |
192 | responseData["sim_ip"] = this.SimAddress; | 192 | responseData["sim_ip"] = this.SimAddress; |
193 | responseData["agent_id"] = this.AgentID; | 193 | responseData["agent_id"] = this.AgentID; |
194 | responseData["session_id"] = this.SessionID; | 194 | responseData["session_id"] = this.SessionID; |