- Timestamp:
- Mar 3, 2022, 9:53:33 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/downstream.go
r792 r793 208 208 } 209 209 210 // ' ' and ':' break the IRC message wire format, '@' and '!' break prefixes, 211 // '*' and '?' break masks, '$' breaks server masks in PRIVMSG/NOTICE, 212 // "*" is the reserved nickname for registration, ',' breaks lists 210 // illegalNickChars is the list of characters forbidden in a nickname. 211 // 212 // ' ' and ':' break the IRC message wire format 213 // '@' and '!' break prefixes 214 // '*' breaks masks and is the reserved nickname for registration 215 // '?' breaks masks 216 // '$' breaks server masks in PRIVMSG/NOTICE 217 // ',' breaks lists 213 218 const illegalNickChars = " :@!*?$," 214 219
Note:
See TracChangeset
for help on using the changeset viewer.