LeviLamina
Loading...
Searching...
No Matches
OpenSSLAesAdapter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/nether_net/AesAdapter.h"
7#include "mc/deps/nether_net/utils/ErrorOr.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace rtc { class SocketAddress; }
12// clang-format on
13
14namespace NetherNet {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 OpenSSLAesAdapter& operator=(OpenSSLAesAdapter const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 22
33 virtual ::NetherNet::ErrorOr<void, ::std::error_code> SetKey(uint64 id) /*override*/;
34
35 // vIndex: 5
36 virtual int Send(void const* pv, uint64 cb) /*override*/;
37
38 // vIndex: 6
39 virtual int SendTo(void const* pv, uint64 cb, ::rtc::SocketAddress const& addr) /*override*/;
40
41 // vIndex: 7
42 virtual int Recv(void* pv, uint64 cb, int64* timestamp) /*override*/;
43
44 // vIndex: 9
45 virtual int RecvFrom(void* pv, uint64 cb, ::rtc::SocketAddress* paddr, int64* timestamp) /*override*/;
46
47 // vIndex: 0
48 virtual ~OpenSSLAesAdapter() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI ::NetherNet::ErrorOr<void, ::std::error_code> $SetKey(uint64 id);
61
62 MCAPI int $Send(void const* pv, uint64 cb);
63
64 MCAPI int $SendTo(void const* pv, uint64 cb, ::rtc::SocketAddress const& addr);
65
66 MCAPI int $Recv(void* pv, uint64 cb, int64* timestamp);
67
68 MCAPI int $RecvFrom(void* pv, uint64 cb, ::rtc::SocketAddress* paddr, int64* timestamp);
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCAPI static void** $vftableForHasSlots();
75
76 MCAPI static void** $vftableForSocket();
77 // NOLINTEND
78};
79
80} // namespace NetherNet
Definition AesAdapter.h:11
Definition OpenSSLAesAdapter.h:16
Definition SocketAddress.h:12
Definition Alias.h:14