Ospfv3Splitter.ned
NED File src/inet/routing/ospfv3/Ospfv3Splitter.ned
| Name | Type | Description |
|---|---|---|
| Ospfv3Splitter | simple module | (no description) |
Source code
package inet.routing.ospfv3; import inet.common.SimpleModule; simple Ospfv3Splitter extends SimpleModule { parameters: @class(Ospfv3Splitter); // these are parameters which need to be filled in the omnetpp.ini file xml ospfv3RoutingConfig; xml ospfv3IntConfig; string interfaceTableModule; string routingTableModule; string routingTableModule6; gates: input ipIn @labels(Ipv6ControlInfo/up); output ipOut @labels(Ipv6ControlInfo/down); // input ipIn @labels(Ospfv3Packet/up); // output ipOut @labels(Ospfv3Packet/down); input processIn[]; output processOut[]; }