Changeset 722 in code for trunk/upstream.go
- Timestamp:
- Nov 19, 2021, 6:21:48 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/upstream.go
r720 r722 587 587 } 588 588 uc.logger.Printf("logged in with account %q", uc.account) 589 uc.forEachDownstream(func(dc *downstreamConn) { 590 dc.updateAccount() 591 }) 589 592 case irc.RPL_LOGGEDOUT: 590 593 uc.account = "" 591 594 uc.logger.Printf("logged out") 595 uc.forEachDownstream(func(dc *downstreamConn) { 596 dc.updateAccount() 597 }) 592 598 case irc.ERR_NICKLOCKED, irc.RPL_SASLSUCCESS, irc.ERR_SASLFAIL, irc.ERR_SASLTOOLONG, irc.ERR_SASLABORTED: 593 599 var info string
Note:
See TracChangeset
for help on using the changeset viewer.