summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
commit9ef7f06be73f820af0a66f084488acdd3929d366 (patch)
tree675ada22c8fd243dcc428184be2e3a6c4193edc7 /src
parent6fa5553b4ba46641b94025cfee7de07550823fdf (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
Diffstat (limited to 'src')
-rw-r--r--src/protocol/bahamut.c1
-rw-r--r--src/protocol/charybdis.c1
-rw-r--r--src/protocol/inspircd11.c1
-rw-r--r--src/protocol/ratbox.c1
-rw-r--r--src/protocol/unreal32.c1
5 files changed, 5 insertions, 0 deletions
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}