Ignore:
Timestamp:
Aug 1, 2022, 12:54:31 PM (2 years ago)
Author:
alloc
Message:

Switched to use SpaceWizards.HttpListener

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/MapRendering/Web/ConnectionHandler.cs

    r369 r382  
    99
    1010                public WebConnection IsLoggedIn (string _sessionId, IPAddress _ip) {
    11                         if (!connections.ContainsKey (_sessionId)) {
     11                        if (!connections.TryGetValue (_sessionId, out WebConnection con)) {
    1212                                return null;
    1313                        }
    14 
    15                         WebConnection con = connections [_sessionId];
    1614
    1715//                      if (con.Age.TotalMinutes > parent.sessionTimeoutMinutes) {
Note: See TracChangeset for help on using the changeset viewer.