Compound Module PPPInterfaceNoQueue

File: NetworkInterfaces/PPP/PPPInterfaceNoQueue.ned

PPP interface. Assumes inifinite queue.

See also: PPPInterface

ppp: PPP

Usage diagram:

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.

Contains the following modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

PPP

PPP implementation.

Gates:

Name Direction Description
physIn input
physOut output
netwIn input
netwOut output

Unassigned submodule parameters:

Name Type Description

Source code:

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