sockscape/server/PendingConnection.cs
Malloc of Kuzkycyziklistan 017b75579f websock refactor
changed from a static delegate system to a managed instance template
system
2017-04-24 16:04:52 -05:00

13 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace CircleScape {
class PendingConnection : ActiveConnection {
public PendingConnection(TcpClient sock) : base(sock) { }
}
}