Back to Content

RTCPeerConnection: sctp property

files/en-us/web/api/rtcpeerconnection/sctp/index.md

latest1.3 KB
Original Source

{{APIRef("WebRTC")}}

The sctp read-only property of the {{domxref("RTCPeerConnection")}} interface returns an {{domxref("RTCSctpTransport")}} describing the {{Glossary("SCTP")}} transport over which SCTP data is being sent and received. If SCTP hasn't been negotiated, this value is null.

The SCTP transport is used for transmitting and receiving data for any and all {{domxref("RTCDataChannel")}}s on the peer connection.

Value

A {{domxref("RTCSctpTransport")}} object describing the SCTP transport being used by the {{domxref("RTCPeerConnection")}} for transmitting and receiving on its data channels, or null if SCTP negotiation hasn't happened.

Example

js
const peerConnection = new RTCPeerConnection();

const channel = peerConnection.createDataChannel("Mydata");
channel.onopen = (event) => {
  channel.send("sending a message");
};
channel.onmessage = (event) => {
  console.log(event.data);
};

// Determine the largest message size that can be sent

const sctp = peerConnection.sctp;
const maxMessageSize = sctp.maxMessageSize;

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • WebRTC
  • {{domxref("RTCPeerConnection")}}
  • {{domxref("RTCDataChannel")}}
  • {{Glossary("SCTP")}}