LeviLamina
Loading...
Searching...
No Matches
MdnsResponderInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace rtc { class IPAddress; }
8// clang-format on
9
10namespace webrtc {
11
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 // vIndex: 0
17 virtual ~MdnsResponderInterface() = default;
18
19 // vIndex: 1
20 virtual void
21 CreateNameForAddress(::rtc::IPAddress const&, ::std::function<void(::rtc::IPAddress const&, ::std::string_view)>) = 0;
22
23 // vIndex: 2
24 virtual void RemoveNameForAddress(::rtc::IPAddress const&, ::std::function<void(bool)>) = 0;
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 IPAddress.h:7
Definition MdnsResponderInterface.h:12