Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

RTCDtlsTransport: error event

Limited availability

AnRTCDtlsTransport receives anerror event when a transport-level error occurs on theRTCPeerConnection.

This event is not cancelable and does not bubble.

Syntax

Use the event name in methods likeaddEventListener(), or set an event handler property.

js
addEventListener("error", (event) => { })onerror = (event) => { }

Event type

Event properties

In addition to the standard properties available on theEvent interface,RTCErrorEvent also includes the following:

errorRead only

AnRTCError object specifying the error which occurred; this object includes the type of error that occurred, information about where the error occurred (such as which line number in theSDP or whatSCTP cause code was at issue).

Description

Transport-level errors will have one of the following values for the specified error'sRTCError propertyerrorDetail:

dtls-failure

The negotiation of theDTLS connection failed, or the connection was terminated with a fatal error. The error'smessage contains details about the nature of the error. If a fatal error isreceived, the error object'sreceivedAlert property is set to the value of the DTLSL alert received. If, on the other hand, a fatal error wassent, thesentAlert is set to the alert's value.

fingerprint-failure

The remote certificate for theRTCDtlsTransport 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

In this example, theonerror event handler property is used to set the handler for theerror event.

js
transport.onerror = (ev) => {  const err = ev.error;  // …};

Note:SinceRTCError is not one of the legacy errors, the value ofcode is always 0.

Specifications

No specification found

No specification data found forapi.RTCDtlsTransport.error_event.
Check for problems with this page or contribute a missingspec_url tomdn/browser-compat-data. Also make sure the specification is included inw3c/browser-specs.

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp