PPP interface. Assumes inifinite queue.
See also: PPPInterface
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 | Value | Description |
---|---|---|
display | i=block/ifcard |
Name | Direction | Size | Description |
---|---|---|---|
netwIn | input | ||
netwOut | output | ||
phys | inout |
Name | Type | Default value | Description |
---|---|---|---|
ppp.mtu | int | 4470 |
// // \PPP interface. Assumes inifinite queue. // // @see PPPInterface // module PPPInterfaceNoQueue like INetworkInterface { parameters: @display("i=block/ifcard"); gates: input netwIn; output netwOut; inout phys @labels(PPPFrame); submodules: ppp: PPP { parameters: queueModule = ""; txQueueLimit = 100000; // prevents overflow in bogus simulations @display("p=80,80;q=txQueue"); } connections: netwIn --> { @display("m=n"); } --> ppp.netwIn; netwOut <-- { @display("m=n"); } <-- ppp.netwOut; phys <--> { @display("m=s"); } <--> ppp.phys; }