kaven-utils - v6.1.8
    Preparing search index...

    Interface IHttpHandshake

    Per-connection HTTP-proxy handshake state (originator side).

    interface IHttpHandshake {
        handshakePending: boolean;
        isConnect: boolean;
        request: HttpRequestMessage;
    }
    Index
    handshakePending: boolean

    true until the peer confirms the dial and the handshake bytes have been flushed; afterwards the connection streams raw.

    isConnect: boolean

    Whether the request was a CONNECT method.

    The first parsed HTTP request. For CONNECT it is not forwarded (the connection becomes a raw tunnel); for plain HTTP it is rewritten to origin-form and forwarded to the destination.