Changeset 793 in code for trunk


Ignore:
Timestamp:
Mar 3, 2022, 9:53:33 AM (3 years ago)
Author:
contact
Message:

downstream: re-format illegalNickChars doc comment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/downstream.go

    r792 r793  
    208208}
    209209
    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
    213218const illegalNickChars = " :@!*?$,"
    214219
Note: See TracChangeset for help on using the changeset viewer.