summaryrefslogtreecommitdiff
path: root/chromium/third_party/webrtc/p2p/base/p2p_transport_channel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/webrtc/p2p/base/p2p_transport_channel.cc')
-rw-r--r--chromium/third_party/webrtc/p2p/base/p2p_transport_channel.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/webrtc/p2p/base/p2p_transport_channel.cc b/chromium/third_party/webrtc/p2p/base/p2p_transport_channel.cc
index 213cfbde77a..dbb1df76b7d 100644
--- a/chromium/third_party/webrtc/p2p/base/p2p_transport_channel.cc
+++ b/chromium/third_party/webrtc/p2p/base/p2p_transport_channel.cc
@@ -1834,16 +1834,16 @@ rtc::NetworkRoute P2PTransportChannel::ConfigureNetworkRoute(
const Connection* conn) {
RTC_DCHECK_RUN_ON(network_thread_);
return {
- .connected = ReadyToSend(conn),
- .local = CreateRouteEndpointFromCandidate(
+ /*.connected =*/ ReadyToSend(conn),
+ /*.local =*/ CreateRouteEndpointFromCandidate(
/* local= */ true, conn->local_candidate(),
/* uses_turn= */
conn->port()->Type() == RELAY_PORT_TYPE),
- .remote = CreateRouteEndpointFromCandidate(
+ /*.remote =*/ CreateRouteEndpointFromCandidate(
/* local= */ false, conn->remote_candidate(),
/* uses_turn= */ conn->remote_candidate().type() == RELAY_PORT_TYPE),
- .last_sent_packet_id = last_sent_packet_id_,
- .packet_overhead =
+ /*.last_sent_packet_id =*/ last_sent_packet_id_,
+// .packet_overhead =
conn->local_candidate().address().ipaddr().overhead() +
GetProtocolOverhead(conn->local_candidate().protocol())};
}