summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/base.cpp9
-rw-r--r--src/channels.cpp19
-rw-r--r--src/cmd_admin.cpp7
-rw-r--r--src/cmd_away.cpp7
-rw-r--r--src/cmd_commands.cpp7
-rw-r--r--src/cmd_connect.cpp7
-rw-r--r--src/cmd_die.cpp7
-rw-r--r--src/cmd_eline.cpp9
-rw-r--r--src/cmd_gline.cpp9
-rw-r--r--src/cmd_info.cpp7
-rw-r--r--src/cmd_invite.cpp7
-rw-r--r--src/cmd_ison.cpp7
-rw-r--r--src/cmd_join.cpp7
-rw-r--r--src/cmd_kick.cpp7
-rw-r--r--src/cmd_kill.cpp7
-rw-r--r--src/cmd_kline.cpp9
-rw-r--r--src/cmd_links.cpp7
-rw-r--r--src/cmd_list.cpp7
-rw-r--r--src/cmd_loadmodule.cpp7
-rw-r--r--src/cmd_lusers.cpp7
-rw-r--r--src/cmd_map.cpp15
-rw-r--r--src/cmd_mode.cpp7
-rw-r--r--src/cmd_modules.cpp7
-rw-r--r--src/cmd_motd.cpp7
-rw-r--r--src/cmd_names.cpp7
-rw-r--r--src/cmd_nick.cpp7
-rw-r--r--src/cmd_notice.cpp7
-rw-r--r--src/cmd_oper.cpp7
-rw-r--r--src/cmd_part.cpp7
-rw-r--r--src/cmd_pass.cpp7
-rw-r--r--src/cmd_ping.cpp7
-rw-r--r--src/cmd_pong.cpp7
-rw-r--r--src/cmd_privmsg.cpp7
-rw-r--r--src/cmd_qline.cpp7
-rw-r--r--src/cmd_quit.cpp7
-rw-r--r--src/cmd_rehash.cpp7
-rw-r--r--src/cmd_restart.cpp7
-rw-r--r--src/cmd_rules.cpp7
-rw-r--r--src/cmd_server.cpp7
-rw-r--r--src/cmd_squit.cpp7
-rw-r--r--src/cmd_stats.cpp7
-rw-r--r--src/cmd_summon.cpp7
-rw-r--r--src/cmd_time.cpp7
-rw-r--r--src/cmd_topic.cpp7
-rw-r--r--src/cmd_trace.cpp7
-rw-r--r--src/cmd_unloadmodule.cpp7
-rw-r--r--src/cmd_user.cpp7
-rw-r--r--src/cmd_userhost.cpp7
-rw-r--r--src/cmd_users.cpp7
-rw-r--r--src/cmd_version.cpp9
-rw-r--r--src/cmd_wallops.cpp7
-rw-r--r--src/cmd_who.cpp15
-rw-r--r--src/cmd_whois.cpp7
-rw-r--r--src/cmd_whowas.cpp7
-rw-r--r--src/cmd_zline.cpp7
-rw-r--r--src/command_parse.cpp7
-rw-r--r--src/commands.cpp9
-rw-r--r--src/configreader.cpp11
-rw-r--r--src/cull_list.cpp9
-rw-r--r--src/dns.cpp13
-rw-r--r--src/dynamic.cpp11
-rw-r--r--src/hashcomp.cpp11
-rw-r--r--src/helperfuncs.cpp9
-rw-r--r--src/inspircd.cpp32
-rw-r--r--src/inspsocket.cpp9
-rw-r--r--src/inspstring.cpp13
-rw-r--r--src/mode.cpp13
-rw-r--r--src/modules.cpp9
-rw-r--r--src/snomasks.cpp7
-rw-r--r--src/socket.cpp12
-rw-r--r--src/socketengine.cpp7
-rw-r--r--src/socketengine_epoll.cpp7
-rw-r--r--src/socketengine_kqueue.cpp7
-rw-r--r--src/socketengine_select.cpp7
-rw-r--r--src/timer.cpp9
-rw-r--r--src/userprocess.cpp11
-rw-r--r--src/users.cpp11
-rw-r--r--src/wildcard.cpp11
-rw-r--r--src/xline.cpp11
79 files changed, 206 insertions, 473 deletions
diff --git a/src/base.cpp b/src/base.cpp
index b2101d574..9c002773b 100644
--- a/src/base.cpp
+++ b/src/base.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/channels.cpp b/src/channels.cpp
index b6912e245..8a44479e0 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -1,21 +1,16 @@
-/* +------------------------------------+
- * | Inspire Internet Relay Chat Daemon |
- * +------------------------------------+
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
+ *
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
-using namespace std;
-
#include <stdarg.h>
#include "configreader.h"
#include "inspircd.h"
diff --git a/src/cmd_admin.cpp b/src/cmd_admin.cpp
index 4754387ec..8c149eb3d 100644
--- a/src/cmd_admin.cpp
+++ b/src/cmd_admin.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_away.cpp b/src/cmd_away.cpp
index 2fcb6fbe6..7a780c5a5 100644
--- a/src/cmd_away.cpp
+++ b/src/cmd_away.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_commands.cpp b/src/cmd_commands.cpp
index 423742bb7..e4efdacea 100644
--- a/src/cmd_commands.cpp
+++ b/src/cmd_commands.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_connect.cpp b/src/cmd_connect.cpp
index e159719d5..ac62b0bd1 100644
--- a/src/cmd_connect.cpp
+++ b/src/cmd_connect.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_die.cpp b/src/cmd_die.cpp
index e30f3a190..9bebf3fe6 100644
--- a/src/cmd_die.cpp
+++ b/src/cmd_die.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_eline.cpp b/src/cmd_eline.cpp
index 277367b45..df2455f86 100644
--- a/src/cmd_eline.cpp
+++ b/src/cmd_eline.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
diff --git a/src/cmd_gline.cpp b/src/cmd_gline.cpp
index d1432bd0c..f2b3b02a6 100644
--- a/src/cmd_gline.cpp
+++ b/src/cmd_gline.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
diff --git a/src/cmd_info.cpp b/src/cmd_info.cpp
index 60e7bb2e2..da99a2c58 100644
--- a/src/cmd_info.cpp
+++ b/src/cmd_info.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_invite.cpp b/src/cmd_invite.cpp
index 34ca04791..88b64f03d 100644
--- a/src/cmd_invite.cpp
+++ b/src/cmd_invite.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_ison.cpp b/src/cmd_ison.cpp
index 40c56cffb..851f8e171 100644
--- a/src/cmd_ison.cpp
+++ b/src/cmd_ison.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_join.cpp b/src/cmd_join.cpp
index 0ec87b03d..aa2f537a5 100644
--- a/src/cmd_join.cpp
+++ b/src/cmd_join.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_kick.cpp b/src/cmd_kick.cpp
index d11295b9e..c11d934f9 100644
--- a/src/cmd_kick.cpp
+++ b/src/cmd_kick.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_kill.cpp b/src/cmd_kill.cpp
index e2a8d8824..bc59f8492 100644
--- a/src/cmd_kill.cpp
+++ b/src/cmd_kill.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_kline.cpp b/src/cmd_kline.cpp
index de9d5bc89..56ec75a8f 100644
--- a/src/cmd_kline.cpp
+++ b/src/cmd_kline.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
diff --git a/src/cmd_links.cpp b/src/cmd_links.cpp
index ab090956b..81a6b0b02 100644
--- a/src/cmd_links.cpp
+++ b/src/cmd_links.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_list.cpp b/src/cmd_list.cpp
index 5ce458ab7..b1bb44172 100644
--- a/src/cmd_list.cpp
+++ b/src/cmd_list.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_loadmodule.cpp b/src/cmd_loadmodule.cpp
index 8c2c424fc..2462cf463 100644
--- a/src/cmd_loadmodule.cpp
+++ b/src/cmd_loadmodule.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_lusers.cpp b/src/cmd_lusers.cpp
index 4381cdacc..1a16ddc86 100644
--- a/src/cmd_lusers.cpp
+++ b/src/cmd_lusers.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_map.cpp b/src/cmd_map.cpp
index 90e4f6fcd..d8ecca2cf 100644
--- a/src/cmd_map.cpp
+++ b/src/cmd_map.cpp
@@ -1,18 +1,3 @@
-/* +------------------------------------+
- * | Inspire Internet Relay Chat Daemon |
- * +------------------------------------+
- *
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
- * This program is free but copyrighted software; see
- * the file COPYING for details.
- *
- * ---------------------------------------------------
- */
#include "configreader.h"
#include "users.h"
diff --git a/src/cmd_mode.cpp b/src/cmd_mode.cpp
index d7efb5155..31309549c 100644
--- a/src/cmd_mode.cpp
+++ b/src/cmd_mode.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_modules.cpp b/src/cmd_modules.cpp
index bd5848d92..8b23a823e 100644
--- a/src/cmd_modules.cpp
+++ b/src/cmd_modules.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_motd.cpp b/src/cmd_motd.cpp
index 551d76c9e..48edaec5e 100644
--- a/src/cmd_motd.cpp
+++ b/src/cmd_motd.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_names.cpp b/src/cmd_names.cpp
index 5eca4352a..900ccb53c 100644
--- a/src/cmd_names.cpp
+++ b/src/cmd_names.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_nick.cpp b/src/cmd_nick.cpp
index 38ca0c7e3..7801a200f 100644
--- a/src/cmd_nick.cpp
+++ b/src/cmd_nick.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_notice.cpp b/src/cmd_notice.cpp
index 8161d0cf8..69ca44918 100644
--- a/src/cmd_notice.cpp
+++ b/src/cmd_notice.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_oper.cpp b/src/cmd_oper.cpp
index f7dd29920..af0ad838b 100644
--- a/src/cmd_oper.cpp
+++ b/src/cmd_oper.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_part.cpp b/src/cmd_part.cpp
index edc61ef23..9741cd4fc 100644
--- a/src/cmd_part.cpp
+++ b/src/cmd_part.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_pass.cpp b/src/cmd_pass.cpp
index 4e5e739c2..60930c5b5 100644
--- a/src/cmd_pass.cpp
+++ b/src/cmd_pass.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_ping.cpp b/src/cmd_ping.cpp
index bf5824133..1f6e2bdfa 100644
--- a/src/cmd_ping.cpp
+++ b/src/cmd_ping.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_pong.cpp b/src/cmd_pong.cpp
index 5e619b5b1..bd75d1c18 100644
--- a/src/cmd_pong.cpp
+++ b/src/cmd_pong.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_privmsg.cpp b/src/cmd_privmsg.cpp
index a1839ca41..b12165670 100644
--- a/src/cmd_privmsg.cpp
+++ b/src/cmd_privmsg.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_qline.cpp b/src/cmd_qline.cpp
index 3c1b8e363..3bffa2f34 100644
--- a/src/cmd_qline.cpp
+++ b/src/cmd_qline.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_quit.cpp b/src/cmd_quit.cpp
index 161bd8451..097c8a68f 100644
--- a/src/cmd_quit.cpp
+++ b/src/cmd_quit.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_rehash.cpp b/src/cmd_rehash.cpp
index 7700d7f49..52a304286 100644
--- a/src/cmd_rehash.cpp
+++ b/src/cmd_rehash.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_restart.cpp b/src/cmd_restart.cpp
index 2ab046f7e..c985c1717 100644
--- a/src/cmd_restart.cpp
+++ b/src/cmd_restart.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_rules.cpp b/src/cmd_rules.cpp
index 9e42b8a66..60a5bf0a8 100644
--- a/src/cmd_rules.cpp
+++ b/src/cmd_rules.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_server.cpp b/src/cmd_server.cpp
index 8ec65f681..acc68a605 100644
--- a/src/cmd_server.cpp
+++ b/src/cmd_server.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_squit.cpp b/src/cmd_squit.cpp
index fa3aadc78..f2c9c01ef 100644
--- a/src/cmd_squit.cpp
+++ b/src/cmd_squit.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_stats.cpp b/src/cmd_stats.cpp
index 751f9ac68..3cc04496e 100644
--- a/src/cmd_stats.cpp
+++ b/src/cmd_stats.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_summon.cpp b/src/cmd_summon.cpp
index f8e493fc0..840f6dd02 100644
--- a/src/cmd_summon.cpp
+++ b/src/cmd_summon.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_time.cpp b/src/cmd_time.cpp
index c034d4715..535bf48a5 100644
--- a/src/cmd_time.cpp
+++ b/src/cmd_time.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_topic.cpp b/src/cmd_topic.cpp
index bb6e418bd..770b95660 100644
--- a/src/cmd_topic.cpp
+++ b/src/cmd_topic.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_trace.cpp b/src/cmd_trace.cpp
index 31dc27a28..d34252f38 100644
--- a/src/cmd_trace.cpp
+++ b/src/cmd_trace.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_unloadmodule.cpp b/src/cmd_unloadmodule.cpp
index f1612fe09..715ff4fcb 100644
--- a/src/cmd_unloadmodule.cpp
+++ b/src/cmd_unloadmodule.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_user.cpp b/src/cmd_user.cpp
index 66ee2c75d..b889455fd 100644
--- a/src/cmd_user.cpp
+++ b/src/cmd_user.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_userhost.cpp b/src/cmd_userhost.cpp
index 52c0f0612..28bba1e7f 100644
--- a/src/cmd_userhost.cpp
+++ b/src/cmd_userhost.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_users.cpp b/src/cmd_users.cpp
index d9e3a72cf..d9382d066 100644
--- a/src/cmd_users.cpp
+++ b/src/cmd_users.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_version.cpp b/src/cmd_version.cpp
index 5a0e2c19e..c6b156652 100644
--- a/src/cmd_version.cpp
+++ b/src/cmd_version.cpp
@@ -1,13 +1,10 @@
-/* +------------------------------------+
+/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_wallops.cpp b/src/cmd_wallops.cpp
index ae2ee6d9d..909dfb2ba 100644
--- a/src/cmd_wallops.cpp
+++ b/src/cmd_wallops.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_who.cpp b/src/cmd_who.cpp
index 112d2e030..bd9457d6f 100644
--- a/src/cmd_who.cpp
+++ b/src/cmd_who.cpp
@@ -1,15 +1,12 @@
-/* +------------------------------------+
- * | Inspire Internet Relay Chat Daemon |
- * +------------------------------------+
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- *<brain@chatspike.net>
- *<Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
- *the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
diff --git a/src/cmd_whois.cpp b/src/cmd_whois.cpp
index 475e73c59..58328b3cc 100644
--- a/src/cmd_whois.cpp
+++ b/src/cmd_whois.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_whowas.cpp b/src/cmd_whowas.cpp
index f9bf536e7..be3ee0add 100644
--- a/src/cmd_whowas.cpp
+++ b/src/cmd_whowas.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/cmd_zline.cpp b/src/cmd_zline.cpp
index 9b24489b8..c0ddf0db6 100644
--- a/src/cmd_zline.cpp
+++ b/src/cmd_zline.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 52e1d7992..2dd9a16cc 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/commands.cpp b/src/commands.cpp
index 60e7c98dc..9b127b8bf 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/configreader.cpp b/src/configreader.cpp
index bcf47eb03..bf0ca094f 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
diff --git a/src/cull_list.cpp b/src/cull_list.cpp
index 9fd4a6987..628c80019 100644
--- a/src/cull_list.cpp
+++ b/src/cull_list.cpp
@@ -2,20 +2,15 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
-using namespace std;
-
#include "inspircd.h"
#include "users.h"
#include "cull_list.h"
diff --git a/src/dns.cpp b/src/dns.cpp
index 0e0f32874..e6f03788a 100644
--- a/src/dns.cpp
+++ b/src/dns.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
@@ -24,8 +21,6 @@ Please do not assume that firedns works like this,
looks like this, walks like this or tastes like this.
*/
-using namespace std;
-
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
diff --git a/src/dynamic.cpp b/src/dynamic.cpp
index 76efd4b1f..2092d0f4e 100644
--- a/src/dynamic.cpp
+++ b/src/dynamic.cpp
@@ -2,20 +2,15 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
-using namespace std;
-
#include "configreader.h"
#include "dynamic.h"
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp
index e076d1d71..47e313887 100644
--- a/src/hashcomp.cpp
+++ b/src/hashcomp.cpp
@@ -2,20 +2,15 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
-using namespace std;
-
#include "inspircd.h"
#include "hashcomp.h"
#include <ext/hash_map>
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp
index 2398e6668..e9ae9168e 100644
--- a/src/helperfuncs.cpp
+++ b/src/helperfuncs.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index a26b5e4c7..b30f8e485 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -1,30 +1,14 @@
-/* ---------------------------------------------------------------------
- *
- * +------------------------------------+
- * | Inspire Internet Relay Chat Daemon |
- * +------------------------------------+
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
- * This program is free but copyrighted software; you can redistribute
- * it and/or modify it under the terms of the GNU General Public
- * License as published by the Free Software Foundation, version 2
- * (two) ONLY.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
*
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * ---------------------------------------------------------------------
+ * ---------------------------------------------------
*/
#include "inspircd.h"
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp
index 941063718..34f4a6201 100644
--- a/src/inspsocket.cpp
+++ b/src/inspsocket.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/inspstring.cpp b/src/inspstring.cpp
index 83f058b18..d8df39e18 100644
--- a/src/inspstring.cpp
+++ b/src/inspstring.cpp
@@ -1,3 +1,16 @@
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
+ *
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
#include "inspstring.h"
#include <string.h>
diff --git a/src/mode.cpp b/src/mode.cpp
index d56e6ec38..821d29e7a 100644
--- a/src/mode.cpp
+++ b/src/mode.cpp
@@ -2,20 +2,15 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
-using namespace std;
-
#include "inspircd.h"
#include "users.h"
#include "modules.h"
diff --git a/src/modules.cpp b/src/modules.cpp
index 16631c1f2..df7c9da40 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/snomasks.cpp b/src/snomasks.cpp
index c67afcdc5..5ddfb3e1e 100644
--- a/src/snomasks.cpp
+++ b/src/snomasks.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/socket.cpp b/src/socket.cpp
index d5ad7b4ce..6883e05fd 100644
--- a/src/socket.cpp
+++ b/src/socket.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
@@ -21,7 +18,6 @@
#include "socketengine.h"
#include "wildcard.h"
-using namespace std;
using namespace irc::sockets;
/* Used when comparing CIDR masks for the modulus bits left over.
diff --git a/src/socketengine.cpp b/src/socketengine.cpp
index 5c05e232f..965df906a 100644
--- a/src/socketengine.cpp
+++ b/src/socketengine.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/socketengine_epoll.cpp b/src/socketengine_epoll.cpp
index bc0013b4c..245509a30 100644
--- a/src/socketengine_epoll.cpp
+++ b/src/socketengine_epoll.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/socketengine_kqueue.cpp b/src/socketengine_kqueue.cpp
index ed26faa27..02cef0e44 100644
--- a/src/socketengine_kqueue.cpp
+++ b/src/socketengine_kqueue.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/socketengine_select.cpp b/src/socketengine_select.cpp
index d2481f9cc..80c8646af 100644
--- a/src/socketengine_select.cpp
+++ b/src/socketengine_select.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/timer.cpp b/src/timer.cpp
index bc08ae1d0..04ff1c15b 100644
--- a/src/timer.cpp
+++ b/src/timer.cpp
@@ -2,12 +2,9 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
diff --git a/src/userprocess.cpp b/src/userprocess.cpp
index acfe793e5..1e21c065d 100644
--- a/src/userprocess.cpp
+++ b/src/userprocess.cpp
@@ -2,22 +2,15 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
*
- * Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
-/* Now with added unF! ;) */
-
-using namespace std;
-
#include "configreader.h"
#include "users.h"
#include "modules.h"
diff --git a/src/users.cpp b/src/users.cpp
index 2a9139643..1abbcc37a 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -2,14 +2,11 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
diff --git a/src/wildcard.cpp b/src/wildcard.cpp
index 57b1bab48..f99054939 100644
--- a/src/wildcard.cpp
+++ b/src/wildcard.cpp
@@ -2,20 +2,15 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
-using namespace std;
-
#include <string>
#include "inspircd.h"
#include "hashcomp.h"
diff --git a/src/xline.cpp b/src/xline.cpp
index 746ad6388..7b830f319 100644
--- a/src/xline.cpp
+++ b/src/xline.cpp
@@ -2,20 +2,15 @@
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
+ * InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
-using namespace std;
-
#include "inspircd.h"
#include "users.h"
#include "modules.h"