LeviLamina
Loading...
Searching...
No Matches
SocketState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace dcsctp {
6
7enum class SocketState : int {
8 KClosed = 0,
9 KConnecting = 1,
10 KConnected = 2,
11 KShuttingDown = 3,
12};
13
14}