diff options
-rw-r--r-- | include/services.h | 1 | ||||
-rw-r--r-- | src/protocol/bahamut.c | 1 | ||||
-rw-r--r-- | src/protocol/charybdis.c | 1 | ||||
-rw-r--r-- | src/protocol/inspircd11.c | 1 | ||||
-rw-r--r-- | src/protocol/ratbox.c | 1 | ||||
-rw-r--r-- | src/protocol/unreal32.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/include/services.h b/include/services.h index a9a959e8c..11a833344 100644 --- a/include/services.h +++ b/include/services.h @@ -345,6 +345,7 @@ struct ircdvars_ { int cidrchanbei; /* channel bans/excepts/invites support CIDR (syntax: +b *!*@192.168.0.0/15) * 0 for no support, 1 for strict cidr support, anything else * for ircd specific support (nefarious only cares about first /mask) */ + char *globaltldprefix; /* TLD prefix used for Global */ }; struct ircdcapab_ { diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 383ceda06..9b9c70a9b 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -108,6 +108,7 @@ IRCDVar myIrcd[] = { NULL, /* character set */ 1, /* reports sync state */ 0, /* CIDR channelbans */ + "$", /* TLD Prefix for Global */ } , {NULL} diff --git a/src/protocol/charybdis.c b/src/protocol/charybdis.c index f54f4b901..b6ddcd37b 100644 --- a/src/protocol/charybdis.c +++ b/src/protocol/charybdis.c @@ -105,6 +105,7 @@ IRCDVar myIrcd[] = { NULL, /* character set */ 0, /* reports sync state */ 1, /* CIDR channelbans */ + "$$", /* TLD Prefix for Global */ } , {NULL} diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 7877335fa..d54999a86 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -125,6 +125,7 @@ IRCDVar myIrcd[] = { NULL, /* character set */ 0, /* reports sync state */ 1, /* CIDR channelbans */ + "$", /* TLD Prefix for Global */ } , {NULL} diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index 5f87057f3..e9f2db554 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -106,6 +106,7 @@ IRCDVar myIrcd[] = { NULL, /* character set */ 0, /* reports sync state */ 0, /* CIDR channelbans */ + "$$", /* TLD Prefix for Global */ } , {NULL} diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 72f5524f4..6ba447d11 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -108,6 +108,7 @@ IRCDVar myIrcd[] = { NULL, /* character set */ 1, /* reports sync state */ 0, /* CIDR channelbans */ + "$", /* TLD Prefix for Global */ } , {NULL} |