Simple Module UdpOutDevice

File: Underlay/SingleHostUnderlay/UdpOutDevice.ned

C++ definition: click here

UdpOutDevice is a pseudo interface that allows communication with the real world through the UdpOutScheduler WARNING: This does ONLY work with the combination IPv4|UDP|OverlayMessage

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.

Parameters:

Name Type Description
mtu numeric

maximum transmission unit of the underlaying network

Gates:

Name Direction Description
netwIn input

incoming gate from network

netwOut output

outgoing gate to network

Source code:

simple UdpOutDevice
    parameters:
        mtu: numeric; // maximum transmission unit of the underlaying network

    gates:
        in: netwIn;    // incoming gate from network
        out: netwOut;    // outgoing gate to network
endsimple