Changeset 565 in code for trunk/downstream.go


Ignore:
Timestamp:
Jun 23, 2021, 5:54:22 PM (4 years ago)
Author:
contact
Message:

Disallow '$' in nicks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/downstream.go

    r563 r565  
    110110
    111111// ' ' and ':' break the IRC message wire format, '@' and '!' break prefixes,
    112 // '*' and '?' break masks
    113 const illegalNickChars = " :@!*?"
     112// '*' and '?' break masks, '$' breaks server masks in PRIVMSG/NOTICE
     113const illegalNickChars = " :@!*?$"
    114114
    115115// permanentDownstreamCaps is the list of always-supported downstream
Note: See TracChangeset for help on using the changeset viewer.