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

Unified Diff: remoting/protocol/ssl_hmac_channel_authenticator.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
« net/udp/udp_socket_posix.cc ('K') | « net/udp/udp_socket_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/ssl_hmac_channel_authenticator.cc
diff --git a/remoting/protocol/ssl_hmac_channel_authenticator.cc b/remoting/protocol/ssl_hmac_channel_authenticator.cc
index 303aea253d1457db7e60352c3c16a0c6080f25dc..e250be8a27ba6ebc29036b0a76d830900466fc20 100644
--- a/remoting/protocol/ssl_hmac_channel_authenticator.cc
+++ b/remoting/protocol/ssl_hmac_channel_authenticator.cc
@@ -131,6 +131,11 @@ class NetStreamSocketAdapter : public net::StreamSocket {
return net::ERR_FAILED;
}
+ int SetDoNotFragment(bool do_not_fragment) override {
+ NOTREACHED();
+ return net::ERR_FAILED;
+ }
+
int Connect(const net::CompletionCallback& callback) override {
NOTREACHED();
return net::ERR_FAILED;
« net/udp/udp_socket_posix.cc ('K') | « net/udp/udp_socket_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698