downstream: re-format illegalNickChars doc comment
This commit is contained in:
parent
c742726316
commit
7b3e46a7c2
@ -207,9 +207,14 @@ func updateNetworkAttrs(record *Network, attrs irc.Tags, subcommand string) erro
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// ' ' and ':' break the IRC message wire format, '@' and '!' break prefixes,
|
// illegalNickChars is the list of characters forbidden in a nickname.
|
||||||
// '*' and '?' break masks, '$' breaks server masks in PRIVMSG/NOTICE,
|
//
|
||||||
// "*" is the reserved nickname for registration, ',' breaks lists
|
// ' ' and ':' break the IRC message wire format
|
||||||
|
// '@' and '!' break prefixes
|
||||||
|
// '*' breaks masks and is the reserved nickname for registration
|
||||||
|
// '?' breaks masks
|
||||||
|
// '$' breaks server masks in PRIVMSG/NOTICE
|
||||||
|
// ',' breaks lists
|
||||||
const illegalNickChars = " :@!*?$,"
|
const illegalNickChars = " :@!*?$,"
|
||||||
|
|
||||||
// permanentDownstreamCaps is the list of always-supported downstream
|
// permanentDownstreamCaps is the list of always-supported downstream
|
||||||
|
Loading…
Reference in New Issue
Block a user