Ejemplo n.º 1
0
 /// <summary>
 /// Initialize an entry in the routing table from a link
 /// </summary>
 /// <param name="Dest">Target = link.target</param>
 private void Initialize(Link Dest)
 {
     table[Dest.Target()] = new RoutingTableEntry(Dest.Cost(), Dest);
 }
Ejemplo n.º 2
0
 public IRouter Target()
 {
     return(Destination == null ? null : Destination.Target());
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initialize an entry in the routing table from a link
 /// </summary>
 /// <param name="Dest">Target = link.target</param>
 private void Initialize(Link Dest)
 {
     table[Dest.Target()] = new RoutingTableEntry(Dest.Cost(), Dest);
 }