Rabbit-R1/android (non root)/java/sources/org/webrtc/CandidatePairChangeEvent.java

19 lines
602 B
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
package org.webrtc;
/* loaded from: classes3.dex */
public final class CandidatePairChangeEvent {
public final int estimatedDisconnectedTimeMs;
public final int lastDataReceivedMs;
public final IceCandidate local;
public final String reason;
public final IceCandidate remote;
CandidatePairChangeEvent(IceCandidate iceCandidate, IceCandidate iceCandidate2, int i, String str, int i2) {
this.local = iceCandidate;
this.remote = iceCandidate2;
this.lastDataReceivedMs = i;
this.reason = str;
this.estimatedDisconnectedTimeMs = i2;
}
}