edgeport - v1.0.6
    Preparing search index...

    Interface IrcSasl

    SASL credentials for the IRCv3 CAP + SASL exchange.

    1.0.4

    interface IrcSasl {
        mechanism?: "PLAIN";
        password: string;
        user: string;
    }
    Index
    mechanism?: "PLAIN"

    The SASL mechanism; only 'PLAIN' is implemented (the default).

    password: string

    The account password.

    user: string

    The account (authcid) to authenticate as.