Definition
WebRTC: Real-Time Communication in Browsers defines RTCErrorInit
dictionary RTCErrorInit {
required RTCErrorDetailType errorDetail;
long sdpLineNumber;
long sctpCauseCode;
unsigned long receivedAlert;
unsigned long sentAlert;
};
This dictionary is extended in the following specifications:
- Identity for WebRTC 1.0
partial dictionary RTCErrorInit { long httpRequestStatusCode; };
Consolidated IDL (across partials)
dictionary RTCErrorInit {
required RTCErrorDetailType errorDetail;
long sdpLineNumber;
long sctpCauseCode;
unsigned long receivedAlert;
unsigned long sentAlert;
long httpRequestStatusCode;
};
Referring IDL interfaces/dictionaries
Referring specifications
- Identity for WebRTC 1.0 refers to
RTCErrorInit