Changeset 752 in code for trunk/upstream.go
- Timestamp:
- Dec 6, 2021, 9:33:50 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/upstream.go
r749 r752 293 293 } 294 294 295 func (uc *upstreamConn) endPendingCommands() {295 func (uc *upstreamConn) abortPendingCommands() { 296 296 for _, l := range uc.pendingCmds { 297 297 for _, pendingCmd := range l { … … 306 306 Prefix: dc.srv.prefix(), 307 307 Command: irc.RPL_LISTEND, 308 Params: []string{dc.nick, " End of /LIST"},308 Params: []string{dc.nick, "Command aborted"}, 309 309 }) 310 310 case "WHO": … … 316 316 Prefix: dc.srv.prefix(), 317 317 Command: irc.RPL_ENDOFWHO, 318 Params: []string{dc.nick, mask, " End of /WHO"},318 Params: []string{dc.nick, mask, "Command aborted"}, 319 319 }) 320 320 case "AUTHENTICATE":
Note:
See TracChangeset
for help on using the changeset viewer.