RTCIceTransport

The RTCIceTransport interface provides access to information about the ICE transport layer over which the data is being sent and received.

MDN Reference

Properties

Link copied to clipboard

The gatheringState read-only property of the RTCIceTransport interface returns a string that indicates the current gathering state of the ICE agent for this transport: 'new', 'gathering', or 'complete'.

Link copied to clipboard

The state read-only property of the RTCIceTransport interface returns the current state of the ICE transport, so you can determine the state of ICE gathering in which the ICE agent currently is operating.

Functions

Link copied to clipboard
Link copied to clipboard

The getSelectedCandidatePair() method of the RTCIceTransport interface returns an RTCIceCandidatePair object containing the current best-choice pair of ICE candidates describing the configuration of the endpoints of the transport.

Link copied to clipboard