RTCDtlsTransport: error event
An RTCDtlsTransport
receives an error
event when a transport-level error occurs on the RTCPeerConnection
.
This event is not cancelable and does not bubble.
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
js
addEventListener("error", (event) => {});
onerror = (event) => {};
Event type
An RTCErrorEvent
. Inherits from Event
.
Event properties
In addition to the standard properties available on the Event
interface, RTCErrorEvent
also includes the following:
Description
Transport-level errors will have one of the following values for the specified error's RTCError
property errorDetail
:
dtls-failure
-
The negotiation of the DTLS connection failed, or the connection was terminated with a fatal error. The error's
message
contains details about the nature of the error. If a fatal error is received, the error object'sreceivedAlert
property is set to the value of the DTLSL alert received. If, on the other hand, a fatal error was sent, thesentAlert
is set to the alert's value. fingerprint-failure
-
The remote certificate for the
RTCDtlsTransport
didn't match any of the fingerprints listed in the SDP. If the remote peer can't match the local certificate against the provided fingerprints, this error doesn't occur, though this situation may result instead in adtls-failure
error.
Examples
Specifications
No specification found
No specification data found for api.RTCDtlsTransport.error_event
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Browser compatibility
BCD tables only load in the browser