diff options
Added the login region's http to the login response.
Diffstat (limited to 'OpenSim/Framework/Communications/LoginResponse.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginResponse.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginResponse.cs b/OpenSim/Framework/Communications/LoginResponse.cs index d1b9258..6986369 100644 --- a/OpenSim/Framework/Communications/LoginResponse.cs +++ b/OpenSim/Framework/Communications/LoginResponse.cs | |||
@@ -75,6 +75,7 @@ namespace OpenSim.Framework.Communications | |||
75 | private string everLoggedIn; | 75 | private string everLoggedIn; |
76 | private string login; | 76 | private string login; |
77 | private uint simPort; | 77 | private uint simPort; |
78 | private uint simHttpPort; | ||
78 | private string simAddress; | 79 | private string simAddress; |
79 | private string agentAccess; | 80 | private string agentAccess; |
80 | private Int32 circuitCode; | 81 | private Int32 circuitCode; |
@@ -354,6 +355,7 @@ namespace OpenSim.Framework.Communications | |||
354 | 355 | ||
355 | responseData["sim_port"] = (Int32) SimPort; | 356 | responseData["sim_port"] = (Int32) SimPort; |
356 | responseData["sim_ip"] = SimAddress; | 357 | responseData["sim_ip"] = SimAddress; |
358 | responseData["http_port"] = (Int32)SimHttpPort; | ||
357 | 359 | ||
358 | responseData["agent_id"] = AgentID.ToString(); | 360 | responseData["agent_id"] = AgentID.ToString(); |
359 | responseData["session_id"] = SessionID.ToString(); | 361 | responseData["session_id"] = SessionID.ToString(); |
@@ -579,6 +581,12 @@ namespace OpenSim.Framework.Communications | |||
579 | set { simPort = value; } | 581 | set { simPort = value; } |
580 | } | 582 | } |
581 | 583 | ||
584 | public uint SimHttpPort | ||
585 | { | ||
586 | get { return simHttpPort; } | ||
587 | set { simHttpPort = value; } | ||
588 | } | ||
589 | |||
582 | public string SimAddress | 590 | public string SimAddress |
583 | { | 591 | { |
584 | get { return simAddress; } | 592 | get { return simAddress; } |