aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService
diff options
context:
space:
mode:
authorUbitUmarov2015-11-23 23:03:16 +0000
committerUbitUmarov2015-11-23 23:03:16 +0000
commit81eb9816a26dfe70d9eff5bc57188ee6dd8e5103 (patch)
tree671d110b219be57b1742f06fbc10c612984827b5 /OpenSim/Services/LLLoginService
parent remove warning on siting in phantom prims without sittarget (diff)
downloadopensim-SC_OLD-81eb9816a26dfe70d9eff5bc57188ee6dd8e5103.zip
opensim-SC_OLD-81eb9816a26dfe70d9eff5bc57188ee6dd8e5103.tar.gz
opensim-SC_OLD-81eb9816a26dfe70d9eff5bc57188ee6dd8e5103.tar.bz2
opensim-SC_OLD-81eb9816a26dfe70d9eff5bc57188ee6dd8e5103.tar.xz
remove libomv detection/log from llLoginService
Diffstat (limited to 'OpenSim/Services/LLLoginService')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index 6681f1a..135a8f3 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -266,18 +266,15 @@ namespace OpenSim.Services.LLLoginService
266 } 266 }
267 267
268 public LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID, 268 public LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID,
269 string clientVersion, string channel, string mac, string id0, IPEndPoint clientIP, bool LibOMVclient) 269 string clientVersion, string channel, string mac, string id0, IPEndPoint clientIP)
270 { 270 {
271 bool success = false; 271 bool success = false;
272 UUID session = UUID.Random(); 272 UUID session = UUID.Random();
273 273
274 string processedMessage; 274 string processedMessage;
275 275
276 if (clientVersion.Contains("Radegast"))
277 LibOMVclient = false;
278
279 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} ", 276 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} ",
280 firstName, lastName, startLocation, clientVersion, channel, clientIP.Address.ToString(), mac, id0, LibOMVclient.ToString()); 277 firstName, lastName, startLocation, clientVersion, channel, clientIP.Address.ToString(), mac, id0);
281 278
282 try 279 try
283 { 280 {