diff options
author | Diva Canto | 2016-06-13 18:04:28 -0700 |
---|---|---|
committer | Diva Canto | 2016-06-13 18:04:28 -0700 |
commit | 2d2414adcfcf50ba1398f889c0ca301b3409e317 (patch) | |
tree | 0358b033c22ae7bd08c02543cc8fba4fc6dc2101 /OpenSim/Server/Handlers | |
parent | Mantis #7923. EDIT BEAMS ARE BACK! (diff) | |
download | opensim-SC_OLD-2d2414adcfcf50ba1398f889c0ca301b3409e317.zip opensim-SC_OLD-2d2414adcfcf50ba1398f889c0ca301b3409e317.tar.gz opensim-SC_OLD-2d2414adcfcf50ba1398f889c0ca301b3409e317.tar.bz2 opensim-SC_OLD-2d2414adcfcf50ba1398f889c0ca301b3409e317.tar.xz |
Add a few more debug messages to diagnose problems in OSGrid's proxy use
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r-- | OpenSim/Server/Handlers/Login/LLLoginHandlers.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs b/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs index 5d672c3..48571e3 100644 --- a/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs +++ b/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs | |||
@@ -63,13 +63,18 @@ namespace OpenSim.Server.Handlers.Login | |||
63 | 63 | ||
64 | public XmlRpcResponse HandleXMLRPCLogin(XmlRpcRequest request, IPEndPoint remoteClient) | 64 | public XmlRpcResponse HandleXMLRPCLogin(XmlRpcRequest request, IPEndPoint remoteClient) |
65 | { | 65 | { |
66 | m_log.DebugFormat("[TEST]: HandleXMLRPCLogin from {0}", remoteClient.ToString()); | ||
66 | Hashtable requestData = (Hashtable)request.Params[0]; | 67 | Hashtable requestData = (Hashtable)request.Params[0]; |
67 | if (m_Proxy && request.Params[3] != null) | 68 | if (m_Proxy && request.Params[3] != null) |
68 | { | 69 | { |
70 | m_log.DebugFormat("[TEST]: Proxy ! {0}", request.Params[3]); | ||
69 | IPEndPoint ep = Util.GetClientIPFromXFF((string)request.Params[3]); | 71 | IPEndPoint ep = Util.GetClientIPFromXFF((string)request.Params[3]); |
70 | if (ep != null) | 72 | if (ep != null) |
73 | { | ||
71 | // Bang! | 74 | // Bang! |
72 | remoteClient = ep; | 75 | remoteClient = ep; |
76 | m_log.DebugFormat("[TEST]: IP is {0}", remoteClient.ToString()); | ||
77 | } | ||
73 | } | 78 | } |
74 | 79 | ||
75 | if (requestData != null) | 80 | if (requestData != null) |