Ejemplo n.º 1
0
 public S_FileTransferSend(FileTransferConnect client, FileTransfer info, byte[] bytes, int Index)
     : base(client)
 {
     this.info  = info;
     this.bytes = bytes;
     this.Index = Index;
 }
Ejemplo n.º 2
0
 public ReceiveBasePacket(FileTransferConnect client, byte[] packet)
 {
     _Client = client;
     _Packet = packet;
     _Offset = 1;
     Read();
 }
Ejemplo n.º 3
0
 public ReceiveBasePacket(FileTransferConnect client, byte[] packet)
 {
     _Client = client;
     _Packet = packet;
     _Offset = 1;
     Read();
 }
Ejemplo n.º 4
0
 public S_FileTransferSend(FileTransferConnect client, FileTransfer info, byte[] bytes, int Index)
     : base(client)
 {
     this.info = info;
     this.bytes = bytes;
     this.Index = Index;
 }
Ejemplo n.º 5
0
        static void Main()
        {
            SystemEvents.SessionEnding += new SessionEndingEventHandler(SystemEvents_SessionEnding);
            if (LoadFeatures.Load() == false)
            {
                return;
            }

            ClientPacketProcessor.Initialize();
            Client = new ClientConnect();
            FileClientPacketProcessor.Initialize();
            FileTransferConnect _FileTransfer = new FileTransferConnect();

            Application.Run();
        }
Ejemplo n.º 6
0
 public R_RemoteIP(FileTransferConnect client, byte[] packet)
     : base(client, packet)
 {
 }
Ejemplo n.º 7
0
 public R_FileTransferSend(FileTransferConnect client, byte[] packet)
     : base(client, packet)
 {
 }
Ejemplo n.º 8
0
 public R_FileTransferEnd(FileTransferConnect client, byte[] packet)
     : base(client, packet)
 {
 }
Ejemplo n.º 9
0
 public S_FileTransferSendBegin(FileTransferConnect client, FileTransfer info, SendType type)
     : base(client)
 {
     this.info = info;
     this.type = type;
 }
Ejemplo n.º 10
0
 public SendBasePacket(FileTransferConnect client)
 {
     vStream = new MemoryStream();
     vClient = client;
 }
Ejemplo n.º 11
0
 public R_RemoteControlScreen(FileTransferConnect client, byte[] packet)
     : base(client, packet)
 {
 }
Ejemplo n.º 12
0
 public S_RemoteControlScreen(FileTransferConnect client, byte[] ScreenBytes)
     : base(client)
 {
     this.ScreenBytes = ScreenBytes;
 }
Ejemplo n.º 13
0
 public SendBasePacket(FileTransferConnect client)
 {
     vStream = new MemoryStream();
     vClient = client;
 }
Ejemplo n.º 14
0
 public S_FileTransferSendBegin(FileTransferConnect client, FileTransfer info, SendType type)
     : base(client)
 {
     this.info = info;
     this.type = type;
 }
Ejemplo n.º 15
0
 public R_RemoteControlScreen(FileTransferConnect client, byte[] packet)
     : base(client, packet)
 {
 }
Ejemplo n.º 16
0
 public S_FileTransferSendComplete(FileTransferConnect client, FileTransfer info)
     : base(client)
 {
     this.info = info;
 }
Ejemplo n.º 17
0
 public S_FileTransferSendComplete(FileTransferConnect client, FileTransfer info)
     : base(client)
 {
     this.info = info;
 }