aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService/LLLoginService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginService.cs')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index ed62c43..1c1c9b0 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -247,13 +247,16 @@ namespace OpenSim.Services.LLLoginService
247 } 247 }
248 248
249 public LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID, 249 public LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID,
250 string clientVersion, string channel, string mac, string id0, IPEndPoint clientIP) 250 string clientVersion, string channel, string mac, string id0, IPEndPoint clientIP, bool LibOMVclient)
251 { 251 {
252 bool success = false; 252 bool success = false;
253 UUID session = UUID.Random(); 253 UUID session = UUID.Random();
254 if (clientVersion.Contains("Radegast"))
255 LibOMVclient = false;
254 256
255 m_log.InfoFormat("[LLOGIN SERVICE]: Login request for {0} {1} at {2} using viewer {3}, channel {4}, IP {5}, Mac {6}, Id0 {7}", 257
256 firstName, lastName, startLocation, clientVersion, channel, clientIP.Address.ToString(), mac, id0); 258 m_log.InfoFormat("[LLOGIN SERVICE]: Login request for {0} {1} at {2} using viewer {3}, channel {4}, IP {5}, Mac {6}, Id0 {7}, Possible LibOMVGridProxy: {8} ",
259 firstName, lastName, startLocation, clientVersion, channel, clientIP.Address.ToString(), mac, id0, LibOMVclient.ToString());
257 260
258 try 261 try
259 { 262 {