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