Skip to content

Commit 97b3c4b

Browse files
committed
make RTCIceCandidatePair field public
1 parent 7ec5d5d commit 97b3c4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webrtc/src/ice_transport/ice_candidate_pair.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ use crate::ice_transport::ice_candidate::*;
1212
#[derive(Default, Debug, Clone, PartialEq, Eq)]
1313
pub struct RTCIceCandidatePair {
1414
stats_id: String,
15-
local: RTCIceCandidate,
16-
remote: RTCIceCandidate,
15+
pub local: RTCIceCandidate,
16+
pub remote: RTCIceCandidate,
1717
}
1818

1919
impl fmt::Display for RTCIceCandidatePair {

0 commit comments

Comments
 (0)