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