/* Constructor */ /// <summary> /// Initializes a new instance of the <see cref="TcpServer" /> class. /// </summary> public TcpServer(int port = 60606) { this.port = port; torrentClient = new TorrentsData(); this.TorrentAdded += AddTorrent; this.TorrentRemoved += RemoveTorrent; }