Ignore:
Timestamp:
Sep 9, 2014, 9:52:41 PM (10 years ago)
Author:
alloc
Message:

fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Telnet/Telnet.cs

    r183 r184  
    3939                }
    4040
     41                public void FailedLogins ()
     42                {
     43                }
     44
    4145                private void AcceptClient (IAsyncResult asyncResult)
    4246                {
    4347                        if (listener.Server.IsBound) {
    44                                 TelnetConnection c = new TelnetConnection (listener.EndAcceptTcpClient (asyncResult), authEnabled);
     48                                TelnetConnection c = new TelnetConnection (this, listener.EndAcceptTcpClient (asyncResult), authEnabled);
    4549                                connections.Add (c);
    4650                                listener.BeginAcceptTcpClient (new AsyncCallback (AcceptClient), null);
Note: See TracChangeset for help on using the changeset viewer.