| Index: jingle/glue/channel_socket_adapter.cc
|
| ===================================================================
|
| --- jingle/glue/channel_socket_adapter.cc (revision 224785)
|
| +++ jingle/glue/channel_socket_adapter.cc (working copy)
|
| @@ -77,7 +77,8 @@
|
|
|
| int result;
|
| if (channel_->writable()) {
|
| - result = channel_->SendPacket(buffer->data(), buffer_size);
|
| + result = channel_->SendPacket(buffer->data(), buffer_size,
|
| + talk_base::DSCP_NO_CHANGE);
|
| if (result < 0) {
|
| result = net::MapSystemError(channel_->GetError());
|
|
|
| @@ -171,7 +172,8 @@
|
| // Try to send the packet if there is a pending write.
|
| if (!write_callback_.is_null()) {
|
| int result = channel_->SendPacket(write_buffer_->data(),
|
| - write_buffer_size_);
|
| + write_buffer_size_,
|
| + talk_base::DSCP_NO_CHANGE);
|
| if (result < 0)
|
| result = net::MapSystemError(channel_->GetError());
|
|
|
|
|