QuicTrafficgen

Package: inet.applications.quicapp

QuicTrafficgen

simple module

C++ definition

(no description)

Inheritance diagram

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

Extends

Name Type Description
SimpleModule simple module

Base module for all INET simple modules.

Parameters

Name Type Default value Description
displayStringTextFormat string ""

Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information

localAddress string ""

Local address or empty ("")

localPort int 0

port number to listen on

connectAddress string

server address (may be symbolic)

connectPort int

port number to connect to

connectTime double 0s

Properties

Name Value Description
class QuicTrafficgen

Gates

Name Direction Size Description
socketIn input
socketOut output
generatorIn [ ] input
generatorOut [ ] output

Source code

simple QuicTrafficgen extends SimpleModule like ITrafficgenHandler
{
    parameters:
        @class(QuicTrafficgen);
        string localAddress = default(""); // Local address or empty ("")
        int localPort = default(0); // port number to listen on
        string connectAddress;  // server address (may be symbolic)
        int connectPort; // port number to connect to
        double connectTime @unit("s") = default(0s);

    gates:
        input socketIn;
        output socketOut;

        input generatorIn[];
        output generatorOut[];
}
File: src/inet/applications/quicapp/QuicTrafficgen.ned