summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
commit8dd16259287f58f9273002717ec4d27e97127719 (patch)
tree3863e62a53829a84037444beab3abd4ed9dfc7d0 /third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer
parentReleasing progress-linux version 126.0.1-1~progress7.99u1. (diff)
downloadfirefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz
firefox-8dd16259287f58f9273002717ec4d27e97127719.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer')
-rw-r--r--third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer/analyzer.cc32
1 files changed, 16 insertions, 16 deletions
diff --git a/third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer/analyzer.cc b/third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer/analyzer.cc
index 1d8d5f12c0..0c7775e39f 100644
--- a/third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer/analyzer.cc
+++ b/third_party/libwebrtc/rtc_tools/rtc_event_log_visualizer/analyzer.cc
@@ -238,7 +238,9 @@ TimeSeries CreateRtcpTypeTimeSeries(const std::vector<T>& rtcp_list,
const char kUnknownEnumValue[] = "unknown";
+// TODO(tommi): This should be "host".
const char kIceCandidateTypeLocal[] = "local";
+// TODO(tommi): This should be "srflx".
const char kIceCandidateTypeStun[] = "stun";
const char kIceCandidateTypePrflx[] = "prflx";
const char kIceCandidateTypeRelay[] = "relay";
@@ -257,17 +259,18 @@ const char kNetworkTypeWifi[] = "wifi";
const char kNetworkTypeVpn[] = "vpn";
const char kNetworkTypeCellular[] = "cellular";
-std::string GetIceCandidateTypeAsString(webrtc::IceCandidateType type) {
+absl::string_view GetIceCandidateTypeAsString(IceCandidateType type) {
switch (type) {
- case webrtc::IceCandidateType::kLocal:
+ case IceCandidateType::kHost:
return kIceCandidateTypeLocal;
- case webrtc::IceCandidateType::kStun:
+ case IceCandidateType::kSrflx:
return kIceCandidateTypeStun;
- case webrtc::IceCandidateType::kPrflx:
+ case IceCandidateType::kPrflx:
return kIceCandidateTypePrflx;
- case webrtc::IceCandidateType::kRelay:
+ case IceCandidateType::kRelay:
return kIceCandidateTypeRelay;
default:
+ RTC_DCHECK_NOTREACHED();
return kUnknownEnumValue;
}
}
@@ -323,18 +326,15 @@ std::string GetCandidatePairLogDescriptionAsString(
// and a remote relay candidate using TCP as the relay protocol on a cell
// network, when the candidate pair communicates over UDP using IPv4.
rtc::StringBuilder ss;
- std::string local_candidate_type =
- GetIceCandidateTypeAsString(config.local_candidate_type);
- std::string remote_candidate_type =
- GetIceCandidateTypeAsString(config.remote_candidate_type);
- if (config.local_candidate_type == webrtc::IceCandidateType::kRelay) {
- local_candidate_type +=
- "(" + GetProtocolAsString(config.local_relay_protocol) + ")";
- }
- ss << local_candidate_type << ":"
- << GetNetworkTypeAsString(config.local_network_type) << ":"
+ ss << GetIceCandidateTypeAsString(config.local_candidate_type);
+
+ if (config.local_candidate_type == IceCandidateType::kRelay) {
+ ss << "(" << GetProtocolAsString(config.local_relay_protocol) << ")";
+ }
+
+ ss << ":" << GetNetworkTypeAsString(config.local_network_type) << ":"
<< GetAddressFamilyAsString(config.local_address_family) << "->"
- << remote_candidate_type << ":"
+ << GetIceCandidateTypeAsString(config.remote_candidate_type) << ":"
<< GetAddressFamilyAsString(config.remote_address_family) << "@"
<< GetProtocolAsString(config.candidate_pair_protocol);
return ss.Release();