LeviLamina
Loading...
Searching...
No Matches
StunRequest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cricket { class StunMessage; }
8namespace cricket { class StunRequestManager; }
9namespace webrtc { class TimeDelta; }
10// clang-format on
11
12namespace cricket {
13
15public:
16 // member variables
17 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 StunRequest& operator=(StunRequest const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~StunRequest() = default;
38
39 // vIndex: 1
40 virtual void OnResponse(::cricket::StunMessage*);
41
42 // vIndex: 2
43 virtual void OnErrorResponse(::cricket::StunMessage*);
44
45 // vIndex: 3
46 virtual void OnTimeout();
47
48 // vIndex: 4
49 virtual void OnSent();
50
51 // vIndex: 5
52 virtual int resend_delay();
53 // NOLINTEND
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCNAPI int Elapsed() const;
59
61
63
64 MCNAPI void SendInternal();
65
66 MCNAPI StunRequest(::cricket::StunRequestManager&, ::std::unique_ptr<::cricket::StunMessage>);
67
68 MCNAPI ::cricket::StunMessage const* msg() const;
69
70 MCNAPI void set_timed_out();
71
72 MCNAPI int type();
73 // NOLINTEND
74
75public:
76 // constructor thunks
77 // NOLINTBEGIN
78 MCNAPI void* $ctor(::cricket::StunRequestManager&, ::std::unique_ptr<::cricket::StunMessage>);
79 // NOLINTEND
80
81public:
82 // virtual function thunks
83 // NOLINTBEGIN
84
85 // NOLINTEND
86
87public:
88 // vftables
89 // NOLINTBEGIN
90 MCNAPI static void** $vftable();
91 // NOLINTEND
92};
93
94} // namespace cricket
Definition StunMessage.h:23
Definition StunRequestManager.h:14
Definition StunRequest.h:14
MCAPI void SendInternal()
MCAPI::cricket::StunMessage const * msg() const
MCAPI void SendDelayed(::webrtc::TimeDelta)
MCAPI void Send(::webrtc::TimeDelta)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::cricket::StunRequestManager &, ::std::unique_ptr<::cricket::StunMessage >)
MCAPI int Elapsed() const
MCAPI StunRequest(::cricket::StunRequestManager &, ::std::unique_ptr<::cricket::StunMessage >)
MCAPI void set_timed_out()
Definition TimeDelta.h:10
Definition Alias.h:14