예제 #1
0
 public LeagueServer(Address address, byte[] key, List <int> cids)
 {
     _host     = new Host();
     _blowfish = new BlowFish(key);
     _host.Create(address, 32, 8, 0, 0);
     foreach (var cid in cids)
     {
         _peers[cid] = null;
     }
 }