Chromium Code Reviews| Index: content/renderer/p2p/port_allocator.cc |
| diff --git a/content/renderer/p2p/port_allocator.cc b/content/renderer/p2p/port_allocator.cc |
| index 7a1abdc216648d18b693d50dd36db484bfb13348..b2cc380624c307ae38010c848c6a5222c4160346 100644 |
| --- a/content/renderer/p2p/port_allocator.cc |
| +++ b/content/renderer/p2p/port_allocator.cc |
| @@ -9,9 +9,7 @@ |
| namespace content { |
| -P2PPortAllocator::Config::Config() |
| - : disable_tcp_transport(false) { |
| -} |
| +P2PPortAllocator::Config::Config() {} |
| P2PPortAllocator::Config::~Config() { |
| } |
| @@ -35,10 +33,13 @@ P2PPortAllocator::P2PPortAllocator( |
| origin_(origin) |
| { |
| uint32 flags = 0; |
| - if (config_.disable_tcp_transport) |
| - flags |= cricket::PORTALLOCATOR_DISABLE_TCP; |
| if (!config_.enable_multiple_routes) |
| flags |= cricket::PORTALLOCATOR_DISABLE_ADAPTER_ENUMERATION; |
| + if (!config_.enable_nonproxied_udp_transport) { |
| + flags |= cricket::PORTALLOCATOR_DISABLE_UDP | |
| + cricket::PORTALLOCATOR_DISABLE_STUN | |
| + cricket::PORTALLOCATOR_DISABLE_UDP_RELAY; |
|
Sergey Ulanov
2015/08/28 15:21:26
So these flags disable all UDP traffic. I'm confus
|
| + } |
| set_flags(flags); |
| set_allow_tcp_listen(false); |
| const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); |