NED File src/inet/routing/ospfv3/Ospfv3.ned
Name | Type | Description |
---|---|---|
Ospfv3 | compound module | (no description) |
Source code
// // This program 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 3 of the License, or // (at your option) any later version. // // This program 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. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see http://www.gnu.org/licenses/. // package inet.routing.ospfv3; import inet.routing.contract.IOspf; module Ospfv3 like IOspf { parameters: string interfaceTableModule; // The path to the InterfaceTable module string routingTableModule; string routingTableModule6; *.interfaceTableModule = default(absPath(interfaceTableModule)); *.routingTableModule = default(absPath(routingTableModule)); *.routingTableModule6 = default(absPath(routingTableModule6)); @display("bgb=510,238;i=block/network2"); gates: input ipIn @labels(Ipv6ControlInfo/up); output ipOut @labels(Ipv6ControlInfo/down); submodules: ospfv3Splitter: Ospfv3Splitter { @display("p=254,176"); } connections: ipIn --> ospfv3Splitter.ipIn; ipOut <-- ospfv3Splitter.ipOut; }