diff options
author | Teravus Ovares (Dan Olivares) | 2010-05-16 01:48:28 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2010-05-16 01:48:28 -0400 |
commit | a974146921121c2965cfc60bd6158c76989ebd98 (patch) | |
tree | 42089c05aaa3a28af3a22f97badea89275a15899 /OpenSim/Services/HypergridService/UserAgentService.cs | |
parent | * Revert last commit for now at Melanie_T's request. (diff) | |
parent | Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-a974146921121c2965cfc60bd6158c76989ebd98.zip opensim-SC_OLD-a974146921121c2965cfc60bd6158c76989ebd98.tar.gz opensim-SC_OLD-a974146921121c2965cfc60bd6158c76989ebd98.tar.bz2 opensim-SC_OLD-a974146921121c2965cfc60bd6158c76989ebd98.tar.xz |
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Services/HypergridService/UserAgentService.cs')
-rw-r--r-- | OpenSim/Services/HypergridService/UserAgentService.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Services/HypergridService/UserAgentService.cs b/OpenSim/Services/HypergridService/UserAgentService.cs index 4a275c6..2f1fed4 100644 --- a/OpenSim/Services/HypergridService/UserAgentService.cs +++ b/OpenSim/Services/HypergridService/UserAgentService.cs | |||
@@ -213,15 +213,15 @@ namespace OpenSim.Services.HypergridService | |||
213 | public bool VerifyClient(UUID sessionID, string token) | 213 | public bool VerifyClient(UUID sessionID, string token) |
214 | { | 214 | { |
215 | m_log.DebugFormat("[USER AGENT SERVICE]: Verifying Client session {0} with token {1}", sessionID, token); | 215 | m_log.DebugFormat("[USER AGENT SERVICE]: Verifying Client session {0} with token {1}", sessionID, token); |
216 | return true; | 216 | //return true; |
217 | 217 | ||
218 | // Commenting this for now until I understand better what part of a sender's | 218 | // Commenting this for now until I understand better what part of a sender's |
219 | // info stays unchanged throughout a session | 219 | // info stays unchanged throughout a session |
220 | // | ||
221 | //if (m_TravelingAgents.ContainsKey(sessionID)) | ||
222 | // return m_TravelingAgents[sessionID].ClientToken == token; | ||
223 | 220 | ||
224 | //return false; | 221 | if (m_TravelingAgents.ContainsKey(sessionID)) |
222 | return m_TravelingAgents[sessionID].ClientToken == token; | ||
223 | |||
224 | return false; | ||
225 | } | 225 | } |
226 | 226 | ||
227 | public bool VerifyAgent(UUID sessionID, string token) | 227 | public bool VerifyAgent(UUID sessionID, string token) |