Package tvi.webrtc
Class IceCandidateErrorEvent
java.lang.Object
tvi.webrtc.IceCandidateErrorEvent
-
Field Summary
Modifier and TypeFieldDescriptionfinal String
The local IP address used to communicate with the STUN or TURN server.final int
The numeric STUN error code returned by the STUN or TURN server.final String
The STUN reason text returned by the STUN or TURN server.final int
The port used to communicate with the STUN or TURN server.final String
The STUN or TURN URL that identifies the STUN or TURN server for which the failure occurred. -
Constructor Summary
ConstructorDescriptionIceCandidateErrorEvent
(String address, int port, String url, int errorCode, String errorText) -
Method Summary
-
Field Details
-
address
The local IP address used to communicate with the STUN or TURN server. -
port
public final int portThe port used to communicate with the STUN or TURN server. -
url
The STUN or TURN URL that identifies the STUN or TURN server for which the failure occurred. -
errorCode
public final int errorCodeThe numeric STUN error code returned by the STUN or TURN server. If no host candidate can reach the server, errorCode will be set to the value 701 which is outside the STUN error code range. This error is only fired once per server URL while in the RTCIceGatheringState of "gathering". -
errorText
The STUN reason text returned by the STUN or TURN server. If the server could not be reached, errorText will be set to an implementation-specific value providing details about the error.
-
-
Constructor Details
-
IceCandidateErrorEvent
-