RTCDtlsTransport: error event - Web APIs 编辑
An RTCDtlsTransport
receives an error
event when a transport-level error occurs on the RTCPeerConnection
.
Bubbles | Yes |
---|---|
Cancelable | No |
Interface | RTCErrorEvent |
Event handler property | onerror |
The RTCErrorEvent
object provides details about the error that occurred; see that article for details.
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
In this example, the onerror
event handler property is used to set the handler for the error
event.
transport.onerror = ev => {
const err = ev.error;
/* ... */
}
Note: Since RTCError
is not one of the legacy errors, the value of RTCError.code
is always 0.
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCDtlsTransport: error event' in that specification. | Candidate Recommendation | Initial specification. |
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论