aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs b/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs
index b989997..625c42b 100644
--- a/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs
+++ b/OpenSim/Framework/Communications/Cache/AuthedSessionCache.cs
@@ -57,16 +57,16 @@ namespace OpenSim.Framework.Communications.Cache
57 57
58 private static readonly int DEFAULT_LIFETIME = 30; 58 private static readonly int DEFAULT_LIFETIME = 30;
59 private Dictionary<string, CacheData> m_authed_sessions = new Dictionary<string,CacheData>(); 59 private Dictionary<string, CacheData> m_authed_sessions = new Dictionary<string,CacheData>();
60 private int m_session_lifetime = DEFAULT_LIFETIME; 60 // private int m_session_lifetime = DEFAULT_LIFETIME;
61 61
62 public AuthedSessionCache() 62 public AuthedSessionCache()
63 { 63 {
64 m_session_lifetime = DEFAULT_LIFETIME; 64 // m_session_lifetime = DEFAULT_LIFETIME;
65 } 65 }
66 66
67 public AuthedSessionCache(int timeout) 67 public AuthedSessionCache(int timeout)
68 { 68 {
69 m_session_lifetime = timeout; 69 // m_session_lifetime = timeout;
70 } 70 }
71 71
72 public CacheData getCachedSession(string session_id, string agent_id) 72 public CacheData getCachedSession(string session_id, string agent_id)