Changeset 369 for binary-improvements/MapRendering/Web/ConnectionHandler.cs
- Timestamp:
- Nov 9, 2021, 6:28:33 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/ConnectionHandler.cs
r351 r369 2 2 using System.Collections.Generic; 3 3 using System.Net; 4 using Platform.Steam; 4 5 5 6 namespace AllocsFixes.NetConnections.Servers.Web { … … 36 37 public WebConnection LogIn (ulong _steamId, IPAddress _ip) { 37 38 string sessionId = Guid.NewGuid ().ToString (); 38 WebConnection con = new WebConnection (sessionId, _ip, _steamId); 39 PlatformUserIdentifierAbs userId = new UserIdentifierSteam (_steamId); 40 WebConnection con = new WebConnection (sessionId, _ip, userId); 39 41 connections.Add (sessionId, con); 40 42 return con;
Note:
See TracChangeset
for help on using the changeset viewer.