NED File src/inet/networklayer/ted/TED.ned
Name | Type | Description |
---|---|---|
TED | simple module |
Traffic Engineering Database. Stores network topology with detailed link information, including total and reserved bandwidths. |
Source code
// // (C) 2005 Vojtech Janota // // This library is free software, you can redistribute it // and/or modify // it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; // either version 2 of the License, or any later version. // The library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // See the GNU Lesser General Public License for more details. // package inet.networklayer.ted; // // Traffic Engineering Database. Stores network topology with detailed // link information, including total and reserved bandwidths. // // ~TED is filled in and kept up-to-date via link state routing protocols, // like ~LinkStateRouting or (in the future) OSPF-TE. // // TED exposes several public methods for querying the current network state // and allows ~RSVP and individual applications to calculate feasible LSPs // meeting the chosen bandwidth criteria. // simple TED { parameters: string interfaceTableModule; // The path to the InterfaceTable module string routingTableModule; @display("i=block/table"); }