Pass-through CLIENTTAGDENY in ISUPPORT

This commit is contained in:
Simon Ser 2021-07-09 22:48:58 +02:00
parent 51df11a55f
commit c5d5259243

View file

@ -142,29 +142,30 @@ var needAllDownstreamCaps = map[string]string{
// //
// This is only effective in single-upstream mode. // This is only effective in single-upstream mode.
var passthroughIsupport = map[string]bool{ var passthroughIsupport = map[string]bool{
"AWAYLEN": true, "AWAYLEN": true,
"BOT": true, "BOT": true,
"CHANLIMIT": true, "CHANLIMIT": true,
"CHANMODES": true, "CHANMODES": true,
"CHANNELLEN": true, "CHANNELLEN": true,
"CHANTYPES": true, "CHANTYPES": true,
"EXCEPTS": true, "CLIENTTAGDENY": true,
"EXTBAN": true, "EXCEPTS": true,
"HOSTLEN": true, "EXTBAN": true,
"INVEX": true, "HOSTLEN": true,
"KICKLEN": true, "INVEX": true,
"MAXLIST": true, "KICKLEN": true,
"MAXTARGETS": true, "MAXLIST": true,
"MODES": true, "MAXTARGETS": true,
"NAMELEN": true, "MODES": true,
"NETWORK": true, "NAMELEN": true,
"NICKLEN": true, "NETWORK": true,
"PREFIX": true, "NICKLEN": true,
"SAFELIST": true, "PREFIX": true,
"TARGMAX": true, "SAFELIST": true,
"TOPICLEN": true, "TARGMAX": true,
"USERLEN": true, "TOPICLEN": true,
"UTF8ONLY": true, "USERLEN": true,
"UTF8ONLY": true,
} }
type downstreamConn struct { type downstreamConn struct {