LeviLamina
Loading...
Searching...
No Matches
TurnCustomizer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cricket { class PortInterface; }
8namespace cricket { class StunMessage; }
9// clang-format on
10
11namespace webrtc {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual void MaybeModifyOutgoingStunMessage(::cricket::PortInterface*, ::cricket::StunMessage*) = 0;
19
20 // vIndex: 1
21 virtual bool AllowChannelData(::cricket::PortInterface*, void const*, uint64, bool) = 0;
22
23 // vIndex: 2
24 virtual ~TurnCustomizer() = default;
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38};
39
40} // namespace webrtc
Definition PortInterface.h:29
Definition StunMessage.h:23
Definition TurnCustomizer.h:13