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 virtual ~MdnsResponderInterface() = default;
17
18 virtual void CreateNameForAddress(
19 ::rtc::IPAddress const&,
20 ::std::function<void(::rtc::IPAddress const&, ::std::string_view)>
21 ) = 0;
22
23 virtual void RemoveNameForAddress(::rtc::IPAddress const&, ::std::function<void(bool)>) = 0;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29
30 // NOLINTEND
31};
32
33} // namespace webrtc
Definition IPAddress.h:7
Definition MdnsResponderInterface.h:12