diff options
author | Diva Canto | 2011-01-09 16:52:41 -0800 |
---|---|---|
committer | Diva Canto | 2011-01-09 16:52:41 -0800 |
commit | e80bcc0049c9e60e052969aaf8582fa2b867f879 (patch) | |
tree | d3c736429646749d928fc61b19ef9acec7de6603 /OpenSim/Services | |
parent | Added more debug messages under the -verbose option. (diff) | |
download | opensim-SC_OLD-e80bcc0049c9e60e052969aaf8582fa2b867f879.zip opensim-SC_OLD-e80bcc0049c9e60e052969aaf8582fa2b867f879.tar.gz opensim-SC_OLD-e80bcc0049c9e60e052969aaf8582fa2b867f879.tar.bz2 opensim-SC_OLD-e80bcc0049c9e60e052969aaf8582fa2b867f879.tar.xz |
Improved debug messages to track what is going on with the XFF header
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/HypergridService/UserAgentService.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/OpenSim/Services/HypergridService/UserAgentService.cs b/OpenSim/Services/HypergridService/UserAgentService.cs index 12dda48..3ead180 100644 --- a/OpenSim/Services/HypergridService/UserAgentService.cs +++ b/OpenSim/Services/HypergridService/UserAgentService.cs | |||
@@ -155,7 +155,7 @@ namespace OpenSim.Services.HypergridService | |||
155 | string myExternalIP = string.Empty; | 155 | string myExternalIP = string.Empty; |
156 | string gridName = gatekeeper.ServerURI; | 156 | string gridName = gatekeeper.ServerURI; |
157 | 157 | ||
158 | m_log.DebugFormat("[USER AGENT SERVICE]: m_grid - {0}, gn - {1}", m_GridName, gridName); | 158 | m_log.DebugFormat("[USER AGENT SERVICE]: this grid: {0}, desired grid: {1}", m_GridName, gridName); |
159 | 159 | ||
160 | if (m_GridName == gridName) | 160 | if (m_GridName == gridName) |
161 | success = m_GatekeeperService.LoginAgent(agentCircuit, finalDestination, out reason); | 161 | success = m_GatekeeperService.LoginAgent(agentCircuit, finalDestination, out reason); |
@@ -266,11 +266,13 @@ namespace OpenSim.Services.HypergridService | |||
266 | 266 | ||
267 | if (m_TravelingAgents.ContainsKey(sessionID)) | 267 | if (m_TravelingAgents.ContainsKey(sessionID)) |
268 | { | 268 | { |
269 | m_log.DebugFormat("[USER AGENT SERVICE]: Comparing with login IP {0} and MyIP {1}", | 269 | bool result = m_TravelingAgents[sessionID].ClientIPAddress == reportedIP || |
270 | m_TravelingAgents[sessionID].ClientIPAddress, m_TravelingAgents[sessionID].MyIpAddress); | ||
271 | |||
272 | return m_TravelingAgents[sessionID].ClientIPAddress == reportedIP || | ||
273 | m_TravelingAgents[sessionID].MyIpAddress == reportedIP; // NATed | 270 | m_TravelingAgents[sessionID].MyIpAddress == reportedIP; // NATed |
271 | |||
272 | m_log.DebugFormat("[USER AGENT SERVICE]: Comparing {0} with login IP {1} and MyIP {1}; result is {3}", | ||
273 | reportedIP, m_TravelingAgents[sessionID].ClientIPAddress, m_TravelingAgents[sessionID].MyIpAddress, result); | ||
274 | |||
275 | return result; | ||
274 | } | 276 | } |
275 | 277 | ||
276 | return false; | 278 | return false; |