Changeset 404 for binary-improvements2/WebServer/src/ConnectionHandler.cs
- Timestamp:
- Feb 16, 2023, 3:50:53 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/WebServer/src/ConnectionHandler.cs
r402 r404 31 31 } 32 32 33 public WebConnection LogIn ( PlatformUserIdentifierAbs _userId, IPAddress _ip) {33 public WebConnection LogIn (IPAddress _ip, string _username, PlatformUserIdentifierAbs _userId, PlatformUserIdentifierAbs _crossUserId = null) { 34 34 string sessionId = Guid.NewGuid ().ToString (); 35 WebConnection con = new WebConnection (sessionId, _ip, _user Id);35 WebConnection con = new WebConnection (sessionId, _ip, _username, _userId, _crossUserId); 36 36 connections.Add (sessionId, con); 37 37 return con;
Note:
See TracChangeset
for help on using the changeset viewer.