public UDPRelay(ShadowsocksController controller)
 {
     this._controller = controller;
     this._cache      = new LRUCache <IPEndPoint, UDPHandler>(512); // todo: choose a smart number
 }
Exemple #2
0
 public UDPRelay(Configuration config)
 {
     this._config = config;
     this._cache  = new LRUCache <IPEndPoint, UDPHandler>(512); // todo: choose a smart number
 }