QuicOrderedReceiver
Package: inet.applications.quicapp
QuicOrderedReceiver
simple moduleA QUIC server that reads and discards all received data.
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 |
Properties
| Name | Value | Description |
|---|---|---|
| class | QuicOrderedReceiver |
Gates
| Name | Direction | Size | Description |
|---|---|---|---|
| socketIn | input | ||
| socketOut | output |
Signals
| Name | Type | Unit | Description |
|---|---|---|---|
| bytesReceived |
Statistics
| Name | Title | Source | Record | Unit | Interpolation Mode | Description |
|---|---|---|---|---|---|---|
| bytesReceived | vector |
Source code
// A QUIC server that reads and discards all received data. simple QuicOrderedReceiver extends SimpleModule like IApp { parameters: @class(QuicOrderedReceiver); @signal[bytesReceived]; @statistic[bytesReceived](record=vector); string localAddress = default(""); // comma separated list of addresses int localPort = default(0); // port number to listen on gates: input socketIn; output socketOut; }File: src/inet/applications/quicapp/QuicOrderedReceiver.ned