Changeset 95 in code for trunk/irc.go


Ignore:
Timestamp:
Mar 13, 2020, 2:12:44 PM (5 years ago)
Author:
contact
Message:

Add support for SASL authentication

We now store SASL credentials in the database and automatically populate
them on NickServ REGISTER/IDENTIFY.

References: https://todo.sr.ht/~emersion/jounce/10

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/irc.go

    r43 r95  
    1212        rpl_globalusers  = "266"
    1313        rpl_topicwhotime = "333"
     14        rpl_loggedin     = "900"
     15        rpl_loggedout    = "901"
     16        err_nicklocked   = "902"
     17        rpl_saslsuccess  = "903"
     18        err_saslfail     = "904"
     19        err_sasltoolong  = "905"
     20        err_saslaborted  = "906"
     21        err_saslalready  = "907"
     22        rpl_saslmechs    = "908"
    1423)
    1524
Note: See TracChangeset for help on using the changeset viewer.