From: Kevin P. Fleming Date: Fri, 15 Jun 2012 16:07:08 +0000 (+0000) Subject: Multiple revisions 369001-369002 X-Git-Tag: 10.7.0-rc1~3^2~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7f158f20c48f5b5b0b659f8c336855a43f44afd;p=thirdparty%2Fasterisk.git Multiple revisions 369001-369002 ........ r369001 | kpfleming | 2012-06-15 10:56:08 -0500 (Fri, 15 Jun 2012) | 11 lines Add support-level indications to many more source files. Since we now have tools that scan through the source tree looking for files with specific support levels, we need to ensure that every file that is a component of a 'core' or 'extended' module (or the main Asterisk binary) is explicitly marked with its support level. This patch adds support-level indications to many more source files in tree, but avoids adding them to third-party libraries that are included in the tree and to source files that don't end up involved in Asterisk itself. ........ r369002 | kpfleming | 2012-06-15 10:57:14 -0500 (Fri, 15 Jun 2012) | 3 lines Add a script to enable finding source files without support-levels defined. ........ Merged revisions 369001-369002 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@369005 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/confbridge/conf_config_parser.c b/apps/confbridge/conf_config_parser.c index a35874732a..78fd02c354 100644 --- a/apps/confbridge/conf_config_parser.c +++ b/apps/confbridge/conf_config_parser.c @@ -23,6 +23,10 @@ * \author David Vossel */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/build_tools/find_missing_support_level b/build_tools/find_missing_support_level new file mode 100755 index 0000000000..dacc3d6fcf --- /dev/null +++ b/build_tools/find_missing_support_level @@ -0,0 +1,3 @@ +#!/bin/sh + +grep -r -L -e "support_level" * | grep -e "\.c$" -e "\.cxx$" | sort diff --git a/channels/chan_misdn.c b/channels/chan_misdn.c index 1386a6d929..a985164824 100644 --- a/channels/chan_misdn.c +++ b/channels/chan_misdn.c @@ -55,6 +55,7 @@ suppserv extended ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/console_board.c b/channels/console_board.c index e80247c5fb..6c920a944c 100644 --- a/channels/console_board.c +++ b/channels/console_board.c @@ -37,6 +37,10 @@ * configuration file). */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" /* ast_strdupa */ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/utils.h" /* ast_strdupa */ diff --git a/channels/console_gui.c b/channels/console_gui.c index f49152a732..916c408013 100644 --- a/channels/console_gui.c +++ b/channels/console_gui.c @@ -78,6 +78,10 @@ new regions inside the keypad pictureas comments * */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" #include "console_video.h" #include "asterisk/lock.h" diff --git a/channels/console_video.c b/channels/console_video.c index ba12f83c99..e78b8c3a30 100644 --- a/channels/console_video.c +++ b/channels/console_video.c @@ -36,6 +36,10 @@ //#define DROP_PACKETS 5 /* if set, drop this % of video packets */ //#define OLD_FFMPEG 1 /* set for old ffmpeg with no swscale */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c index 7b12badf01..09d5987089 100644 --- a/channels/iax2-parser.c +++ b/channels/iax2-parser.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/iax2-provision.c b/channels/iax2-provision.c index e4af32d212..a06da730c7 100644 --- a/channels/iax2-provision.c +++ b/channels/iax2-provision.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/misdn/ie.c b/channels/misdn/ie.c index e88c58f5af..74ae897de7 100644 --- a/channels/misdn/ie.c +++ b/channels/misdn/ie.c @@ -24,6 +24,10 @@ if qi is not NULL (TE-mode), offset is set */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" #include diff --git a/channels/misdn/isdn_lib.c b/channels/misdn/isdn_lib.c index b8aec01383..b599718e25 100644 --- a/channels/misdn/isdn_lib.c +++ b/channels/misdn/isdn_lib.c @@ -16,7 +16,9 @@ * \author Christian Richter */ - +/*** MODULEINFO + extended + ***/ #include #include diff --git a/channels/misdn/isdn_msg_parser.c b/channels/misdn/isdn_msg_parser.c index 73e5e8dc3e..1febfa0c19 100644 --- a/channels/misdn/isdn_msg_parser.c +++ b/channels/misdn/isdn_msg_parser.c @@ -16,7 +16,9 @@ * \author Christian Richter */ - +/*** MODULEINFO + extended + ***/ #include "isdn_lib_intern.h" diff --git a/channels/misdn/portinfo.c b/channels/misdn/portinfo.c index 9e9cce86be..f6af3982a4 100644 --- a/channels/misdn/portinfo.c +++ b/channels/misdn/portinfo.c @@ -3,6 +3,9 @@ * \author Christian Richter */ +/*** MODULEINFO + extended + ***/ #include "isdn_lib.h" #include "isdn_lib_intern.h" diff --git a/channels/misdn_config.c b/channels/misdn_config.c index 23c2c6d80e..30e96eca4b 100644 --- a/channels/misdn_config.c +++ b/channels/misdn_config.c @@ -26,6 +26,10 @@ * \ingroup channel_drivers */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/sig_analog.c b/channels/sig_analog.c index fc027303cb..2c4bbb4b85 100644 --- a/channels/sig_analog.c +++ b/channels/sig_analog.c @@ -23,6 +23,10 @@ * \author Matthew Fredrickson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #include diff --git a/channels/sig_pri.c b/channels/sig_pri.c index fd01f50606..5e92b4ea2c 100644 --- a/channels/sig_pri.c +++ b/channels/sig_pri.c @@ -23,6 +23,9 @@ * \author Matthew Fredrickson */ +/*** MODULEINFO + core + ***/ #include "asterisk.h" diff --git a/channels/sig_ss7.c b/channels/sig_ss7.c index a8a3887887..52aabad590 100644 --- a/channels/sig_ss7.c +++ b/channels/sig_ss7.c @@ -27,6 +27,9 @@ * \arg \ref AstCREDITS */ +/*** MODULEINFO + core + ***/ #include "asterisk.h" diff --git a/channels/sip/config_parser.c b/channels/sip/config_parser.c index 0093a23795..a5318a4b7a 100644 --- a/channels/sip/config_parser.c +++ b/channels/sip/config_parser.c @@ -19,6 +19,10 @@ * \brief sip config parsing functions and unit tests */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/sip/dialplan_functions.c b/channels/sip/dialplan_functions.c index 089792aada..6500403bab 100644 --- a/channels/sip/dialplan_functions.c +++ b/channels/sip/dialplan_functions.c @@ -19,6 +19,10 @@ * \brief sip channel dialplan functions and unit tests */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/sip/reqresp_parser.c b/channels/sip/reqresp_parser.c index d87acda345..2ff5e6b8d3 100644 --- a/channels/sip/reqresp_parser.c +++ b/channels/sip/reqresp_parser.c @@ -19,6 +19,10 @@ * \brief sip request parsing functions and unit tests */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/sip/sdp_crypto.c b/channels/sip/sdp_crypto.c index 7f88355141..1342d079d0 100644 --- a/channels/sip/sdp_crypto.c +++ b/channels/sip/sdp_crypto.c @@ -25,6 +25,10 @@ * \author Mikael Magnusson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/sip/security_events.c b/channels/sip/security_events.c index 110c10a556..fc63d9f938 100644 --- a/channels/sip/security_events.c +++ b/channels/sip/security_events.c @@ -24,6 +24,10 @@ * \author Michael L. Young */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/sip/srtp.c b/channels/sip/srtp.c index 3b55106ab2..049bffc587 100644 --- a/channels/sip/srtp.c +++ b/channels/sip/srtp.c @@ -25,6 +25,10 @@ * \author Mikael Magnusson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/channels/vcodecs.c b/channels/vcodecs.c index c667fdb134..b5dbf14e4b 100644 --- a/channels/vcodecs.c +++ b/channels/vcodecs.c @@ -19,6 +19,10 @@ * $Revision$ */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" #include "console_video.h" #include "asterisk/frame.h" diff --git a/channels/vgrabbers.c b/channels/vgrabbers.c index 4afc12f61f..45dced4e1f 100644 --- a/channels/vgrabbers.c +++ b/channels/vgrabbers.c @@ -44,6 +44,10 @@ * `->--[enc_out] */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include diff --git a/main/abstract_jb.c b/main/abstract_jb.c index 5ecce8c40f..256d61989c 100644 --- a/main/abstract_jb.c +++ b/main/abstract_jb.c @@ -29,6 +29,10 @@ * */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/acl.c b/main/acl.c index 69460ad820..71d25d29fb 100644 --- a/main/acl.c +++ b/main/acl.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/alaw.c b/main/alaw.c index 2a6c85c473..c5069f358e 100644 --- a/main/alaw.c +++ b/main/alaw.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/aoc.c b/main/aoc.c index 733d322db3..817bb9225f 100644 --- a/main/aoc.c +++ b/main/aoc.c @@ -23,6 +23,10 @@ * \author David Vossel */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$"); diff --git a/main/app.c b/main/app.c index 3f4f1bbe08..b9ad7b0f0b 100644 --- a/main/app.c +++ b/main/app.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/asterisk.c b/main/asterisk.c index 3ebcebe540..2a2bc42f7e 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -59,6 +59,10 @@ */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/astfd.c b/main/astfd.c index 8aead62fd2..79094840d6 100644 --- a/main/astfd.c +++ b/main/astfd.c @@ -23,6 +23,10 @@ * \author Tilghman Lesher */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #ifdef DEBUG_FD_LEAKS diff --git a/main/astmm.c b/main/astmm.c index 2c9b464b5c..ae42335869 100644 --- a/main/astmm.c +++ b/main/astmm.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #ifdef __AST_DEBUG_MALLOC diff --git a/main/astobj2.c b/main/astobj2.c index 0c0037b7b1..5da94679c4 100644 --- a/main/astobj2.c +++ b/main/astobj2.c @@ -17,6 +17,11 @@ /* * Function implementing astobj2 objects. */ + +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/audiohook.c b/main/audiohook.c index 2ed9b27d1d..7581b59940 100644 --- a/main/audiohook.c +++ b/main/audiohook.c @@ -23,6 +23,10 @@ * \author Joshua Colp */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/autochan.c b/main/autochan.c index 4ad65a3713..d2ff9d035f 100644 --- a/main/autochan.c +++ b/main/autochan.c @@ -23,6 +23,10 @@ * \author Mark Michelson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/autoservice.c b/main/autoservice.c index 35a66205a1..4293e0b455 100644 --- a/main/autoservice.c +++ b/main/autoservice.c @@ -25,6 +25,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/bridging.c b/main/bridging.c index 5491b894cf..b1d67f0e8e 100644 --- a/main/bridging.c +++ b/main/bridging.c @@ -23,6 +23,10 @@ * \author Joshua Colp */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/callerid.c b/main/callerid.c index ee169c3892..94386c9de0 100644 --- a/main/callerid.c +++ b/main/callerid.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/ccss.c b/main/ccss.c index 5585e78e55..6544ba394b 100644 --- a/main/ccss.c +++ b/main/ccss.c @@ -21,6 +21,10 @@ * \author Mark Michelson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/cdr.c b/main/cdr.c index 6fa345bebb..755a1b3c6a 100644 --- a/main/cdr.c +++ b/main/cdr.c @@ -31,6 +31,10 @@ */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/cel.c b/main/cel.c index ce9a15f97d..fa69b02513 100644 --- a/main/cel.c +++ b/main/cel.c @@ -27,6 +27,10 @@ * as expected. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/channel.c b/main/channel.c index 0a5b4ca419..00b2b7cdf2 100644 --- a/main/channel.c +++ b/main/channel.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/chanvars.c b/main/chanvars.c index 670858937a..b961ffd145 100644 --- a/main/chanvars.c +++ b/main/chanvars.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/cli.c b/main/cli.c index 89ec3c4767..e227f99ff5 100644 --- a/main/cli.c +++ b/main/cli.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/config.c b/main/config.c index ac8063e09e..069e5b938d 100644 --- a/main/config.c +++ b/main/config.c @@ -26,6 +26,10 @@ * See http://wiki.asterisk.org */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/data.c b/main/data.c index 47e7fd5bda..1394a2b3e1 100644 --- a/main/data.c +++ b/main/data.c @@ -22,6 +22,10 @@ * \author Eliel C. Sardanons (LU1ALY) */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/datastore.c b/main/datastore.c index ee471551d1..d086d673ad 100644 --- a/main/datastore.c +++ b/main/datastore.c @@ -19,6 +19,10 @@ * \brief Asterisk datastore objects */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/db.c b/main/db.c index dfaf17f2ec..5588eff0c3 100644 --- a/main/db.c +++ b/main/db.c @@ -27,6 +27,10 @@ * licensing even further) we elect to use DB1 which is BSD licensed */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/devicestate.c b/main/devicestate.c index 2e801df88e..84eedc81c5 100644 --- a/main/devicestate.c +++ b/main/devicestate.c @@ -113,6 +113,10 @@ * */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/dial.c b/main/dial.c index 6faf8f5d52..85ff6fa8dd 100644 --- a/main/dial.c +++ b/main/dial.c @@ -23,6 +23,10 @@ * \author Joshua Colp */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/dns.c b/main/dns.c index 159a7a7ab7..5f1c0b8bb9 100644 --- a/main/dns.c +++ b/main/dns.c @@ -29,6 +29,10 @@ * */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/dnsmgr.c b/main/dnsmgr.c index 8d2feed09d..7d4246f60f 100644 --- a/main/dnsmgr.c +++ b/main/dnsmgr.c @@ -28,6 +28,10 @@ * thread is in the middle of updating it to the new address. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/dsp.c b/main/dsp.c index 3c247892b3..b8204cf586 100644 --- a/main/dsp.c +++ b/main/dsp.c @@ -40,6 +40,10 @@ detriment. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/enum.c b/main/enum.c index d590666519..065f4b947c 100644 --- a/main/enum.c +++ b/main/enum.c @@ -45,6 +45,10 @@ * \todo The service type selection needs to be redone. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/event.c b/main/event.c index 83bfdd34a3..bc2078f9b1 100644 --- a/main/event.c +++ b/main/event.c @@ -23,6 +23,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/file.c b/main/file.c index 70b971cb3a..dddb7ca067 100644 --- a/main/file.c +++ b/main/file.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/fixedjitterbuf.c b/main/fixedjitterbuf.c index 93c4cd205b..4d1032356c 100644 --- a/main/fixedjitterbuf.c +++ b/main/fixedjitterbuf.c @@ -25,6 +25,10 @@ * \author Slav Klenov */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/format.c b/main/format.c index 82e3d26285..6c234bfcef 100644 --- a/main/format.c +++ b/main/format.c @@ -25,6 +25,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$"); diff --git a/main/format_cap.c b/main/format_cap.c index bd471d4a7e..aac8b1e3f9 100644 --- a/main/format_cap.c +++ b/main/format_cap.c @@ -23,6 +23,10 @@ * \author David Vossel */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$"); diff --git a/main/format_pref.c b/main/format_pref.c index 11308e1e01..9cb513c228 100644 --- a/main/format_pref.c +++ b/main/format_pref.c @@ -21,6 +21,10 @@ * \brief Format Preference API */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$"); diff --git a/main/frame.c b/main/frame.c index b664e2e849..b3ee6412df 100644 --- a/main/frame.c +++ b/main/frame.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/framehook.c b/main/framehook.c index 2d5fd5a472..6f706fb9da 100644 --- a/main/framehook.c +++ b/main/framehook.c @@ -23,6 +23,10 @@ * \author David Vossel */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/fskmodem.c b/main/fskmodem.c index 8d9628e0d2..dee5f5cf7f 100644 --- a/main/fskmodem.c +++ b/main/fskmodem.c @@ -21,6 +21,10 @@ * \note Includes code and algorithms from the Zapata library. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #ifdef INTEGER_CALLERID diff --git a/main/fskmodem_float.c b/main/fskmodem_float.c index bc873eac5f..547d891c25 100644 --- a/main/fskmodem_float.c +++ b/main/fskmodem_float.c @@ -28,6 +28,10 @@ * */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/fskmodem_int.c b/main/fskmodem_int.c index 8f84f5800f..42edd01302 100644 --- a/main/fskmodem_int.c +++ b/main/fskmodem_int.c @@ -28,6 +28,10 @@ * */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/global_datastores.c b/main/global_datastores.c index cddad6ec1f..92c6bb4f7a 100644 --- a/main/global_datastores.c +++ b/main/global_datastores.c @@ -23,6 +23,10 @@ * \author Mark Michelson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/hashtab.c b/main/hashtab.c index 78878260ff..4b765979f3 100644 --- a/main/hashtab.c +++ b/main/hashtab.c @@ -22,6 +22,10 @@ * \author Steve Murphy */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/heap.c b/main/heap.c index 9c4379abaa..b2c0d38359 100644 --- a/main/heap.c +++ b/main/heap.c @@ -23,6 +23,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/image.c b/main/image.c index 3aa2266532..e9b4758d9c 100644 --- a/main/image.c +++ b/main/image.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/indications.c b/main/indications.c index eb6d8edc3a..ec9a720481 100644 --- a/main/indications.c +++ b/main/indications.c @@ -23,6 +23,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/io.c b/main/io.c index 8d51f4936f..1ab15e5fd9 100644 --- a/main/io.c +++ b/main/io.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/jitterbuf.c b/main/jitterbuf.c index 40bbb554c6..36ebb27850 100644 --- a/main/jitterbuf.c +++ b/main/jitterbuf.c @@ -27,6 +27,10 @@ * */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/loader.c b/main/loader.c index bb4668e1d4..97adb6b004 100644 --- a/main/loader.c +++ b/main/loader.c @@ -27,6 +27,10 @@ * - See ModMngMnt */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/lock.c b/main/lock.c index df7940b6ff..c854b3d615 100644 --- a/main/lock.c +++ b/main/lock.c @@ -21,6 +21,10 @@ * \brief General Asterisk locking. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/logger.c b/main/logger.c index fcb13a9917..73ac4cecfd 100644 --- a/main/logger.c +++ b/main/logger.c @@ -25,6 +25,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/message.c b/main/message.c index ae76f256fa..7d6ab27329 100644 --- a/main/message.c +++ b/main/message.c @@ -23,6 +23,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/netsock.c b/main/netsock.c index 4b3ed11919..eedde81f08 100644 --- a/main/netsock.c +++ b/main/netsock.c @@ -25,6 +25,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/netsock2.c b/main/netsock2.c index 5ae4ceb709..59ae44175b 100644 --- a/main/netsock2.c +++ b/main/netsock2.c @@ -23,6 +23,10 @@ * \author Viagénie */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/pbx.c b/main/pbx.c index 52238e9e8f..183f644b0a 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -22,6 +22,11 @@ * * \author Mark Spencer */ + +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/plc.c b/main/plc.c index ef21312157..a5c3992d6f 100644 --- a/main/plc.c +++ b/main/plc.c @@ -30,6 +30,10 @@ * \author Steve Underwood */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/privacy.c b/main/privacy.c index dfb197f38e..2efcfdb0f1 100644 --- a/main/privacy.c +++ b/main/privacy.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/rtp_engine.c b/main/rtp_engine.c index 89c12802ca..82091a040c 100644 --- a/main/rtp_engine.c +++ b/main/rtp_engine.c @@ -23,6 +23,10 @@ * \author Joshua Colp */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/say.c b/main/say.c index b12d3795ad..1da801b24f 100644 --- a/main/say.c +++ b/main/say.c @@ -31,6 +31,10 @@ * IP Crossing Co., Ltd. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/sched.c b/main/sched.c index d86e5befd8..d2168e05f9 100644 --- a/main/sched.c +++ b/main/sched.c @@ -24,6 +24,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/security_events.c b/main/security_events.c index ed05ebfa0a..f51dfb725f 100644 --- a/main/security_events.c +++ b/main/security_events.c @@ -24,6 +24,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/slinfactory.c b/main/slinfactory.c index 338305b406..9ed46d66a7 100644 --- a/main/slinfactory.c +++ b/main/slinfactory.c @@ -24,6 +24,10 @@ * \author Anthony Minessale */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/srv.c b/main/srv.c index 5a0c7effbf..1a882a65fe 100644 --- a/main/srv.c +++ b/main/srv.c @@ -29,6 +29,10 @@ * \note Funding provided by nic.at */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/ssl.c b/main/ssl.c index 40129f84f5..ff202816ef 100644 --- a/main/ssl.c +++ b/main/ssl.c @@ -23,6 +23,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/stdtime/localtime.c b/main/stdtime/localtime.c index bbbb5dbfdc..140c72f683 100644 --- a/main/stdtime/localtime.c +++ b/main/stdtime/localtime.c @@ -44,6 +44,10 @@ /*LINTLIBRARY*/ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/strcompat.c b/main/strcompat.c index 97faae73f4..8f93565497 100644 --- a/main/strcompat.c +++ b/main/strcompat.c @@ -19,6 +19,10 @@ * \brief Compatibility functions for strsep and strtoq missing on Solaris */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #include diff --git a/main/strings.c b/main/strings.c index 10c1c42f88..285ec92879 100644 --- a/main/strings.c +++ b/main/strings.c @@ -31,6 +31,10 @@ ***/ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/stun.c b/main/stun.c index a1474156fb..ca3183839a 100644 --- a/main/stun.c +++ b/main/stun.c @@ -26,6 +26,10 @@ * \note STUN is defined in RFC 3489. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/syslog.c b/main/syslog.c index 88f554e334..9171be40b4 100644 --- a/main/syslog.c +++ b/main/syslog.c @@ -22,6 +22,10 @@ * \author Sean Bright */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #include "asterisk/utils.h" #include "asterisk/syslog.h" diff --git a/main/taskprocessor.c b/main/taskprocessor.c index 782a344516..a5e106b280 100644 --- a/main/taskprocessor.c +++ b/main/taskprocessor.c @@ -23,6 +23,10 @@ * \author Dwayne Hubbard */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/tcptls.c b/main/tcptls.c index 6d725fe0fd..797b5815a5 100644 --- a/main/tcptls.c +++ b/main/tcptls.c @@ -25,6 +25,10 @@ * \author Brett Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/tdd.c b/main/tdd.c index d0334d1db4..271550e558 100644 --- a/main/tdd.c +++ b/main/tdd.c @@ -27,6 +27,10 @@ * \note Includes code and algorithms from the Zapata library. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/term.c b/main/term.c index e757d9321f..8bafc6195c 100644 --- a/main/term.c +++ b/main/term.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/test.c b/main/test.c index 07ddc4d786..d24ea42a65 100644 --- a/main/test.c +++ b/main/test.c @@ -25,6 +25,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$"); diff --git a/main/threadstorage.c b/main/threadstorage.c index 83c9ebe30a..403045bd83 100644 --- a/main/threadstorage.c +++ b/main/threadstorage.c @@ -23,6 +23,10 @@ * \author Kevin P. Fleming */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #include "asterisk/_private.h" diff --git a/main/timing.c b/main/timing.c index 23d3cf8eef..02f51b8488 100644 --- a/main/timing.c +++ b/main/timing.c @@ -25,6 +25,10 @@ * \author Russell Bryant */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/translate.c b/main/translate.c index eb0c77a23d..797e10dcc6 100644 --- a/main/translate.c +++ b/main/translate.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/udptl.c b/main/udptl.c index 3d3ba16c35..cc93be017e 100644 --- a/main/udptl.c +++ b/main/udptl.c @@ -48,6 +48,9 @@ * - app_fax.c */ +/*** MODULEINFO + core + ***/ #include "asterisk.h" diff --git a/main/ulaw.c b/main/ulaw.c index 650b0da365..8caae9b85a 100644 --- a/main/ulaw.c +++ b/main/ulaw.c @@ -23,6 +23,10 @@ * \author Mark Spencer */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/utils.c b/main/utils.c index 256e61f0b0..7ab45f393a 100644 --- a/main/utils.c +++ b/main/utils.c @@ -23,6 +23,10 @@ * Please consult the CODING GUIDELINES for more information. */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/main/xml.c b/main/xml.c index e28a989d84..bdf983e51c 100644 --- a/main/xml.c +++ b/main/xml.c @@ -21,6 +21,10 @@ * \author Eliel C. Sardanons (LU1ALY) */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #include "asterisk/xml.h" #include "asterisk/logger.h" diff --git a/main/xmldoc.c b/main/xmldoc.c index b940404c92..f83f58a653 100644 --- a/main/xmldoc.c +++ b/main/xmldoc.c @@ -23,6 +23,10 @@ * \extref libxml2 http://www.xmlsoft.org/ */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/pbx/dundi-parser.c b/pbx/dundi-parser.c index 5a236a0a3c..0bf23e6061 100644 --- a/pbx/dundi-parser.c +++ b/pbx/dundi-parser.c @@ -22,6 +22,10 @@ * */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/res/ael/pval.c b/res/ael/pval.c index 327dbffc7c..ff425f543f 100644 --- a/res/ael/pval.c +++ b/res/ael/pval.c @@ -23,6 +23,10 @@ * */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/res/ais/clm.c b/res/ais/clm.c index 640f212591..0e52bf7eea 100644 --- a/res/ais/clm.c +++ b/res/ais/clm.c @@ -28,6 +28,10 @@ * (Cluster Membership) Service. */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$"); diff --git a/res/ais/evt.c b/res/ais/evt.c index 872f1e58e6..38205803d8 100644 --- a/res/ais/evt.c +++ b/res/ais/evt.c @@ -28,6 +28,10 @@ * (Event) Service. */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$"); diff --git a/res/snmp/agent.c b/res/snmp/agent.c index 6201d79b27..ed5459fe25 100644 --- a/res/snmp/agent.c +++ b/res/snmp/agent.c @@ -14,6 +14,10 @@ * \author Thorsten Lockert */ +/*** MODULEINFO + extended + ***/ + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") diff --git a/utils/astdb2bdb.c b/utils/astdb2bdb.c index 51f96ed299..c93d463127 100644 --- a/utils/astdb2bdb.c +++ b/utils/astdb2bdb.c @@ -18,11 +18,15 @@ /*! \file * - * \brief SQLite 3 astdb to Berkely DB converter + * \brief SQLite 3 astdb to Berkeley DB converter * * \author Terry Wilson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" #include diff --git a/utils/astdb2sqlite3.c b/utils/astdb2sqlite3.c index b0751dc3be..ba35f9360c 100644 --- a/utils/astdb2sqlite3.c +++ b/utils/astdb2sqlite3.c @@ -18,11 +18,15 @@ /*! \file * - * \brief Berekeley DB to SQLite3 converter + * \brief Berkeley DB to SQLite3 converter * * \author Terry Wilson */ +/*** MODULEINFO + core + ***/ + #include "asterisk.h" //ASTERISK_FILE_VERSION(__FILE__, "$Revision$")