diff options
author | UbitUmarov | 2015-11-23 23:10:02 +0000 |
---|---|---|
committer | UbitUmarov | 2015-11-23 23:10:02 +0000 |
commit | 9d8fe7f3db2e90fa91c39ee9b0bd76859beb1412 (patch) | |
tree | 5b805621a5451644d0b94ceb01245107e03819bd /OpenSim/Services/LLLoginService/LLLoginService.cs | |
parent | remove libomv detection/log from llLoginService (diff) | |
download | opensim-SC_OLD-9d8fe7f3db2e90fa91c39ee9b0bd76859beb1412.zip opensim-SC_OLD-9d8fe7f3db2e90fa91c39ee9b0bd76859beb1412.tar.gz opensim-SC_OLD-9d8fe7f3db2e90fa91c39ee9b0bd76859beb1412.tar.bz2 opensim-SC_OLD-9d8fe7f3db2e90fa91c39ee9b0bd76859beb1412.tar.xz |
revert previus commit
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 135a8f3..6681f1a 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -266,15 +266,18 @@ 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) | 269 | string clientVersion, string channel, string mac, string id0, IPEndPoint clientIP, bool LibOMVclient) |
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 | |||
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} ", | 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} ", |
277 | firstName, lastName, startLocation, clientVersion, channel, clientIP.Address.ToString(), mac, id0); | 280 | firstName, lastName, startLocation, clientVersion, channel, clientIP.Address.ToString(), mac, id0, LibOMVclient.ToString()); |
278 | 281 | ||
279 | try | 282 | try |
280 | { | 283 | { |