Update
This commit is contained in:
parent
af584d3810
commit
73b3c60d23
@ -20,7 +20,7 @@ namespace AsyncRAT_Sharp.Sockets
|
||||
public event ReadEventHandler Read;
|
||||
public delegate void ReadEventHandler(Clients client, byte[] data);
|
||||
|
||||
public void InitializeClient(Socket CLIENT)
|
||||
public Clients(Socket CLIENT)
|
||||
{
|
||||
Client = CLIENT;
|
||||
Client.ReceiveBufferSize = 50 * 1024;
|
||||
|
@ -43,8 +43,7 @@ namespace AsyncRAT_Sharp.Sockets
|
||||
{
|
||||
try
|
||||
{
|
||||
Clients CL = new Clients();
|
||||
CL.InitializeClient(listener.EndAccept(ar));
|
||||
Clients CL = new Clients(listener.EndAccept(ar));
|
||||
}
|
||||
catch { }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user