mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
27 lines
600 B
C#
27 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO.Pipes;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace service.messages
|
|
{
|
|
public class Send : Message
|
|
{
|
|
private byte[] _buffer;
|
|
private static int SEND_BUFFER_SIZE = 8192;
|
|
|
|
private enum SEND_TYPE
|
|
{
|
|
SEND_SIGNATURES_TO_SCAN = 10
|
|
}
|
|
|
|
public Send(NamedPipeServerStream pipeServer, int pipePacketHeaderSize)
|
|
: base(pipeServer, pipePacketHeaderSize)
|
|
{
|
|
_buffer = new byte[SEND_BUFFER_SIZE];
|
|
}
|
|
|
|
}
|
|
}
|