RTCForge API Reference v1.1.1
    Preparing search index...

    Interface PipeTransportParams

    Connection parameters for a mediasoup pipe transport, exchanged between two routers to bridge producers across workers or servers.

    interface PipeTransportParams {
        id: string;
        ip: string;
        port: number;
        srtpParameters?: SrtpParameters;
    }
    Index

    Properties

    id: string

    Pipe transport id.

    ip: string

    Local IP the pipe transport is listening on.

    port: number

    Local port the pipe transport is listening on.

    srtpParameters?: SrtpParameters

    SRTP parameters when the pipe is encrypted.