Interface ConnectionRefusedPacket

Sent to clients when the server refuses connection. This is sent during the initial connection handshake.

interface ConnectionRefusedPacket {
    cmd: "ConnectionRefused";
    errors?: ConnectionError[];
}

Properties

Properties

cmd
errors?: ConnectionError[]

Optional. When provided, should contain one or more ConnectionError values. See ConnectionError for additional information on what each error means.