diff options
60 files changed, 1041 insertions, 297 deletions
diff --git a/include/base.h b/include/base.h index 9b9795229..c959cf869 100644 --- a/include/base.h +++ b/include/base.h @@ -1,6 +1,18 @@ -/* -Defines the base classes used by InspIRCd -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ #ifndef __BASE_H__ #define __BASE_H__ diff --git a/include/channels.h b/include/channels.h index c0df69513..633d7edef 100644 --- a/include/channels.h +++ b/include/channels.h @@ -1,7 +1,18 @@ -/* - - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd_config.h" #include "base.h" diff --git a/include/commands.h b/include/commands.h index cb339377c..f1c383e08 100644 --- a/include/commands.h +++ b/include/commands.h @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + #ifndef __COMMANDS_H #define __COMMANDS_H diff --git a/include/connection.h b/include/connection.h index ee723764c..e146c73bf 100644 --- a/include/connection.h +++ b/include/connection.h @@ -1,6 +1,18 @@ -/* - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd_config.h" #include "base.h" diff --git a/include/ctables.h b/include/ctables.h index 2a1be7b77..fb96b9ef6 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2003 ChatSpike-Dev. + * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. * E-mail: * <brain@chatspike.net> * <Craig@chatspike.net> @@ -13,6 +13,7 @@ * * --------------------------------------------------- */ + #ifndef __CTABLES_H__ #define __CTABLES_H__ diff --git a/include/dynamic.h b/include/dynamic.h index 0382324ce..987f5de72 100644 --- a/include/dynamic.h +++ b/include/dynamic.h @@ -1,16 +1,23 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + + #ifndef __DLL_H #define __DLL_H -// -// class DLLManager is the simple ELF C++ Library manager. -// -// It tries to dynamically load the specified shared library -// when it is construted. -// -// You should call LastError() before doing anything. If it -// returns NULL there is no error. -// - class DLLManager { @@ -32,24 +39,6 @@ class DLLManager }; -// -// class DLLFactoryBase is the base class used for the DLLFactory -// template class. -// -// It inherits from the DLLManager class and must be constructed with -// the file name of the shared library and the function name within that -// library which will create the desired C++ factory class. -// If you do not provide func_name to the constructor, it defaults to -// the undecorated "C" symbol "factory0" -// -// factory_func will be set to a pointer to the requested factory creator -// function. If there was an error linking to the shared library, -// factory_func will be 0. -// -// You can call 'LastError()' to find the error message that occurred. -// -// - class DLLFactoryBase : public DLLManager { public: @@ -59,25 +48,6 @@ class DLLFactoryBase : public DLLManager }; -// -// The DLLFactory template class inherits from DLLFactoryBase. -// The constructor takes the file name of the shared library -// and the undecorated "C" symbol name of the factory creator -// function. The factory creator function in your shared library -// MUST either return a pointer to an object that is a subclass -// of 'T' or it must return 0. -// -// If everything is cool, then 'factory' will point to the -// requested factory class. If not, it will be 0. -// -// Since the DLLFactory template ultimately inherits DLLManager, -// you can call LastError() to get any error code information -// -// The created factory is OWNED by the DLLFactory class. -// The created factory will get deleted when the DLLFactory class -// is deleted, because the DLL will get unloaded as well. -// - template <class T> class DLLFactory : public DLLFactoryBase { public: diff --git a/include/globals.h b/include/globals.h index 4087ab00c..146ffb582 100644 --- a/include/globals.h +++ b/include/globals.h @@ -1,8 +1,18 @@ -/* - - -*/ - +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ #ifndef __WORLD_H #define __WORLD_H diff --git a/include/inspircd.h b/include/inspircd.h index 09e286cdc..d55ccccf4 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -1,8 +1,18 @@ -/* - - -*/ - +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <string> #include <stdio.h> diff --git a/include/inspircd_io.h b/include/inspircd_io.h index a6403e7ec..28e55bd0b 100644 --- a/include/inspircd_io.h +++ b/include/inspircd_io.h @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2003 ChatSpike-Dev. + * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. * E-mail: * <brain@chatspike.net> * <Craig@chatspike.net> diff --git a/include/inspircd_util.h b/include/inspircd_util.h index 1a2e59a87..1035960b3 100644 --- a/include/inspircd_util.h +++ b/include/inspircd_util.h @@ -1,5 +1,17 @@ -/* - * InspIRCd utlity functions +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- */ char* SafeStrncpy(char *, const char *, size_t ); diff --git a/include/message.h b/include/message.h index cc9076bce..b8c485f5f 100644 --- a/include/message.h +++ b/include/message.h @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + #ifndef __MESSAGE_H #define __MESSAGE_H diff --git a/include/mode.h b/include/mode.h index 8b5f9c638..4e0c8c6d3 100644 --- a/include/mode.h +++ b/include/mode.h @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + #ifndef __MODE_H #define __MODE_H diff --git a/include/modules.h b/include/modules.h index 77a75693c..698060681 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1,8 +1,18 @@ -/* - - - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ #ifndef __PLUGIN_H diff --git a/include/servers.h b/include/servers.h index af678f5d6..ee4e7290b 100644 --- a/include/servers.h +++ b/include/servers.h @@ -1,7 +1,18 @@ -/* - - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd_config.h" #include "connection.h" diff --git a/include/users.h b/include/users.h index a1739a2a1..7b1e7ccc4 100644 --- a/include/users.h +++ b/include/users.h @@ -1,7 +1,18 @@ -/* - - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd_config.h" #include "channels.h" diff --git a/include/wildcard.h b/include/wildcard.h index fc73c2d2a..63877795d 100644 --- a/include/wildcard.h +++ b/include/wildcard.h @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <string> #include "inspircd_config.h" diff --git a/include/xline.h b/include/xline.h index fdd5fb5d1..87f88518f 100644 --- a/include/xline.h +++ b/include/xline.h @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + #ifndef __XLINE_H #define __XLINE_H diff --git a/src/InspIRCd.layout b/src/InspIRCd.layout index 5e48503f6..d09239a01 100644 --- a/src/InspIRCd.layout +++ b/src/InspIRCd.layout @@ -5,48 +5,48 @@ Order=2,4,6,3,7,25,5,24,39,42,43,1,46,0,49,-1 [Editor_0] Open=1 Top=0 -CursorCol=39 -CursorRow=78 -TopLine=26 +CursorCol=1 +CursorRow=17 +TopLine=1 LeftChar=1 [Editor_1] Open=1 Top=0 -CursorCol=36 -CursorRow=1450 -TopLine=1419 +CursorCol=17 +CursorRow=11 +TopLine=1 LeftChar=1 [Editor_2] Open=1 Top=0 -CursorCol=21 -CursorRow=489 -TopLine=428 +CursorCol=39 +CursorRow=5 +TopLine=1 LeftChar=1 [Editor_3] Open=1 Top=0 -CursorCol=2 -CursorRow=82 -TopLine=19 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_4] Open=1 Top=0 -CursorCol=12 -CursorRow=78 -TopLine=78 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_5] Open=1 Top=0 CursorCol=1 -CursorRow=23 +CursorRow=16 TopLine=1 LeftChar=1 @@ -54,71 +54,71 @@ LeftChar=1 Open=1 Top=0 CursorCol=1 -CursorRow=117 -TopLine=87 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_7] Open=1 Top=0 -CursorCol=10 -CursorRow=18 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_8] -Open=0 +Open=1 Top=0 -CursorCol=50 -CursorRow=31 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_9] -Open=0 +Open=1 Top=0 -CursorCol=17 -CursorRow=65 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_10] Open=1 Top=0 -CursorCol=3 -CursorRow=29 -TopLine=70 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_11] -Open=0 +Open=1 Top=0 -CursorCol=39 -CursorRow=6 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_12] Open=1 Top=0 -CursorCol=42 -CursorRow=168 -TopLine=142 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_13] Open=1 Top=0 -CursorCol=41 -CursorRow=41 -TopLine=197 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_14] -Open=0 +Open=1 Top=0 -CursorCol=1 -CursorRow=18 +CursorCol=39 +CursorRow=5 TopLine=1 LeftChar=1 @@ -126,323 +126,323 @@ LeftChar=1 Open=1 Top=0 CursorCol=1 -CursorRow=81 -TopLine=41 +CursorRow=50 +TopLine=1 LeftChar=1 [Editor_16] -Open=0 +Open=1 Top=0 CursorCol=1 -CursorRow=45 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_17] Open=1 Top=0 -CursorCol=4 -CursorRow=114 -TopLine=99 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_18] -Open=0 +Open=1 Top=0 -CursorCol=6 -CursorRow=20 +CursorCol=39 +CursorRow=5 TopLine=1 LeftChar=1 [Editor_19] Open=1 Top=0 -CursorCol=21 -CursorRow=7 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_20] Open=1 Top=0 -CursorCol=64 -CursorRow=268 -TopLine=236 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_21] -Open=0 +Open=1 Top=0 CursorCol=1 -CursorRow=63 -TopLine=12 +CursorRow=18 +TopLine=1 LeftChar=1 [Editor_22] Open=1 Top=0 -CursorCol=9 -CursorRow=55 -TopLine=100 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_23] Open=1 -Top=0 -CursorCol=28 -CursorRow=42 -TopLine=2 +Top=1 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_24] Open=1 Top=0 -CursorCol=5 -CursorRow=351 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_25] Open=1 Top=0 CursorCol=1 -CursorRow=77 -TopLine=77 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_26] -Open=0 +Open=1 Top=0 -CursorCol=2 -CursorRow=73 -TopLine=32 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_27] -Open=0 +Open=1 Top=0 -CursorCol=13 -CursorRow=50 -TopLine=6 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_28] -Open=0 +Open=1 Top=0 -CursorCol=87 -CursorRow=20 -TopLine=5 +CursorCol=1 +CursorRow=17 +TopLine=1 LeftChar=1 [Editor_29] -Open=0 +Open=1 Top=0 -CursorCol=70 -CursorRow=21 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_30] -Open=0 +Open=1 Top=0 CursorCol=1 -CursorRow=34 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_31] -Open=0 +Open=1 Top=0 -CursorCol=2 -CursorRow=40 -TopLine=8 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_32] Open=1 Top=0 -CursorCol=3 -CursorRow=57 -TopLine=28 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_33] -Open=0 +Open=1 Top=0 -CursorCol=23 -CursorRow=36 -TopLine=10 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_34] -Open=0 +Open=1 Top=0 -CursorCol=38 -CursorRow=35 -TopLine=8 +CursorCol=1 +CursorRow=17 +TopLine=1 LeftChar=1 [Editor_35] -Open=0 +Open=1 Top=0 -CursorCol=2 -CursorRow=51 -TopLine=24 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_36] -Open=0 +Open=1 Top=0 CursorCol=1 -CursorRow=34 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_37] -Open=0 +Open=1 Top=0 -CursorCol=13 -CursorRow=160 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_38] Open=1 Top=0 -CursorCol=72 -CursorRow=29 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_39] Open=1 Top=0 -CursorCol=42 -CursorRow=165 -TopLine=139 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_40] -Open=0 +Open=1 Top=0 CursorCol=1 -CursorRow=31 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_41] Open=1 Top=0 -CursorCol=6 -CursorRow=23 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_42] Open=1 Top=0 -CursorCol=3 -CursorRow=1261 -TopLine=1232 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_43] Open=1 Top=0 -CursorCol=10 -CursorRow=285 -TopLine=249 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_44] -Open=0 +Open=1 Top=0 -CursorCol=64 -CursorRow=64 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_45] -Open=0 +Open=1 Top=0 -CursorCol=12 -CursorRow=122 -TopLine=77 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_46] Open=1 Top=0 CursorCol=1 -CursorRow=77 -TopLine=24 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_47] Open=1 Top=0 CursorCol=1 -CursorRow=157 -TopLine=4 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_48] -Open=0 +Open=1 Top=0 -CursorCol=11 -CursorRow=82 -TopLine=2 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_49] Open=1 Top=0 -CursorCol=31 -CursorRow=14 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_50] Open=1 Top=0 CursorCol=1 -CursorRow=211 -TopLine=167 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_51] -Open=0 +Open=1 Top=0 -CursorCol=12 -CursorRow=57 -TopLine=19 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_52] -Open=0 +Open=1 Top=0 -CursorCol=2 -CursorRow=39 -TopLine=43 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_53] Open=1 Top=0 -CursorCol=13 -CursorRow=39 -TopLine=10 +CursorCol=1 +CursorRow=16 +TopLine=1 LeftChar=1 [Editor_54] Open=1 Top=0 CursorCol=1 -CursorRow=21 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_55] Open=1 Top=0 CursorCol=1 -CursorRow=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_56] Open=1 Top=0 -CursorCol=53 -CursorRow=7 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_57] Open=1 Top=0 CursorCol=1 -CursorRow=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_58] Open=1 Top=0 CursorCol=1 -CursorRow=1 +CursorRow=16 TopLine=1 LeftChar=1 [Editor_59] Open=1 -Top=1 -CursorCol=2 -CursorRow=37 +Top=0 +CursorCol=1 +CursorRow=16 TopLine=1 LeftChar=1 diff --git a/src/base.cpp b/src/base.cpp index f1f66bd93..511c8152d 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "base.h" #include "inspircd_config.h" #include <time.h> diff --git a/src/channels.cpp b/src/channels.cpp index 1def64fd8..310195679 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "inspircd_io.h" #include "inspircd_util.h" diff --git a/src/commands.cpp b/src/commands.cpp index 13487e695..94603d8e9 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "inspircd_io.h" #include "inspircd_util.h" diff --git a/src/connection.cpp b/src/connection.cpp index bb3e8f75b..97619619f 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <connection.h> #include <unistd.h> #include <fcntl.h> diff --git a/src/dynamic.cpp b/src/dynamic.cpp index 90c7d20f0..c97420820 100644 --- a/src/dynamic.cpp +++ b/src/dynamic.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "globals.h" #include <dlfcn.h> #include "dynamic.h" diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index b267e98ca..58ac87369 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2003 ChatSpike-Dev. + * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. * E-mail: * <brain@chatspike.net> * <Craig@chatspike.net> diff --git a/src/inspircd_util.cpp b/src/inspircd_util.cpp index 29011eb9a..54520b1df 100644 --- a/src/inspircd_util.cpp +++ b/src/inspircd_util.cpp @@ -1,7 +1,18 @@ -/* - - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "inspircd_io.h" diff --git a/src/message.cpp b/src/message.cpp index f7576fe47..dbb861150 100644 --- a/src/message.cpp +++ b/src/message.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "inspircd_io.h" #include "inspircd_util.h" diff --git a/src/mode.cpp b/src/mode.cpp index 1f03a20bf..4bd7c908f 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "inspircd_io.h" #include "inspircd_util.h" diff --git a/src/modules.cpp b/src/modules.cpp index 311cee22d..d4f98cc86 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "inspircd_io.h" #include "inspircd_util.h" diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index d4d275fce..ddfede7f2 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_antibottler.cpp b/src/modules/m_antibottler.cpp index b8dd420cd..efa2de7e2 100644 --- a/src/modules/m_antibottler.cpp +++ b/src/modules/m_antibottler.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_blockcolor.cpp b/src/modules/m_blockcolor.cpp index 58ee4da8b..a4e5acc1d 100644 --- a/src/modules/m_blockcolor.cpp +++ b/src/modules/m_blockcolor.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp index ce7680ad4..a357e8983 100644 --- a/src/modules/m_chanprotect.cpp +++ b/src/modules/m_chanprotect.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_chghost.cpp b/src/modules/m_chghost.cpp index c70c56967..c1ba262f1 100644 --- a/src/modules/m_chghost.cpp +++ b/src/modules/m_chghost.cpp @@ -1,11 +1,17 @@ -/* - * CHGHOST module for InspIRCD - * Author: brain - * Version: 1.0.0.0 +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * Syntax: /CHGHOST [nick] [new name] - * Changes a users DHOST (oper only) - * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp index 4337df0f0..08930c8f2 100644 --- a/src/modules/m_cloaking.cpp +++ b/src/modules/m_cloaking.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + // Hostname cloaking (+x mode) module for inspircd. // version 1.0.0.1 by brain (C. J. Edwards) Mar 2004. // diff --git a/src/modules/m_filter.cpp b/src/modules/m_filter.cpp index b16039abd..8d121ac0e 100644 --- a/src/modules/m_filter.cpp +++ b/src/modules/m_filter.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + // Message and notice filtering using glob patterns // a module based on the original work done by Craig Edwards in 2003 // for the chatspike network. diff --git a/src/modules/m_foobar.cpp b/src/modules/m_foobar.cpp index ab3fa759b..a96002ccd 100644 --- a/src/modules/m_foobar.cpp +++ b/src/modules/m_foobar.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_globops.cpp b/src/modules/m_globops.cpp index a6d0812fe..03c49ca10 100644 --- a/src/modules/m_globops.cpp +++ b/src/modules/m_globops.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + // Globops and +g support module by C.J.Edwards #include <stdio.h> diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp index d6ebb6f92..3921b7f72 100644 --- a/src/modules/m_helpop.cpp +++ b/src/modules/m_helpop.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_knock.cpp b/src/modules/m_knock.cpp index 2569214df..dc4263335 100644 --- a/src/modules/m_knock.cpp +++ b/src/modules/m_knock.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include <string> #include "users.h" diff --git a/src/modules/m_noctcp.cpp b/src/modules/m_noctcp.cpp index a5d472d45..8d597d1b8 100644 --- a/src/modules/m_noctcp.cpp +++ b/src/modules/m_noctcp.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_nokicks.cpp b/src/modules/m_nokicks.cpp index 582b3209a..d2f6b8da5 100644 --- a/src/modules/m_nokicks.cpp +++ b/src/modules/m_nokicks.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_nonicks.cpp b/src/modules/m_nonicks.cpp index 579441c89..24540c1d4 100644 --- a/src/modules/m_nonicks.cpp +++ b/src/modules/m_nonicks.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include <string> #include "users.h" diff --git a/src/modules/m_nonotice.cpp b/src/modules/m_nonotice.cpp index f501cc307..a5fa2b61c 100644 --- a/src/modules/m_nonotice.cpp +++ b/src/modules/m_nonotice.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_operchans.cpp b/src/modules/m_operchans.cpp index ba9a4d79f..430411289 100644 --- a/src/modules/m_operchans.cpp +++ b/src/modules/m_operchans.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_override.cpp b/src/modules/m_override.cpp index e06ffff27..40508c5ef 100644 --- a/src/modules/m_override.cpp +++ b/src/modules/m_override.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_randquote.cpp b/src/modules/m_randquote.cpp index ddff1c914..d14445d51 100644 --- a/src/modules/m_randquote.cpp +++ b/src/modules/m_randquote.cpp @@ -1,7 +1,22 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include <stdlib.h> #include <fstream> - #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_redirect.cpp b/src/modules/m_redirect.cpp index 307afb3a3..7b4fe81de 100644 --- a/src/modules/m_redirect.cpp +++ b/src/modules/m_redirect.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_sajoin.cpp b/src/modules/m_sajoin.cpp index deea7abd4..5b461362b 100644 --- a/src/modules/m_sajoin.cpp +++ b/src/modules/m_sajoin.cpp @@ -1,4 +1,18 @@ -// Sajoin and +g support module by C.J.Edwards +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include <string> diff --git a/src/modules/m_samode.cpp b/src/modules/m_samode.cpp index a563a3de5..6a2499f12 100644 --- a/src/modules/m_samode.cpp +++ b/src/modules/m_samode.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + /* * SAMODE module for InspIRCd * Co authored by Brain and w00t diff --git a/src/modules/m_sanick.cpp b/src/modules/m_sanick.cpp index 1452c1376..053f59828 100644 --- a/src/modules/m_sanick.cpp +++ b/src/modules/m_sanick.cpp @@ -1,4 +1,18 @@ -// Sanick and +g support module by C.J.Edwards +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include <string> diff --git a/src/modules/m_sapart.cpp b/src/modules/m_sapart.cpp index 177a77d9b..fb15d2cf8 100644 --- a/src/modules/m_sapart.cpp +++ b/src/modules/m_sapart.cpp @@ -1,4 +1,18 @@ -// Sapart and +g support module by C.J.Edwards +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include <string> diff --git a/src/modules/m_saquit.cpp b/src/modules/m_saquit.cpp index 0c6ca949d..9996f2044 100644 --- a/src/modules/m_saquit.cpp +++ b/src/modules/m_saquit.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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. + * + * --------------------------------------------------- + */ + /* * SAQUIT module for InspIRCd * Author: w00t diff --git a/src/modules/m_services.cpp b/src/modules/m_services.cpp index bf6d897d9..74c2bf2dc 100644 --- a/src/modules/m_services.cpp +++ b/src/modules/m_services.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index f6a9bbf3f..ba5e3319b 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -1,12 +1,17 @@ -/* - * SETHOST module for InspIRCD - * Author: brain - * Version: 1.0.0.0 +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * Syntax: /SETHOST [new host] - * Changes the user's DHOST who issues the command - * (oper only) - * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 4cf6bb204..110afbe51 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -1,11 +1,17 @@ -/* - * SETNAME module for InspIRCD - * Author: brain - * Version: 1.0.0.0 +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * Syntax: /SETNAME [new name] - * Changes the user's GECOS who issues the command - * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> diff --git a/src/modules/m_testcommand.cpp b/src/modules/m_testcommand.cpp index 942f1553c..452160dd0 100644 --- a/src/modules/m_testcommand.cpp +++ b/src/modules/m_testcommand.cpp @@ -1,5 +1,20 @@ -#include <stdio.h> +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <stdio.h> #include "users.h" #include "channels.h" #include "modules.h" diff --git a/src/servers.cpp b/src/servers.cpp index 00b456737..e64fab488 100644 --- a/src/servers.cpp +++ b/src/servers.cpp @@ -1,7 +1,18 @@ -/* - - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd_config.h" #include "servers.h" diff --git a/src/users.cpp b/src/users.cpp index cdb93a40f..2b02e70fb 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1,6 +1,18 @@ -/* -Manages userrec objects -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd_config.h" #include "channels.h" diff --git a/src/wildcard.cpp b/src/wildcard.cpp index f74de804a..b2d85afe1 100644 --- a/src/wildcard.cpp +++ b/src/wildcard.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 <string> #include "inspircd_config.h" #include "inspircd.h" diff --git a/src/xline.cpp b/src/xline.cpp index 734c27976..2c273b477 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -1,3 +1,19 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "inspircd_io.h" #include "inspircd_util.h" |