1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 15:26:39 +02:00

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
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-09-30 18:45:11 +00:00
parent 6fa5553b4b
commit 9ef7f06be7
6 changed files with 6 additions and 0 deletions
+1
View File
@@ -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_ {
+1
View File
@@ -108,6 +108,7 @@ IRCDVar myIrcd[] = {
NULL, /* character set */
1, /* reports sync state */
0, /* CIDR channelbans */
"$", /* TLD Prefix for Global */
}
,
{NULL}
+1
View File
@@ -105,6 +105,7 @@ IRCDVar myIrcd[] = {
NULL, /* character set */
0, /* reports sync state */
1, /* CIDR channelbans */
"$$", /* TLD Prefix for Global */
}
,
{NULL}
+1
View File
@@ -125,6 +125,7 @@ IRCDVar myIrcd[] = {
NULL, /* character set */
0, /* reports sync state */
1, /* CIDR channelbans */
"$", /* TLD Prefix for Global */
}
,
{NULL}
+1
View File
@@ -106,6 +106,7 @@ IRCDVar myIrcd[] = {
NULL, /* character set */
0, /* reports sync state */
0, /* CIDR channelbans */
"$$", /* TLD Prefix for Global */
}
,
{NULL}
+1
View File
@@ -108,6 +108,7 @@ IRCDVar myIrcd[] = {
NULL, /* character set */
1, /* reports sync state */
0, /* CIDR channelbans */
"$", /* TLD Prefix for Global */
}
,
{NULL}