QuicZeroRttClient
Package: inet.applications.quicapp
QuicZeroRttClient
simple module(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 | "" |
comma separated list of addresses |
| localPort | int | 0 |
port number to listen on |
| connectAddress | string |
server address (may be symbolic) |
|
| connectPort | int |
port number to connect to |
|
| invalidClientTokenString | bool | false |
app provides a client token with an invalid format (empty string) |
| sendInvalidToken | bool | false |
app provides a client token with a valid format but a wrong token number |
Properties
| Name | Value | Description |
|---|---|---|
| class | QuicZeroRttClient |
Gates
| Name | Direction | Size | Description |
|---|---|---|---|
| socketIn | input | ||
| socketOut | output |
Source code
simple QuicZeroRttClient extends SimpleModule like IApp { parameters: @class(QuicZeroRttClient); string localAddress = default(""); // comma separated list of addresses int localPort = default(0); // port number to listen on string connectAddress; // server address (may be symbolic) int connectPort; // port number to connect to bool invalidClientTokenString = default(false); // app provides a client token with an invalid format (empty string) bool sendInvalidToken = default(false); // app provides a client token with a valid format but a wrong token number gates: input socketIn; output socketOut; }File: src/inet/applications/quicapp/QuicZeroRttClient.ned