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