Add ability to have multiple connected remote endpoints

Bug: webrtc:10138
Change-Id: Ic305c2f247588d75b6ced17052ba12d937d1a056
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/128864
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27460}
This commit is contained in:
Artem Titov
2019-04-05 11:19:52 +02:00
committed by Commit Bot
parent 5684af5d63
commit ff39312958
7 changed files with 187 additions and 49 deletions

View File

@ -9,6 +9,13 @@
import("../../../webrtc.gni")
rtc_source_set("emulated_network") {
visibility = [
"../../../api:create_network_emulation_manager",
":*",
]
if (rtc_include_tests) {
visibility += [ "../:scenario" ]
}
testonly = true
sources = [
"cross_traffic.cc",
@ -57,8 +64,10 @@ rtc_source_set("network_emulation_unittest") {
":emulated_network",
"../../../api:simulated_network_api",
"../../../call:simulated_network",
"../../../rtc_base:gunit_helpers",
"../../../rtc_base:logging",
"../../../rtc_base:rtc_event",
"../../../system_wrappers:system_wrappers",
"../../../test:test_support",
"//third_party/abseil-cpp/absl/memory",
]