Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: jingle/glue/fake_ssl_client_socket.cc

Issue 2235973002: Add a SetDoNotFragment() method to DatagramSocket, and call this for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Blimp Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: jingle/glue/fake_ssl_client_socket.cc
diff --git a/jingle/glue/fake_ssl_client_socket.cc b/jingle/glue/fake_ssl_client_socket.cc
index 7270b18c1ad6de70b0db9717434990f27866c3e4..f5be222b95c9f0968550f48dfc8a97fb89981a94 100644
--- a/jingle/glue/fake_ssl_client_socket.cc
+++ b/jingle/glue/fake_ssl_client_socket.cc
@@ -114,6 +114,10 @@ int FakeSSLClientSocket::SetSendBufferSize(int32_t size) {
return transport_socket_->SetSendBufferSize(size);
}
+int FakeSSLClientSocket::SetDoNotFragment(bool do_not_fragment) {
+ return transport_socket_->SetDoNotFragment(do_not_fragment);
+}
+
int FakeSSLClientSocket::Connect(const net::CompletionCallback& callback) {
// We don't support synchronous operation, even if
// |transport_socket_| does.

Powered by Google App Engine
This is Rietveld 408576698