Exemple #1
0
 static void Main(string[] args)
 {
     const int port = 9050;
     const int serverPort = 11000;
     const string hostname = "127.0.0.1";
     var client = new Client(hostname, port, serverPort);
 }
Exemple #2
0
 public ClientMessagePartsActive(int NumOfParts, ushort id, UDP.Client driver) : base(NumOfParts)
 {
     ID      = id;
     _Driver = driver;
     Parts   = new List <byte[]>();
 }