Simple Module UDPVideoStreamCli

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

C++ definition

Video streaming client.

See also: UDPVideoStreamSvr

UDPVideoStreamCli

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Parameters:

Name Type Default value Description
localPort int
serverAddress string
serverPort int
startTime double 1s

Properties:

Name Value Description
display i=block/app

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);
        @display("i=block/app");
    gates:
        input udpIn @labels(UDPControlInfo/up);
        output udpOut @labels(UDPControlInfo/down);
}