示例#1
0
 public InnerServer(Transrouter bridge, TcpClient tcpClient, int id)
 {
     this.bridge      = bridge;
     this.tcpClient   = tcpClient;
     this.id          = id;
     this.clientGroup = new SortedDictionary <int, SortedDictionary <int, int> >();
     this.removeList  = new List <int>();
 }
示例#2
0
 public OuterClient(Transrouter bridge, int id)
 {
     this.bridge    = bridge;
     this.id        = id;
     this.nextIndex = -1;
 }