diff options
-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) |