commit | faf376cd7debfd3d36dda3c91e3fbe1cd43e3610 | [log] [tgz] |
---|---|---|
author | Jonas Oreland <jonaso@webrtc.org> | Fri Apr 01 11:57:05 2022 |
committer | WebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Apr 01 13:16:26 2022 |
tree | 92b1d08f50c6ba3fd49a088243b4225034d397ff | |
parent | 4aa2535add92fe826f766a6c95580548a105bd7d [diff] |
Implement IsAdapterAvailable in AndroidNetworkMonitor This cl/ fixes a race condition with the recent additions to NetworkMonitorAutoDetect (getAllNetworksFromCache). The getAllNetworksFromCache-feature uses the by the Android team preferred way of enumerating networks, i.e to register network listeners. This however introduces a unpleasant race condition like this: 1) network.cc discover rmnet0 2) BasicPortAllocator tries to create UDP port on rmnet0 - This fails as BindSocketToNetwork requires a android handle. 3) NetworkMonitorAutoDetect gets callback with rmnet0 4) BasicPortAllocator tries to create TCP port on rmnet0 - This succeeds. 5) Since rmnet0 has one working port, there will not be any new ports created on that network => We end up with a TCP only connection :( --- By impl. IsAdapterAvailable, we make sure that the network will not be used by BasicPortAllocator (or anyone else!) until we support binding to it. The IsAdapterAvailable was implemented for IOS, and has test coverage using FakeNetworkManager. This cl/ is default enabled with the kill-switch WebRTC-AndroidNetworkMonitor-IsAdapterAvailable. Bug: webrtc:13741 Change-Id: I7c2cb7789660fd2e082c214d00e50c894666b07c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/257400 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Jonas Oreland <jonaso@webrtc.org> Cr-Commit-Position: refs/heads/main@{#36406}
WebRTC is a free, open software project that provides browsers and mobile applications with Real-Time Communications (RTC) capabilities via simple APIs. The WebRTC components have been optimized to best serve this purpose.
Our mission: To enable rich, high-quality RTC applications to be developed for the browser, mobile platforms, and IoT devices, and allow them all to communicate via a common set of protocols.
The WebRTC initiative is a project supported by Google, Mozilla and Opera, amongst others.
See here for instructions on how to get started developing with the native code.
Authoritative list of directories that contain the native API header files.