Type alias SfuSctpChannel

SfuSctpChannel: {
    bytesReceived?: number;
    bytesSent?: number;
    channelId: string;
    internal?: boolean;
    label?: string;
    messageReceived?: number;
    messageSent?: number;
    noReport?: boolean;
    protocol?: string;
    sctpCongestionWindow?: number;
    sctpMtu?: number;
    sctpReceiverWindow?: number;
    sctpSmoothedRoundTripTime?: number;
    sctpUnackData?: number;
    streamId: string;
    transportId: string;
}

The Sfu Outbound Rtp Pad obtained measurements

Type declaration

  • Optional bytesReceived?: number

    The number of bytes received on the corresponded SCTP stream.

  • Optional bytesSent?: number

    The number of bytes sent on the corresponded SCTP stream.

  • channelId: string

    The id of the sctp stream

  • Optional internal?: boolean

    Flag to indicate that the SCTP channel is used as an internally between SFU instances

  • Optional label?: string

    The label of the sctp stream

  • Optional messageReceived?: number

    The number of message received on the corresponded SCTP stream.

  • Optional messageSent?: number

    The number of message sent on the corresponded SCTP stream.

  • Optional noReport?: boolean

    Flag indicate to not generate report from this sample

  • Optional protocol?: string

    The protocol used to establish an sctp stream

  • Optional sctpCongestionWindow?: number

    The latest congestion window, corresponding to spinfo_cwnd defined in [RFC6458].

  • Optional sctpMtu?: number

    The latest maximum transmission unit, corresponding to spinfo_mtu defined in [RFC6458].

  • Optional sctpReceiverWindow?: number

    The latest receiver window, corresponding to sstat_rwnd defined in [RFC6458].

  • Optional sctpSmoothedRoundTripTime?: number

    The latest smoothed round-trip time value, corresponding to spinfo_srtt defined in [RFC6458] but converted to seconds. If there has been no round-trip time measurements yet, this value is undefined.

  • Optional sctpUnackData?: number

    The number of unacknowledged DATA chunks, corresponding to sstat_unackdata defined in [RFC6458].

  • streamId: string

    The id of the sctp stream

  • transportId: string

    The id of the transport the RTP stream uses.

Generated using TypeDoc