blob: 33e71abbc7a802cfd435c5250bc22d6ef6103f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_net_StunAddrsRequestParent_h
#define mozilla_net_StunAddrsRequestParent_h
#include "mozilla/net/PStunAddrsRequestParent.h"
struct MDNSService;
namespace mozilla::net {
class StunAddrsRequestParent : public PStunAddrsRequestParent {
friend class PStunAddrsRequestParent;
public:
StunAddrsRequestParent();
NS_IMETHOD_(MozExternalRefCountType) AddRef();
NS_IMETHOD_(MozExternalRefCountType) Release();
mozilla::ipc::IPCResult Recv__delete__() override;
void OnQueryComplete(const nsACString& hostname,
const Maybe<nsCString>& address);
protected:
virtual ~StunAddrsRequestParent();
virtual mozilla::ipc::IPCResult RecvGetStunAddrs() override;
virtual mozilla::ipc::IPCResult RecvRegisterMDNSHostname(
const nsACString& hostname, const nsACString& address) override;
virtual mozilla::ipc::IPCResult RecvQueryMDNSHostname(
const nsACString& hostname) override;
virtual mozilla::ipc::IPCResult RecvUnregisterMDNSHostname(
const nsACString& hostname) override;
virtual void ActorDestroy(ActorDestroyReason why) override;
nsCOMPtr<nsIThread> mMainThread;
nsCOMPtr<nsISerialEventTarget> mSTSThread;
void GetStunAddrs_s();
void SendStunAddrs_m(const NrIceStunAddrArray& addrs);
void OnQueryComplete_m(const nsACString& hostname,
const Maybe<nsCString>& address);
ThreadSafeAutoRefCnt mRefCnt;
NS_DECL_OWNINGTHREAD
private:
bool mIPCClosed; // true if IPDL channel has been closed (child crash)
class MDNSServiceWrapper {
public:
explicit MDNSServiceWrapper(const std::string& ifaddr);
void RegisterHostname(const char* hostname, const char* address);
void QueryHostname(void* data, const char* hostname);
void UnregisterHostname(const char* hostname);
NS_IMETHOD_(MozExternalRefCountType) AddRef();
NS_IMETHOD_(MozExternalRefCountType) Release();
protected:
ThreadSafeAutoRefCnt mRefCnt;
NS_DECL_OWNINGTHREAD
private:
virtual ~MDNSServiceWrapper();
void StartIfRequired();
std::string ifaddr;
MDNSService* mMDNSService = nullptr;
};
static StaticRefPtr<MDNSServiceWrapper> mSharedMDNSService;
};
} // namespace mozilla::net
#endif // mozilla_net_StunAddrsRequestParent_h
|