Simple Module UDPVideoStreamCli

Package: inet.applications.udpapp
File: src/applications/udpapp/UDPVideoStreamCli.ned

C++ definition: click here

Video streaming client.

See also: UDPVideoStreamSvr

UDPVideoStreamCli

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
localPort int
serverAddress string
serverPort int
startTime double 1s

Gates:

Name Direction Size Description
udpIn input
udpOut output

Source code:

//
// Video streaming client.
//
// @see UDPVideoStreamSvr
//
simple UDPVideoStreamCli like UDPApp
{
    parameters:
        int localPort;
        string serverAddress;
        int serverPort;
        double startTime @unit("s") = default(1s);
    gates:
        input udpIn;
        output udpOut;
}