LeviLamina
Loading...
Searching...
No Matches
PacketizedTCP.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/raknet/TCPInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace RakNet { struct Packet; }
11namespace RakNet { struct SystemAddress; }
12// clang-format on
13
14namespace RakNet {
15
17public:
18 // member variables
19 // NOLINTBEGIN
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 PacketizedTCP& operator=(PacketizedTCP const&);
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 0
38 virtual ~PacketizedTCP() /*override*/ = default;
39
40 // vIndex: 1
41 virtual void
42 Send(char const* data, uint length, ::RakNet::SystemAddress const& systemAddress, bool broadcast) /*override*/;
43
44 // vIndex: 2
45 virtual bool SendList(
46 char const** data,
47 uint const* lengths,
48 int const numParameters,
49 ::RakNet::SystemAddress const& systemAddress,
50 bool broadcast
51 ) /*override*/;
52
53 // vIndex: 4
54 virtual ::RakNet::Packet* Receive() /*override*/;
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66
67 // NOLINTEND
68};
69
70} // namespace RakNet
Definition Packet.h:26
Definition PacketizedTCP.h:16
Definition TCPInterface.h:13
Definition SystemAddress.h:7
Definition Alias.h:14