Chromium Code Reviews| Index: content/browser/renderer_host/p2p/socket_host_udp.cc |
| diff --git a/content/browser/renderer_host/p2p/socket_host_udp.cc b/content/browser/renderer_host/p2p/socket_host_udp.cc |
| index bcfb282a2c42c52b3bf34de53a68ed25c05f2402..04da236725ccbb008c89accd42b3aa43c44ce108 100644 |
| --- a/content/browser/renderer_host/p2p/socket_host_udp.cc |
| +++ b/content/browser/renderer_host/p2p/socket_host_udp.cc |
| @@ -66,6 +66,7 @@ P2PSocketHostUdp::P2PSocketHostUdp(IPC::Sender* message_sender, int id) |
| socket_(new net::UDPServerSocket(NULL, net::NetLog::Source())), |
| send_pending_(false), |
| send_packet_count_(0) { |
| + socket_->SetToS(net::DSCP_AF41); |
|
juberti2
2013/08/08 00:44:45
Seems a little dangerous to set this by default. S
hubbe
2013/08/08 23:23:01
Changed this CL to plumb dscp through the IPC laye
|
| } |
| P2PSocketHostUdp::~P2PSocketHostUdp() { |