@@ -1155,13 +1155,22 @@ defmodule ExWebRTC.PeerConnection do
1155
1155
type: :candidate_pair ,
1156
1156
local_candidate_id: pair . local_cand_id ,
1157
1157
remote_candidate_id: pair . remote_cand_id ,
1158
+ priority: pair . priority ,
1158
1159
state: pair . state ,
1160
+ valid: pair . valid? ,
1161
+ last_seen: pair . last_seen ,
1159
1162
nominated: pair . nominated? ,
1160
- requests_received: pair . requests_received ,
1163
+ packets_sent: pair . packets_sent ,
1164
+ packets_received: pair . packets_received ,
1165
+ bytes_sent: pair . bytes_sent ,
1166
+ bytes_received: pair . bytes_received ,
1161
1167
requests_sent: pair . requests_sent ,
1168
+ requests_received: pair . requests_received ,
1169
+ responses_sent: pair . responses_sent ,
1162
1170
responses_received: pair . responses_received ,
1163
1171
non_symmetric_responses_received: pair . non_symmetric_responses_received ,
1164
- responses_sent: pair . responses_sent
1172
+ packets_discarded_on_send: pair . packets_discarded_on_send ,
1173
+ bytes_discarded_on_send: pair . bytes_discarded_on_send
1165
1174
}
1166
1175
end
1167
1176
@@ -1223,7 +1232,9 @@ defmodule ExWebRTC.PeerConnection do
1223
1232
bytes_sent: ice_stats . bytes_sent ,
1224
1233
bytes_received: ice_stats . bytes_received ,
1225
1234
packets_sent: ice_stats . packets_sent ,
1226
- packets_received: ice_stats . packets_received
1235
+ packets_received: ice_stats . packets_received ,
1236
+ selected_candidate_pair_changes: ice_stats . selected_candidate_pair_changes ,
1237
+ unmatched_requests: ice_stats . unmatched_requests
1227
1238
}
1228
1239
}
1229
1240
0 commit comments