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 MCAPI int Elapsed() const;
59
60 MCAPI void Send(::webrtc::TimeDelta);
61
62 MCAPI void SendDelayed(::webrtc::TimeDelta);
63
64 MCAPI void SendInternal();
65
66 MCAPI StunRequest(::cricket::StunRequestManager&, ::std::unique_ptr<::cricket::StunMessage>);
67
68 MCAPI ::cricket::StunMessage const* msg() const;
69
70 MCAPI void set_timed_out();
71
72 MCAPI int type();
73 // NOLINTEND
74
75public:
76 // constructor thunks
77 // NOLINTBEGIN
78 MCAPI void* $ctor(::cricket::StunRequestManager&, ::std::unique_ptr<::cricket::StunMessage>);
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84
85 // NOLINTEND
86
87public:
88 // virtual function thunks
89 // NOLINTBEGIN
90
91 // NOLINTEND
92
93public:
94 // vftables
95 // NOLINTBEGIN
96 MCAPI static void** $vftable();
97 // NOLINTEND
98};
99
100} // namespace cricket
Definition StunMessage.h:23
Definition StunRequestManager.h:14
Definition StunRequest.h:14
Definition TimeDelta.h:10
Definition Alias.h:14