@qualithm/mqtt-wire - v0.1.5
    Preparing search index...

    Type Alias AuthPacket

    AUTH packet - Authentication exchange (MQTT 5.0 only).

    MQTT 5.0 §3.15

    type AuthPacket = {
        properties?: AuthProperties;
        reasonCode: ReasonCode;
        type: typeof AUTH;
    }
    Index

    Properties

    properties?: AuthProperties

    AUTH properties

    reasonCode: ReasonCode

    Reason code (0x00=success, 0x18=continue, 0x19=re-auth)

    type: typeof AUTH

    Packet type discriminator.