Main Page   Packages   Class Hierarchy   Compound List   File List   Compound Members  

RIPTableElement.java

Go to the documentation of this file.
00001 /* Cyclops
00002  * FER - SPVP
00003  * Fakultet elektrotehnike i racunarstva (http://www.fer.hr/)
00004  * Unska 3, 10000 Zagreb, Hrvatska
00005  * (c) 2001 FER, Zagreb.
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     /* RIPTableElement */
00062 
00063 }
00064 /* RIPTableElement */

Generated at Thu Jun 28 03:04:21 2001 for Cyclops Network Simulator by doxygen1.2.7 written by Dimitri van Heesch, © 1997-2001