예제 #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
파일: SPIAServer.cs 프로젝트: sezertt/ROPv1
 // 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);
 }