Files
Towards/modules/network/include/protocol/quicr/QuicrConnectionState.hpp
T

11 lines
180 B
C++
Raw Normal View History

2026-07-18 14:31:15 +02:00
#pragma once
namespace tw::quicr {
enum QuicrConnectionState {
AwaitingHello = 0,
AwaitingHelloAck = 1,
Established = 2,
TimedOut = 3
};
}