A failed IP router. Simply discards all packets it receives, and that's all.
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
Name | Type | Default value | Description |
---|---|---|---|
namid | int | ||
routingFile | string | "" |
Name | Value | Description |
---|---|---|
node |
Name | Direction | Size | Description |
---|---|---|---|
pppg [ ] | inout | ||
ethg [ ] | inout |
// // A failed \IP router. Simply discards all packets it receives, and that's all. // module FailedRouter { parameters: @node(); int namid; string routingFile = default(""); gates: inout pppg[]; inout ethg[]; submodules: dummy: Dummy { gates: in[sizeof(pppg)]; out[sizeof(pppg)]; ethIn[sizeof(ethg)]; ethOut[sizeof(ethg)]; } connections allowunconnected: for i=0..sizeof(pppg)-1 { pppg$i[i] --> dummy.in[i]; dummy.out[i] --> pppg$o[i]; } for i=0..sizeof(ethg)-1 { ethg$i[i] --> dummy.ethIn[i]; dummy.ethOut[i] --> ethg$o[i]; } }