LeviLamina
Loading...
Searching...
No Matches
AsyncStunTCPSocket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/AsyncTCPSocketBase.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace rtc { class Socket; }
11namespace rtc { struct PacketOptions; }
12// clang-format on
13
14namespace cricket {
15
17public:
18 // prevent constructor by default
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 3
25 virtual int Send(void const* data, uint64 len, ::rtc::PacketOptions const& options) /*override*/;
26
27 // vIndex: 11
28 virtual uint64 ProcessInput(::rtc::ArrayView<uchar const> data) /*override*/;
29
30 // vIndex: 0
31 virtual ~AsyncStunTCPSocket() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCNAPI explicit AsyncStunTCPSocket(::rtc::Socket* socket);
38
39 MCNAPI uint64 GetExpectedLength(void const* data, uint64 len, int* pad_bytes);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(::rtc::Socket* socket);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI int $Send(void const* data, uint64 len, ::rtc::PacketOptions const& options);
52
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace cricket
Definition AsyncStunTCPSocket.h:16
static MCAPI void ** $vftable()
MCAPI int $Send(void const *data, uint64 len, ::rtc::PacketOptions const &options)
MCAPI uint64 $ProcessInput(::rtc::ArrayView< uchar const > data)
MCAPI AsyncStunTCPSocket(::rtc::Socket *socket)
MCAPI void * $ctor(::rtc::Socket *socket)
MCAPI uint64 GetExpectedLength(void const *data, uint64 len, int *pad_bytes)
Definition _HeaderOutputPredefine.h:260
Definition AsyncTCPSocketBase.h:18
Definition Socket.h:12
Definition PacketOptions.h:10