QuicCommandCode
Namespace inet
QuicCommandCode
enumQUIC command codes, sent by the application to ~QUIC. These constants should be set as message kind on messages sent to the ~QUIC entity.
<b>See also:</b> ~QUICControlInfo, ~QUICStatusInd, ~QUIC
Source code
// // QUIC command codes, sent by the application to ~QUIC. These constants // should be set as message kind on messages sent to the ~QUIC entity. // // @see ~QUICControlInfo, ~QUICStatusInd, ~QUIC // enum QuicCommandCode { QUIC_C_CREATE_PCB = 1; QUIC_C_OPEN_PASSIVE = 2; QUIC_C_OPEN_ACTIVE = 3; QUIC_C_CLOSE = 4; QUIC_C_SEND = 5; QUIC_C_RECEIVE = 6; QUIC_C_ACCEPT = 7; QUIC_C_CONNECT_AND_SEND = 8; }File: src/inet/transportlayer/contract/quic/QuicCommand.msg