- Timestamp:
- Sep 9, 2014, 9:52:41 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Telnet/Telnet.cs
r183 r184 39 39 } 40 40 41 public void FailedLogins () 42 { 43 } 44 41 45 private void AcceptClient (IAsyncResult asyncResult) 42 46 { 43 47 if (listener.Server.IsBound) { 44 TelnetConnection c = new TelnetConnection ( listener.EndAcceptTcpClient (asyncResult), authEnabled);48 TelnetConnection c = new TelnetConnection (this, listener.EndAcceptTcpClient (asyncResult), authEnabled); 45 49 connections.Add (c); 46 50 listener.BeginAcceptTcpClient (new AsyncCallback (AcceptClient), null);
Note:
See TracChangeset
for help on using the changeset viewer.