QuicStatusInd

Namespace inet

QuicStatusInd

enum

QUIC indications, sent by ~QUIC to the application. ~QUIC will set these constants as message kind on messages it sends to the application.

<b>See also:</b> ~QUICControlInfo, ~QUICCommandCode, ~Quic

Source code

//
// QUIC indications, sent by ~QUIC to the application. ~QUIC will set these
// constants as message kind on messages it sends to the application.
//
// @see ~QUICControlInfo, ~QUICCommandCode, ~Quic
//
enum QuicStatusInd
{
    QUIC_I_DATA = 1;
    QUIC_I_DATA_AVAILABLE = 2;
    QUIC_I_ERROR = 3;
    QUIC_I_ESTABLISHED = 4;
    QUIC_I_CONNECTION_AVAILABLE = 5;
    QUIC_I_CLOSED = 6;
    QUIC_I_DESTROYED = 7;
    QUIC_I_SENDQUEUE_FULL = 8;
    QUIC_I_SENDQUEUE_DRAIN = 9;
    QUIC_I_MSG_REJECTED = 10;
    QUIC_I_NEW_TOKEN = 11;
}

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