LeviLamina
Loading...
Searching...
No Matches
Socket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7struct Socket {
8public:
9 // Socket inner types declare
10 // clang-format off
11 struct ReceiveBuffer;
12 // clang-format on
13
14 // Socket inner types define
15 enum class ConnState : uint {};
16
17 enum class Option : uint {};
18
19 struct ReceiveBuffer {};
20};
21
22} // namespace rtc
Definition Option.h:5
Definition Socket.h:19
Definition Socket.h:7