00001
00002
00003
00004
00005
00006
00007
00008
00009 package hr.fer.zesoi.cyclops;
00010
00011 import java.util.*;
00012
00013
00018 class RIPTableElement
00019 {
00020
00022 Node next_node;
00023
00025 Node destination_node;
00026
00028 float cost;
00029
00034 int route_timeout;
00035
00041 int garbage_timeout;
00042
00044 boolean route_change_flag;
00045
00052 public RIPTableElement (Node destination_node, Node next_node, float cost)
00053 {
00054 this.destination_node = destination_node;
00055 this.next_node = next_node;
00056 this.cost = cost;
00057 route_timeout = 5;
00058 garbage_timeout = 5;
00059 route_change_flag = true;
00060 }
00061
00062
00063 }
00064