QuicConnectionInfo

Namespace inet

QuicConnectionInfo

class

C++ definition

Sent with message kind QUIC_I_ESTABLISHED to let the app know about the local and remote IP address and port.

<b>See also:</b> ~QuicCommandCode, ~IQuic

Extends

Name Type Description
QuicCommand (unknown -- not in documented files)

Fields

Name Type Description
localAddr L3Address
remoteAddr L3Address
localPort uint16_t
remotePort uint16_t

Source code

//
// Sent with message kind QUIC_I_ESTABLISHED to let the app know
// about the local and remote IP address and port.
//
// @see ~QuicCommandCode, ~IQuic
//
class QuicConnectionInfo extends QuicCommand
{
    L3Address localAddr;
    L3Address remoteAddr;
    uint16_t localPort;
    uint16_t remotePort;
}

File: src/inet/transportlayer/contract/quic/QuicCommand.msg