Type alias SfuTransport

SfuTransport: {
    dtlsState?: string;
    iceRole?: string;
    iceState?: string;
    internal?: boolean;
    localAddress?: string;
    localPort?: number;
    noReport?: boolean;
    protocol?: string;
    remoteAddress?: string;
    remotePort?: number;
    rtpBytesReceived?: number;
    rtpBytesSent?: number;
    rtpPacketsLost?: number;
    rtpPacketsReceived?: number;
    rtpPacketsSent?: number;
    rtxBytesReceived?: number;
    rtxBytesSent?: number;
    rtxPacketsDiscarded?: number;
    rtxPacketsLost?: number;
    rtxPacketsReceived?: number;
    rtxPacketsSent?: number;
    sctpBytesReceived?: number;
    sctpBytesSent?: number;
    sctpPacketsReceived?: number;
    sctpPacketsSent?: number;
    sctpState?: string;
    transportId: string;
}

The Sfu Transports obtained measurements

Type declaration

  • Optional dtlsState?: string

    Represent the current value of the state attribute of the underlying RTCDtlsTransport.

  • Optional iceRole?: string

    Represent the current value of the role SFU takes place in ICE

  • Optional iceState?: string

    Represent the current value of the state attribute of the underlying RTCIceTransport

  • Optional internal?: boolean

    Flag to indicate that the transport is used as an internal transport between SFU instances

  • Optional localAddress?: string

    The local address of the ICE candidate selected for the transport (IPv4, IPv6, FQDN)

  • Optional localPort?: number

    The local port number

  • Optional noReport?: boolean

    Flag indicate to not generate report from this sample

  • Optional protocol?: string

    The protocol used by the transport

  • Optional remoteAddress?: string

    The remote address of the ICE candidate selected for the transport (IPv4, IPv6, FQDN)

  • Optional remotePort?: number

    The remote port number

  • Optional rtpBytesReceived?: number

    The total amount of RTP bytes received on this transport

  • Optional rtpBytesSent?: number

    The total amount of RTP bytes sent on this transport

  • Optional rtpPacketsLost?: number

    The total amount of RTP packets lost on this transport

  • Optional rtpPacketsReceived?: number

    The total amount of RTP packets received on this transport

  • Optional rtpPacketsSent?: number

    The total amount of RTP packets sent on this transport

  • Optional rtxBytesReceived?: number

    The total amount of RTX bytes received on this transport

  • Optional rtxBytesSent?: number

    The total amount of RTX bytes sent on this transport

  • Optional rtxPacketsDiscarded?: number

    The total amount of RTX packets discarded on this transport

  • Optional rtxPacketsLost?: number

    The total amount of RTX packets lost on this transport

  • Optional rtxPacketsReceived?: number

    The total amount of RTX packets received on this transport

  • Optional rtxPacketsSent?: number

    The total amount of RTX packets sent on this transport

  • Optional sctpBytesReceived?: number

    The total amount of SCTP bytes received on this transport

  • Optional sctpBytesSent?: number

    The total amount of SCTP bytes sent on this transport

  • Optional sctpPacketsReceived?: number

    The total amount of SCTP packets received on this transport

  • Optional sctpPacketsSent?: number

    The total amount of SCTP packets sent on this transport

  • Optional sctpState?: string

    Represents the the current value of the SCTP state of the transport of the SFU

  • transportId: string

    The generated unique identifier of the transport

Generated using TypeDoc