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

Unified Diff: webrtc/base/asyncsocket.cc

Issue 1556743002: Bind a socket to a network if the network handle is set. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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: webrtc/base/asyncsocket.cc
diff --git a/webrtc/base/asyncsocket.cc b/webrtc/base/asyncsocket.cc
index db451c6382cbc48d1107c13103f1dfd7ad526a9a..bc011e222f8cdc59db766d6f5eb9c8ec9c93f15b 100644
--- a/webrtc/base/asyncsocket.cc
+++ b/webrtc/base/asyncsocket.cc
@@ -50,6 +50,10 @@ int AsyncSocketAdapter::Bind(const SocketAddress& addr) {
return socket_->Bind(addr);
}
+int AsyncSocketAdapter::BindToNetwork(NetworkHandle handle) {
+ return 0;
+}
+
int AsyncSocketAdapter::Connect(const SocketAddress& addr) {
return socket_->Connect(addr);
}

Powered by Google App Engine
This is Rietveld 408576698