edgeport - v1.0.3
    Preparing search index...

    Interface SipResponse

    A SIP status line: code + reason.

    interface SipResponse {
        body: Uint8Array;
        headers: SipHeaders;
        kind: "response";
        reason: string;
        status: number;
    }
    Index
    body: Uint8Array

    The message body (empty when there is none).

    headers: SipHeaders

    The message headers.

    kind: "response"

    Discriminant.

    reason: string

    The reason phrase.

    status: number

    The three-digit status code.