示例#1
0
        // PUBLIC FONKSYONLAR


        // Bir ASMES sunucusu oluþturdum

        /// <param name="port">Dinlenecek port</param>
        public ASMESSunucusu(int port)
        {
            this.port              = port;
            this.istemciler        = new SortedList <long, Istemci>();
            this.baglantiDinleyici = new BaglantiDinleyici(this, port);
        }
示例#2
0
 // PUBLIC FONKSYONLAR /////////////////////////////////////////////////
 /// Bir SPIA sunucusu oluþturur        
 /// <param name="port">Dinlenecek port</param>
 public SPIAServer(int port)
 {
     this.port = port;
     this.clients = new SortedList<long, Client>();
     this.baglantiDinleyici = new BaglantiDinleyici(this, port);
 }