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

Unified Diff: webrtc/base/macasyncsocket.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/macasyncsocket.cc
diff --git a/webrtc/base/macasyncsocket.cc b/webrtc/base/macasyncsocket.cc
index 8f811ea8b668ed5d8bbab7acc51a61f18cd1feed..179db7fef46399901e2f872acbfdbb4778c9a036 100644
--- a/webrtc/base/macasyncsocket.cc
+++ b/webrtc/base/macasyncsocket.cc
@@ -276,6 +276,11 @@ int MacAsyncSocket::Close() {
return 0;
}
+int MacAsyncSocket::BindToNetwork(NetworkHandle handle) {
+ ASSERT(false && "NYI");
+ return 0;
+}
+
int MacAsyncSocket::EstimateMTU(uint16_t* mtu) {
ASSERT(false && "NYI");
return -1;

Powered by Google App Engine
This is Rietveld 408576698