LeviLamina
Loading...
Searching...
No Matches
StunBindingRequest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/StunRequest.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace cricket { class StunMessage; }
11namespace cricket { class UDPPort; }
12namespace rtc { class SocketAddress; }
13// clang-format on
14
15namespace cricket {
16
18public:
19 // member variables
20 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 StunBindingRequest& operator=(StunBindingRequest const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 1
37 virtual bool CheckSkip() /*override*/;
38
39 // vIndex: 4
40 virtual void OnSkip() /*override*/;
41
42 // vIndex: 2
43 virtual void OnResponse(::cricket::StunMessage* response) /*override*/;
44
45 // vIndex: 3
46 virtual void OnErrorResponse(::cricket::StunMessage* response) /*override*/;
47
48 // vIndex: 5
49 virtual void OnTimeout() /*override*/;
50
51 // vIndex: 0
52 virtual ~StunBindingRequest() /*override*/ = default;
53 // NOLINTEND
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCNAPI
59 StunBindingRequest(::cricket::UDPPort* port, ::rtc::SocketAddress const& addr, int64 start_time, bool is_keepalive);
60 // NOLINTEND
61
62public:
63 // constructor thunks
64 // NOLINTBEGIN
65 MCNAPI void* $ctor(::cricket::UDPPort* port, ::rtc::SocketAddress const& addr, int64 start_time, bool is_keepalive);
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCNAPI bool $CheckSkip();
72
73 MCNAPI void $OnSkip();
74
75 MCNAPI void $OnResponse(::cricket::StunMessage* response);
76
78
79 MCNAPI void $OnTimeout();
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
88
89} // namespace cricket
Definition StunBindingRequest.h:17
MCAPI StunBindingRequest(::cricket::UDPPort *port, ::rtc::SocketAddress const &addr, int64 start_time, bool is_keepalive)
MCAPI void $OnErrorResponse(::cricket::StunMessage *response)
MCAPI void * $ctor(::cricket::UDPPort *port, ::rtc::SocketAddress const &addr, int64 start_time, bool is_keepalive)
MCAPI void $OnResponse(::cricket::StunMessage *response)
static MCAPI void ** $vftable()
Definition StunMessage.h:23
Definition StunRequest.h:14
Definition UDPPort.h:33
Definition SocketAddress.h:12
Definition Alias.h:14