aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService/LLLoginService.cs
diff options
context:
space:
mode:
authorUbitUmarov2014-10-24 02:12:30 +0100
committerUbitUmarov2014-10-24 02:12:30 +0100
commitfd79f75ba6766e1edc196a73dd05fc5f806f82b2 (patch)
tree3ead04ca86d81e6608308782945aec6490fedfa9 /OpenSim/Services/LLLoginService/LLLoginService.cs
parentremove some Xengine errors on scripted object delete (diff)
downloadopensim-SC_OLD-fd79f75ba6766e1edc196a73dd05fc5f806f82b2.zip
opensim-SC_OLD-fd79f75ba6766e1edc196a73dd05fc5f806f82b2.tar.gz
opensim-SC_OLD-fd79f75ba6766e1edc196a73dd05fc5f806f82b2.tar.bz2
opensim-SC_OLD-fd79f75ba6766e1edc196a73dd05fc5f806f82b2.tar.xz
TEST**** wingridproxy detection at grid login. Untested possible not
very reliable. Adds some load even on region servers because of code at BaseHttpServer.
Diffstat (limited to '')
-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 {