File: NetworkInterfaces/PPP/PPPInterfaceNoQueue.ned
PPP interface. Assumes inifinite queue.
See also: PPPInterface
The following diagram shows usage relationships between modules, networks and channels. Unresolved module (and channel) types are missing from the diagram. Click here to see the full picture.
If a module type shows up more than once, that means it has been defined in more than one NED file.
PPP | PPP implementation. |
Name | Direction | Description |
---|---|---|
physIn | input | |
physOut | output | |
netwIn | input | |
netwOut | output |
Name | Type | Description |
---|
module PPPInterfaceNoQueue gates: in: physIn; out: physOut; in: netwIn; out: netwOut; submodules: ppp: PPP; parameters: queueModule = "", txQueueLimit = 100000; // prevents overflow in bogus simulations display: "i=block/rxtx;p=80,80;q=txQueue"; connections: netwIn --> ppp.netwIn display "m=n"; netwOut <-- ppp.netwOut display "m=n"; physIn --> ppp.physIn display "m=s"; physOut <-- ppp.physOut display "m=s"; endmodule