예제 #1
0
파일: Simulator.cs 프로젝트: xujyan/brunet
 public void ResetConnections() {
   this._con_table = new SimConnectionTable();
 }
예제 #2
0
파일: Simulator.cs 프로젝트: xujyan/brunet
 public SimNode(AHAddress address, NatType nat, int idx) {
   this.LocalAddress = address;
   this.Nat = nat;
   this.Idx = idx;
   this._con_table = new SimConnectionTable();
 }