diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
commit | 9ef7f06be73f820af0a66f084488acdd3929d366 (patch) | |
tree | 675ada22c8fd243dcc428184be2e3a6c4193edc7 | |
parent | 6fa5553b4ba46641b94025cfee7de07550823fdf (diff) |
Added globaltldprefix to IRCDVar struct, for use in the upcoming cmd_serv_notice and cmd_serv_privmsg functions.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1230 5417fbe8-f217-4b02-8779-1006273d7864
-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} |