edgeport - v1.0.3
    Preparing search index...

    Interface MsrpRequest

    A decoded MSRP request (SEND or REPORT).

    interface MsrpRequest {
        body: Uint8Array;
        continuation: string;
        headers: Record<string, string>;
        kind: "request";
        method: string;
        transactionId: string;
    }
    Index
    body: Uint8Array

    The body octets (empty when none).

    continuation: string

    The continuation flag: $ complete, + more chunks, # aborted.

    headers: Record<string, string>

    Header name/value pairs (case preserved as sent).

    kind: "request"

    Discriminant.

    method: string

    The method.

    transactionId: string

    The transaction id from the first line.