From c5d5259243e5bfd5ecce6e0100aa1e6457e0a50c Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 9 Jul 2021 22:48:58 +0200 Subject: [PATCH] Pass-through CLIENTTAGDENY in ISUPPORT --- downstream.go | 47 ++++++++++++++++++++++++----------------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/downstream.go b/downstream.go index fee5134..0dc65ab 100644 --- a/downstream.go +++ b/downstream.go @@ -142,29 +142,30 @@ var needAllDownstreamCaps = map[string]string{ // // This is only effective in single-upstream mode. var passthroughIsupport = map[string]bool{ - "AWAYLEN": true, - "BOT": true, - "CHANLIMIT": true, - "CHANMODES": true, - "CHANNELLEN": true, - "CHANTYPES": true, - "EXCEPTS": true, - "EXTBAN": true, - "HOSTLEN": true, - "INVEX": true, - "KICKLEN": true, - "MAXLIST": true, - "MAXTARGETS": true, - "MODES": true, - "NAMELEN": true, - "NETWORK": true, - "NICKLEN": true, - "PREFIX": true, - "SAFELIST": true, - "TARGMAX": true, - "TOPICLEN": true, - "USERLEN": true, - "UTF8ONLY": true, + "AWAYLEN": true, + "BOT": true, + "CHANLIMIT": true, + "CHANMODES": true, + "CHANNELLEN": true, + "CHANTYPES": true, + "CLIENTTAGDENY": true, + "EXCEPTS": true, + "EXTBAN": true, + "HOSTLEN": true, + "INVEX": true, + "KICKLEN": true, + "MAXLIST": true, + "MAXTARGETS": true, + "MODES": true, + "NAMELEN": true, + "NETWORK": true, + "NICKLEN": true, + "PREFIX": true, + "SAFELIST": true, + "TARGMAX": true, + "TOPICLEN": true, + "USERLEN": true, + "UTF8ONLY": true, } type downstreamConn struct {