QuicConnectionAvailableInfo

Namespace inet

QuicConnectionAvailableInfo

class

C++ definition

Sent with message kind QUIC_I_CONNECTION_AVAILABLE, 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
newSocketId int

Source code

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

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