aboutsummaryrefslogtreecommitdiff
path: root/p2p/base/port_allocator.cc
diff options
context:
space:
mode:
Diffstat (limited to 'p2p/base/port_allocator.cc')
-rw-r--r--p2p/base/port_allocator.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/p2p/base/port_allocator.cc b/p2p/base/port_allocator.cc
index b13896c4bc..d8ff637e2c 100644
--- a/p2p/base/port_allocator.cc
+++ b/p2p/base/port_allocator.cc
@@ -317,7 +317,8 @@ Candidate PortAllocator::SanitizeCandidate(const Candidate& c) const {
// For a local host candidate, we need to conceal its IP address candidate if
// the mDNS obfuscation is enabled.
bool use_hostname_address =
- c.type() == LOCAL_PORT_TYPE && MdnsObfuscationEnabled();
+ (c.type() == LOCAL_PORT_TYPE || c.type() == PRFLX_PORT_TYPE) &&
+ MdnsObfuscationEnabled();
// If adapter enumeration is disabled or host candidates are disabled,
// clear the raddr of STUN candidates to avoid local address leakage.
bool filter_stun_related_address =