summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2001-03-07 00:52:22 +0000
committerMark Spencer <markster@digium.com>2001-03-07 00:52:22 +0000
commit22318b627d954c5a555abe5a5b002af5855e5023 (patch)
tree013c8875e1fadab5b15ed1bc8d53c2bb3ca5c990 /include/asterisk
parent40780b155996b13394ef2c2261c1217941af016c (diff)
Version 0.1.7 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@235 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rwxr-xr-xinclude/asterisk/module.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index e7bda62d6..9a8a7153c 100755
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -25,6 +25,17 @@ int unload_module(void); /* Cleanup all module structures,
sockets, etc */
int usecount(void); /* How many channels provided by this module are in use? */
char *description(void); /* Description of this module */
+char *key(void); /* Return the below mentioned key, unmodified */
+
+int reload(void);
+
+#define ASTERISK_GPL_KEY \
+ "This paragraph is Copyright (C) 2000, Linux Support Services, Inc. \
+In order for your module to load, it must return this key via a function \
+called \"key\". Any code which includes this paragraph must be licensed under \
+the GNU General Public License version 2 or later (at your option). Linux \
+Support Services, Inc. reserves the right to allow other parties to license \
+this paragraph under other terms as well."
#define AST_MODULE_CONFIG "modules.conf" /* Module configuration file */