mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 02:00:11 -08:00
add standard-replies capability
This commit is contained in:
parent
30fbfe4cc0
commit
bceae9b739
2 changed files with 14 additions and 3 deletions
|
|
@ -7,8 +7,8 @@ package caps
|
|||
|
||||
const (
|
||||
// number of recognized capabilities:
|
||||
numCapabs = 30
|
||||
// length of the uint64 array that represents the bitset:
|
||||
numCapabs = 31
|
||||
// length of the uint32 array that represents the bitset:
|
||||
bitsetLen = 1
|
||||
)
|
||||
|
||||
|
|
@ -117,6 +117,10 @@ const (
|
|||
// https://ircv3.net/specs/extensions/setname.html
|
||||
SetName Capability = iota
|
||||
|
||||
// StandardReplies is the IRCv3 capability named "standard-replies":
|
||||
// https://github.com/ircv3/ircv3-specifications/pull/506
|
||||
StandardReplies Capability = iota
|
||||
|
||||
// STS is the IRCv3 capability named "sts":
|
||||
// https://ircv3.net/specs/extensions/sts.html
|
||||
STS Capability = iota
|
||||
|
|
@ -163,6 +167,7 @@ var (
|
|||
"sasl",
|
||||
"server-time",
|
||||
"setname",
|
||||
"standard-replies",
|
||||
"sts",
|
||||
"userhost-in-names",
|
||||
"znc.in/playback",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue