Simple Module UdpOutDevice

Package: oversim.underlay.singlehostunderlay
File: src/underlay/singlehostunderlay/UdpOutDevice.ned

C++ definition

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

UdpOutDevice

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Parameters:

Name Type Default value Description
mtu int

maximum transmission unit of the underlaying network

Gates:

Name Direction Size Description
netwIn input

incoming gate from network

netwOut output

outgoing gate to network

Source code:

// 
// 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
//
simple UdpOutDevice like RealworldDevice
{
    parameters:
        int mtu; // maximum transmission unit of the underlaying network

    gates:
        input netwIn;    // incoming gate from network
        output netwOut;    // outgoing gate to network
}