]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
update doxygen docs to specify authors
authorRussell Bryant <russell@russellbryant.com>
Fri, 30 Dec 2005 21:18:06 +0000 (21:18 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 30 Dec 2005 21:18:06 +0000 (21:18 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7682 65c4cc65-6c06-0410-ace0-fbb531ad65f3

151 files changed:
acl.c
aescrypt.c
aeskey.c
alaw.c
app.c
apps/app_adsiprog.c
apps/app_authenticate.c
apps/app_cdr.c
apps/app_chanisavail.c
apps/app_chanspy.c
apps/app_controlplayback.c
apps/app_curl.c
apps/app_db.c
apps/app_dial.c
apps/app_dictate.c
apps/app_directed_pickup.c
apps/app_directory.c
apps/app_dumpchan.c
apps/app_echo.c
apps/app_externalivr.c
apps/app_festival.c
apps/app_flash.c
apps/app_forkcdr.c
apps/app_getcpeid.c
apps/app_hasnewvoicemail.c
apps/app_ices.c
apps/app_image.c
apps/app_intercom.c
apps/app_ivrdemo.c
apps/app_lookupblacklist.c
apps/app_lookupcidname.c
apps/app_macro.c
apps/app_meetme.c
apps/app_milliwatt.c
apps/app_mixmonitor.c
apps/app_mp3.c
apps/app_nbscat.c
apps/app_osplookup.c
apps/app_page.c
apps/app_parkandannounce.c
apps/app_playback.c
apps/app_privacy.c
apps/app_queue.c
apps/app_read.c
apps/app_readfile.c
apps/app_realtime.c
apps/app_record.c
apps/app_rpt.c
apps/app_sayunixtime.c
apps/app_senddtmf.c
apps/app_sendtext.c
apps/app_setcallerid.c
apps/app_setcdruserfield.c
apps/app_settransfercapability.c
apps/app_skel.c
apps/app_sms.c
apps/app_softhangup.c
apps/app_sql_postgres.c
apps/app_stack.c
apps/app_system.c
apps/app_talkdetect.c
apps/app_test.c
apps/app_transfer.c
apps/app_url.c
apps/app_verbose.c
apps/app_voicemail.c
apps/app_waitforring.c
apps/app_waitforsilence.c
apps/app_while.c
apps/app_zapateller.c
apps/app_zapbarge.c
apps/app_zapras.c
apps/app_zapscan.c
astmm.c
autoservice.c
buildinfo.c
callerid.c
cdr.c
cdr/cdr_csv.c
cdr/cdr_custom.c
channel.c
channels/chan_agent.c
channels/chan_alsa.c
channels/chan_features.c
channels/chan_h323.c
channels/chan_iax2.c
channels/chan_local.c
channels/chan_mgcp.c
channels/chan_modem.c
channels/chan_modem_aopen.c
channels/chan_modem_bestdata.c
channels/chan_modem_i4l.c
channels/chan_oss.c
channels/chan_phone.c
channels/chan_sip.c
channels/chan_zap.c
channels/iax2-parser.c
channels/iax2-provision.c
chanvars.c
cli.c
config.c
cryptostub.c
db.c
devicestate.c
dnsmgr.c
dsp.c
enum.c
file.c
frame.c
fskmodem.c
funcs/func_cdr.c
funcs/func_cut.c
funcs/func_db.c
funcs/func_enum.c
funcs/func_logic.c
funcs/func_math.c
funcs/func_md5.c
funcs/func_moh.c
funcs/func_odbc.c
funcs/func_strings.c
funcs/func_timeout.c
funcs/func_uri.c
funcs/pbx_functions.c
image.c
io.c
loader.c
logger.c
manager.c
muted.c
netsock.c
pbx.c
plc.c
privacy.c
res/res_adsi.c
res/res_agi.c
res/res_config_odbc.c
res/res_crypto.c
res/res_features.c
res/res_monitor.c
res/res_musiconhold.c
res/res_odbc.c
res/res_osp.c
rtp.c
say.c
sched.c
slinfactory.c
srv.c
tdd.c
term.c
translate.c
ulaw.c

diff --git a/acl.c b/acl.c
index 326cdb66d61c4e640f4bde27dd410b8656e33aa6..6061d54c4732a2bebf14f49b1d53f5b5156120f9 100644 (file)
--- a/acl.c
+++ b/acl.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Various sorts of access control
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdio.h>
index 3406b6603721a7103ba75a2757a7337a7d9277df..1ccddf3f529cbfb55fc1506b8af66b3be2ebc279 100644 (file)
  Issue Date: 26/08/2003
 
 */
+
 /*! \file
-\brief  This file contains the code for implementing encryption and decryption
- for AES (Rijndael) for block and key sizes of 16, 24 and 32 bytes. It
- can optionally be replaced by code written in assembler using NASM. For
- further details see the file aesopt.h
-*/
+ *
+ * \brief  This file contains the code for implementing encryption and decryption
+ * for AES (Rijndael) for block and key sizes of 16, 24 and 32 bytes. It
+ * can optionally be replaced by code written in assembler using NASM. For
+ * further details see the file aesopt.h
+ *
+ * \author Dr Brian Gladman <brg@gladman.me.uk>
+ */
 
 #include "aesopt.h"
 
index ec24e6caedaadc94828fd4b49eb97e70129cce45..d34badc6be35b07265502da13a38eb930a6f9834 100644 (file)
--- a/aeskey.c
+++ b/aeskey.c
  Issue Date: 26/08/2003
 
 */
+
 /*! \file
-\brief  This file contains the code for implementing the key schedule for AES
- (Rijndael) for block and key sizes of 16, 24, and 32 bytes. See aesopt.h
- for further details including optimisation.
-*/
+ *
+ *  \brief  This file contains the code for implementing the key schedule for AES
+ *  (Rijndael) for block and key sizes of 16, 24, and 32 bytes. See aesopt.h
+ *  for further details including optimisation.
+ *
+ * \author Dr Brian Gladman <brg@gladman.me.uk>
+ */
 
 #include "aesopt.h"
 
diff --git a/alaw.c b/alaw.c
index a85c89f3d5af69a7263776f522473619fe4c3cb6..782419d9e6f4809ef22ca41417a1b71e1ff68717 100644 (file)
--- a/alaw.c
+++ b/alaw.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief u-Law to Signed linear conversion
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include "asterisk.h"
diff --git a/app.c b/app.c
index 30dcc3b8bc4004b8f67db709ae67995d324d3794..f6eb18e95c7e1a75ceaacf66986ea26a53c57ed2 100644 (file)
--- a/app.c
+++ b/app.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Convenient Application Routines
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdio.h>
index 79fe30122a6bff170733317e74c27f92a631cb2e..59fc26eab6915a5a573b70f1c7bbe9486957960c 100644 (file)
  */
 
 /*! \file
+ *
  * \brief Program Asterisk ADSI Scripts into phone
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 583c5f4d3523a1598aa91055f8abd402a00026d7..274aec48c41cc0b3e9e19947f317cdea3e50ade4 100644 (file)
  */
 
 /*! \file
+ *
  * \brief Execute arbitrary authenticate commands
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 501bfc79b4d6ff16001bf1e35cbc865d0c3b637d..3a457e60b6e0cc3f69cf79b4cf5fb2d56c0bd30f 100644 (file)
  */
 
 /*! \file
+ * 
  * \brief Applications connected with CDR engine
  *
+ * Martin Pycko <martinp@digium.com>
+ *
  * \ingroup applications
  */
 
index 7f8633a6564a4eb23557dc2e3d68143072d56c83..399ae428d2cc0ec5b2940440e63d35848c557f73 100644 (file)
 */
 
 /*! \file
-* \brief Check if Channel is Available
-* 
+ * 
+ * \brief Check if Channel is Available
+ * 
+ * \author Mark Spencer <markster@digium.com>
+ * \author James Golovich <james@gnuinter.net>
+
  * \ingroup applications
  */
 
index 60690666fd916cde146468c0675d549b5a23486c..ac44086f5cd464136f8552fdd3a43865060248bc 100644 (file)
  */
 
 /*! \file
+ *
  * \brief ChanSpy: Listen in on any channel.
- * 
+ *
+ * \author Anthony Minessale II <anthmct@yahoo.com>
+ *
  * \ingroup applications
  */
 
index 262ba7a94c992268e706107bcbff07faacbbc0ce..ceb345cd556b0c7779c07aa2da99d2e4a377a563 100644 (file)
  */
 
 /*! \file
+ * 
  * \brief Trivial application to control playback of a sound file
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 02cbd93dc744e3f53cefb74e38c6cd43b3b224f7..ca715cbfa6da43b8f2ff38f6bb1c561dea58caff 100644 (file)
  */
 
 /*! \file
+ * 
  * \brief Curl - App to load a URL
+ *
+ * \author Tilghman Lesher <curl-20050919@the-tilghman.com>
+ *
+ * \note Brian Wilkins <bwilkins@cfl.rr.com> (Added POST option) 
  * 
  * \ingroup applications
  */
index f92bbf10e9a522401f298d45ff6bb887020516a2..76a52cd1bc08d37d42b2e4446ae038c302621e8e 100644 (file)
@@ -22,6 +22,9 @@
  *
  * \brief Database access functions
  *
+ * \author Mark Spencer <markster@digium.com>
+ * \author Jefferson Noxon <jeff@debian.org>
+ *
  * \ingroup applications
  */
 
index bb03754f932846d1ed8a9fd6fc66bb5d970cd5f8..9294eaf5a44d3a7c4e074edc8612abf6b7193694 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief dial() & retrydial() - Trivial application to dial a channel and send an URL on answer
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index dfa1c4f34f50675144b47d15247d42203ac07b87..66f99e147de40cc310d9fb3bdbc60d9819956d72 100644 (file)
@@ -22,6 +22,8 @@
  *
  * \brief Virtual Dictation Machine Application For Asterisk
  *
+ * \author Anthony Minessale II <anthmct@yahoo.com>
+ *
  * \ingroup applications
  */
 
index 9e7d3cc845ec59b0ab16a7701d20b225888081b3..32a315ec160c51ad97da7ec3b528dcc3eaf5403b 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief Directed Call Pickup Support
  *
+ * \author Joshua Colp <jcolp@asterlink.com>
+ *
  * \ingroup applications
  */
 
index cbd075692f43fefe1c0b48cbdff1994727b403a8..dd956a0185d1c900bbf9701289c5bc247eefcb5e 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Provide a directory of extensions
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 4802dfee1626e50204305272a73ff129385a21c1..d690154f27c46a9aa4ca87f4a39c0b3e05fad2fb 100644 (file)
@@ -21,7 +21,9 @@
 /*! \file
  *
  * \brief Application to dump channel variables
- * 
+ *
+ * \author Anthony Minessale <anthmct@yahoo.com>
+ *
  * \ingroup applications
  */
 
index 89bf7a59de6069c9ee6d7747c347fe4aea62faaa..c6dc8e54c4b7f28ddf1c72f27616f57e17d76417 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Echo application -- play back what you hear to evaluate latency
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index a53a59532b922b56a93e0939460280f30eac41bb..2cf0858a2c77852b69b71d06484bddf5c2407b58 100644 (file)
 /*! \file
  *
  * \brief External IVR application interface
- * 
+ *
+ * \author Kevin P. Fleming <kpfleming@digium.com>
+ *
+ * \note Portions taken from the file-based music-on-hold work
+ * created by Anthony Minessale II in res_musiconhold.c
+ *
  * \ingroup applications
  */
 
index 186a50ae7bc0474ca72d15f9aa6a4fc1a584893f..799272778942a692b625efbb09962e38c1216609 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Connect to festival
+ *
+ * \author Christos Ricudis <ricudis@itc.auth.gr>
  * 
  * \ingroup applications
  */
index a9aae22b8396a1f828de4948a55d7364d7c83dd9..33542d283eaa171b019ce7e69888a20f171f2a82 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief App to flash a zap trunk
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 290c16850fb1771b72271e3bedf4dc33b4ef41c3..9b29df765d1f9c468011ae14fe550686de382b37 100644 (file)
 /*! \file
  *
  * \brief Fork CDR application
+ *
+ * \author Anthony Minessale anthmct@yahoo.com
+ *
+ * \note Development of this app Sponsered/Funded  by TAAN Softworks Corp
  * 
  * \ingroup applications
  */
index b2d883bc13e3018621dff24adf07129bf4a5895e..b88104ee5de0402029befe07ad8e78465d1ce08a 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Get ADSI CPE ID
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 3ab6339105b6aba7896652840f549b7d5a240cad..bb553519026f10657aea27c79b83ec1f7d137859 100644 (file)
  *
  * \brief HasVoicemail application
  *
+ * \author Todd Freeman <freeman@andrews.edu>
+ *
+ * \note 95% based on HasNewVoicemail by
+ * Tilghman Lesher <asterisk-hasnewvoicemail-app@the-tilghman.com>
+ *
  * \ingroup applications
  */
 
index 4c1505584cfa8a7c3cf3ba37a17b81512b2bae12..a8527b309ead3b49568daeb56f141a33772e0a94 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Stream to an icecast server via ICES (see contrib/asterisk-ices.xml)
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 3ae981017548ddff1f30623784cb2c502f42f6be..d33465aa9f4d56318d7ae9967958f56355daec71 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief App to transmit an image
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 1ae78c6ab7f1dfa3884e0ae387a89e4a489fc84b..28d258c28a66f7743f75cae236bc85946c3c6659 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Use /dev/dsp as an intercom.
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 198cfda2a4973625988c7580f88b7b4c06db2138..8c5b308bf87de7e4d5df5651f392766712255412 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief IVR Demo application
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index d7890be966f481fae4d6f06de3ce0f0b7a511d37..ec88931c6cefa2f0d21e80bb19ef5698584ef4c5 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief App to lookup the callerid number, and see if it is blacklisted
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \ingroup applications
  * 
  */
index 52587b03ae9b85893b292d9c3c40ea909c6845a5..90341a4248e216bc4f288a1a25354445e7b781a6 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief App to set callerid name from database, based on directory number
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index d77642ff83f44a993669c53225883be6cbc9f00d..4b88e1594420a23fe17999479deab923298e0264 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Dial plan macro Implementation
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 7756f58828b747bc6039e6df04662bf701727167..ac740cfd6e7cf0c69bf51a0c35b4187769476d16 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Meet me conference bridge
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 5ef708c1f2e8a8c9363cae7505e9bee526a288c6..112bc74f1840bb3695fa154204b5707897515248 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Digital Milliwatt Test
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index ef9ec254dea8de5e30a0c3c54870b28b7820fd91..7b3fafe1e27641ec62a7442e69ffb8b79d45d996 100644 (file)
  */
 
 /*! \file
+ *
  * \brief MixMonitor() - Record a call and mix the audio during the recording
  * \ingroup applications
+ *
+ * \author Mark Spencer <markster@digium.com>
+ * \author Kevin P. Fleming <kpfleming@digium.com>
+ *
+ * \note Based on app_muxmon.c provided by
+ * Anthony Minessale II <anthmct@yahoo.com>
  */
 
 #include <stdlib.h>
index ee78840eca256a720e6200235aba146efefb116b..943163c5e8e675df4aa04da519912fffea12f984 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Silly application to play an MP3 file -- uses mpg123
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index e1fb921c471cc40dd94fdc93d2213f4afd2165e8..f41fc04f5f7181560f3b92faf87846561a639c5a 100644 (file)
@@ -19,7 +19,9 @@
 /*! \file
  *
  * \brief Silly application to play an NBScat file -- uses nbscat8k
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *  
  * \ingroup applications
  */
  
index e56038fddafe847bec7d3612b01841c5eb5e41be..af9bf9877fb746834c8cc4f552b89c53534cf90f 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Open Settlement Protocol Lookup
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 39a0eb4bcfac5799bb9b6a1be05031b688cfd2fc..7696a4cc586847807f042c6375b5df57a3950270 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief page() - Paging application
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \ingroup applications
  */
 
index bb7aa38b068f3d59b5029ee95d3fbc8020e5db13..749990afcec498cf875065afa922cbba7200a9f0 100644 (file)
 /*! \file
  *
  * \brief ParkAndAnnounce application for Asterisk
- * 
+ *
+ * \author Ben Miller <bgmiller@dccinc.com>
+ * \arg With TONS of help from Mark!
+ *
  * \ingroup applications
  */
 
index 6271fba77e7bc72d4e8fe95fff92a7920886fa9f..8f36fc707ca7c105d65360aed6b594cb736bbed1 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Trivial application to playback a sound file
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index b94fd69d8fe42b1d7e4f3395c325f11cb769b646..f5b7281a11ce5fd12a52174e50babc6e9269c475 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Block all calls without Caller*ID, require phone # to be entered
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 17bc06a263fe91e1109929f98681c73a1d14466e..70cf4134a53d35479c1479142b757e77095227ca 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief True call queues with optional send URL on answer
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \arg Config in \ref Config_qu queues.conf
  * 
  * \par Development notes
index 90e180fcfb227e3c013754758525a6129641ee78..030cb709672b9caedca4ec09beb3fbd7902ae228 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Trivial application to read a variable
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 3340964b7f277a68f5dffb0ff17398f3efd66dfd..528fe823773dd2b65ff544ee699ab5d2424af0c6 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief ReadFile application -- Reads in a File for you.
  *
+ * \author Matt O'Gorman <mogorman@digium.com>
+ *
  * \ingroup applications
  */
 
index 7fccf95bdd9ca92a94b8815b30a4ab5ffa21011b..9e83d263840763a998c48a69da116c07588f9f5b 100644 (file)
@@ -20,6 +20,9 @@
 /*! \file
  *
  * \brief RealTime App
+ *
+ * \author Anthony Minessale <anthmct@yahoo.com>
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 669afc7a0dae842b523ebf156e14e5d62d0364cc..f5be5528de6efed0c52f6ca281aa0beaeab944eb 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief Trivial application to record a sound file
  *
+ * \author Matthew Fredrickson <creslin@digium.com>
+ *
  * \ingroup applications
  */
  
index f3dafad5243ef4d960120370250df6584bb4cbe7..e3f84b1663d6d6e9dfa473bb384341da025878ed 100644 (file)
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Radio Repeater / Remote Base program 
+ * \brief Radio Repeater / Remote Base program 
  *  version 0.39 12/19/05
+ *
+ * \author Jim Dixon, WB6NIL <jim@lambdatel.com>
+ *
+ * \note Serious contributions by Steve RoDgers, WA6ZFT <hwstar@rodgers.sdcoxmail.com>
  * 
  * See http://www.zapatatelephony.org/app_rpt.html
  *
index fc9cd25bf51a00d74fca0972bea6a67f764cb9b5..cde4e65c9cae467cfdd81f40b90cfdf27c52a32c 100644 (file)
@@ -18,6 +18,8 @@
 /*! \file
  *
  * \brief SayUnixTime application
+ *
+ * \author Tilghman Lesher <app_sayunixtime__200309@the-tilghman.com>
  * 
  * \ingroup applications
  */
index c2c3c765d6f1e702fbed8170bbb401c4a0f1cd16..e4eb33ecf0204ae94064067f21bb77c441173cf2 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief App to send DTMF digits
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index c08a793f39f81fc63bb4db211d617331bf6d88a0..4ddbc1c65c61f3b0ebfa2b884598378222a77be4 100644 (file)
 /*! \file
  *
  * \brief App to transmit a text message
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
- * Requires support of sending text messages from channel driver
+ * \note Requires support of sending text messages from channel driver
  *
  * \ingroup applications
  */
index f0e142b6e54a624a17af2ffa1b8d344b6e26bbe9..7c643b2817bd88624d51bc3f3594b996aac7acae 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief App to set callerid
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index c477663dcb8d06c0bc4c603ab96e038b5754201d..7085855d85ebf84894d7878abb003edc959b2453 100644 (file)
@@ -19,7 +19,9 @@
 /*! \file
  *
  * \brief Applictions connected with CDR engine
- * 
+ *
+ * \author Justin Huff <jjhuff@mspin.net>
+ *  
  * \ingroup applications
  */
 
index 5a9614afa764c33390da13df90e967b386d32385..884c3d64bb2024a99202bb6a526025540ae2c3d8 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief App to set the ISDN Transfer Capability
+ *
+ * \author Frank Sautter - asterisk+at+sautter+dot+com 
  * 
  * \ingroup applications
  */
index 089bf092898569a075efbb63d75a3bd61d64d34c..b29f3162a0f6fb7ba47b4eb62fa0edf6c2f8e96b 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Skeleton application
+ *
+ * \author <Your Name Here> <<Your Email Here>>
  * 
  * This is a skeleton for development of an Asterisk application 
  * \ingroup applications
index 3f91477e5dc842ca47c8971e347a3f082c0b7858..1d9ea3f4d2ff2829eeea04cc8c744910539e1f0d 100644 (file)
@@ -18,7 +18,8 @@
  *
  * \brief SMS application - ETSI ES 201 912 protocol 1 implimentation
  * \ingroup applications
- * 
+ *
+ * \author Adrian Kennard
  */
 
 #include <stdlib.h>
index 804a39259e5d243ce21f9fd2302cbe844432d7d2..bcc54a33f6c3bbd6d5bbcb986979fcb6d6ad41d5 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief SoftHangup application
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index d9ba1bfb7871c10653535f2a8ca0811225908991..985892de7c3b491f44aac0cf3dfaf1f70661a14f 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Connect to PostgreSQL
+ *
+ * \author Christos Ricudis <ricudis@itc.auth.gr>
  * 
  * \ingroup applications
  */
index ccf24b2b47194696a3e52075b412aebeea10e3f0..ce77e476593cd6e2aba2014ea418abe636999884 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Stack applications Gosub, Return, etc.
+ *
+ * \author Tilghman Lesher <app_stack_v002@the-tilghman.com>
  * 
  * \ingroup applications
  */
index f3e09ebbaf3d934aa58ddda269f6ad6bf5ca36a5..0619b5cf31b2ec6eb3450b3b93f572e523709712 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Execute arbitrary system commands
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 11efe7068988d7017640488426898d2155baa8c5..2223e85b6d2857d112cc3d3a88c575327c894fde 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Playback a file with audio detect
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index dba8bcafb20e8e7b16a8b2e2a1b350eef2c4c120..bc181f86eedca605322e5e350db78e8dc80853c9 100644 (file)
@@ -20,6 +20,9 @@
 /*! \file
  *
  * \brief Applications to test connection and produce report in text file
+ *
+ * \author Mark Spencer <markster@digium.com>
+ * \author Russell Bryant <russelb@clemson.edu>
  * 
  * \ingroup applications
  */
index 78d5697c02e7c964a68febec90949aa9fece5b71..98790341eaec9e8514cc59f06d5ba8fb723ea1c1 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Transfer a caller
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * Requires transfer support from channel driver
  *
index a856fb1a422827d02a2f71420f234b6c4fec1dce..7791b4e549010dd789e1a9f9546622eca330e782 100644 (file)
  */
 
 /*! \file
+ *
  * \brief App to transmit a URL
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 3dbcfb260349ba4120859f8fa4353fe6df570582..4ec4839d7adfb5d95e30f66ec333f10f18ac8349 100644 (file)
@@ -19,6 +19,8 @@
  *
  * \brief Verbose logging application
  *
+ * \author Tilghman Lesher <app_verbose_v001@the-tilghman.com>
+ *
  * \ingroup applications
  */
 
index 6aa7bb5e3ca86bc375b686b9d158b4cd71cce95e..3d98cc0e0e40d86176b154bd5752ebf38400b6ba 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Comedian Mail - Voicemail System
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \par See also
  * \arg \ref Config_vm
index 25e651d9eb0b8a2a1a3729bebdeb9acc6522057f..63fe9c04351f0c9948499f01a028584a601c96ea 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Wait for Ring Application
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 615eddbceec9191477b25f3cb25fcdc494834d0b..948c8c756400c1bbcd0cf93000b8dc741149b244 100644 (file)
@@ -26,6 +26,8 @@
  *   - WaitForSilence(500,2) will wait for 1/2 second of silence, twice \n
  *   - WaitForSilence(1000,1) will wait for 1 second of silence, once \n
  *
+ * \author David C. Troy <dave@popvox.com>
+ *
  * \ingroup applications
  */
 
index 1c91446aacb57d80525e69dd463c5389f479896f..1ebd8f2b303b26a60f349c284262a6072f54db44 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief While Loop and ExecIf Implementations
+ *
+ * \author Anthony Minessale <anthmct@yahoo.com>
  * 
  * \ingroup applications
  */
index 3120a426714568785be0d290f90f315adda90597..488bfa3b4e2e728ac72022ba628382b61177ca98 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Playback the special information tone to get rid of telemarketers
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 10c5c49e5f0a10aebf199ffb505e21317d3bd9b9..3fb62f94f818c4c2509713aa0a34d162c198c254 100644 (file)
 /*! \file
  *
  * \brief Zap Barge support
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *
+ * \note Special thanks to comphealth.com for sponsoring this
+ * GPL application.
  * 
  * \ingroup applications
  */
index 4a94f34ba4e22b31e6df82b05aa50a99f8edd8b8..94285cb457742cf5ba088fa5e05e0ced7f74a791 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Execute an ISDN RAS
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup applications
  */
index 337f52815c665f5275343044eba68b8ed029cfaf..987c3dab3d75bd886ea773c8772f67f94e0dc091 100644 (file)
@@ -25,6 +25,8 @@
  *
  * \brief Zap Scanner
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \ingroup applications
  */
 
diff --git a/astmm.c b/astmm.c
index 3f94e05fadbc5928c5c9314a8f9c46d68b685c0b..e80219b851b69a5742c79b1afee3aeee76d401a6 100644 (file)
--- a/astmm.c
+++ b/astmm.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Memory Management
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #ifdef __AST_DEBUG_MALLOC
index d8b5d8e808afa7465dd12721e15c63bcd4d41833..838a4bd0b6fdb62b10498d4654efde87b70505f6 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Automatic channel service routines
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdio.h>
index cd7ce8df3595123526ac8bf4ba019506ff8f36db..964e06eb3747abd3cedfa45e910dcdd8a8819d8f 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Build timestamp variables
- * 
+ *
+ * \author Kevin P. Fleming <kpfleming@digium.com>
  */
 
 #include "asterisk/build.h"
index a0937b24af16e53dd9383cd7e96a2b40f1e9e541..d1a29d4ed0e0fbb475f1889b1919d237370da382 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief CallerID Generation support 
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <time.h>
diff --git a/cdr.c b/cdr.c
index 7837f03ee2870f17f2f57e49014024bfc8998b36..24f6192019c60f39df970dc5a0372cf7d6df0e85 100644 (file)
--- a/cdr.c
+++ b/cdr.c
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Call Detail Record API 
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * Includes code and algorithms from the Zapata library.
  *
index 4577590536703040a2e2588c90911d6c54f4c345..7145262c00c0b0524f0262f62e593ddc4b0e5a81 100644 (file)
@@ -21,6 +21,8 @@
 /*! \file
  *
  * \brief Comma Separated Value CDR records.
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \arg See also \ref AstCDR
  * \ingroup cdr_drivers
index 64fddb368201b4a7f3f8fd01730206c24de7ad61..abf1e816d833bbc867f0d13a9397be82401b7ef8 100644 (file)
@@ -21,7 +21,9 @@
 /*! \file
  *
  * \brief Custom Comma Separated Value CDR records.
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \arg See also \ref AstCDR
  *
  * Logs in LOG_DIR/cdr_custom
index 4e845d64e37ecf484e02a21936a344c89cfe2731..651f2fa40cc172bb34ad4c7e3c6237335411d084 100644 (file)
--- a/channel.c
+++ b/channel.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Channel Management
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #include <stdio.h>
index 5177f11e1d92c528917501846b659ada9f6cc0df..4008fcbdd8b7daa4c17b598c0a4360045ee4a3e1 100644 (file)
 
 
 /*! \file
+ * 
  * \brief Implementation of Agents (proxy channel)
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * This file is the implementation of Agents modules.
  * It is a dynamic module that is loaded by Asterisk. 
  * \par See also
index 6f0d36070a1eef27bcb8e38becec8bff52211be8..f427ac730e577a1feb95469771fa9c83f69afbf6 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file 
  * \brief ALSA sound card channel driver 
  *
+ * \author Matthew Fredrickson <creslin@digium.com>
+ *
  * \par See also
  * \arg Config_alsa
  *
index 32deae12f223a0276cc03e7ee9660ad81d81976c..3f7ac9f49b2530d45b58c9fe29e07a3c330149f0 100644 (file)
@@ -19,7 +19,9 @@
 /*! \file
  *
  * \brief feature Proxy Channel
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \note *** Experimental code ****
  * 
  * \ingroup channel_drivers
index 469ce398ec9cbec4e67eac502f2bd3570bbdea6a..43d7a2414048d4bb9130cf96560dca87ca9514db 100644 (file)
@@ -25,6 +25,8 @@
  *
  * \brief This file is part of the chan_h323 driver for Asterisk
  *
+ * \author Jeremy McNamara
+ *
  * \par See also
  * \arg Config_h323
  *
index 92c7e8c8e0b6fab618197029bf9744c471469485..fafb7082ddcdd525673bf96a4458576a3f64d72e 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief Implementation of Inter-Asterisk eXchange Version 2
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \par See also
  * \arg \ref Config_iax
  *
index f843fd95d5cb02731a38f161a213ecd66735ebe0..e5d1ea5cb77a38e64e94237fa5c4cb6e04b849c0 100644 (file)
@@ -17,6 +17,8 @@
  */
 
 /*! \file
+ *
+ * \author Mark Spencer <markster@digium.com>
  *
  * \brief Local Proxy Channel
  * 
index c3b93811929b64f96aacc47d5230e295e34af194..c7e9313a339bdf64884689e7f70dc29a30f33809 100644 (file)
@@ -19,7 +19,9 @@
 /*! \file
  *
  * \brief Implementation of Media Gateway Control Protocol
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \par See also
  * \arg \ref Config_mgcp
  *
index f37a29e126ddbcf548e935dd341ebec193047e8e..86f6afa30d816144c5d4acdcd2756ac6c433e357 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief A/Open ITU-56/2 Voice Modem Driver (Rockwell, IS-101, and others)
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup channel_drivers
  */
index 0183cde9211ad74c772a7109f14a9d9061b307dc..f49fe6568ce4a83bba2b476cc56d73dad27764a6 100644 (file)
  */
 
 /*
+ * \brief A/Open ITU-56/2 Voice Modem Driver (Rockwell, IS-101, and others)
+ *
+ * \author Mark Spencer <markster@digium.com>
  *
- * A/Open ITU-56/2 Voice Modem Driver (Rockwell, IS-101, and others)
- * 
  * \ingroup channel_drivers
  */
 
index e54a66a493688af087593940b1c0bd3712e1f087..a643635f13a68f5dfca247b5b721ae43923d9574 100644 (file)
  */
 
 /*
+ * \brief BestData 56SX-92 Voice Modem Driver (Conexant)
+ *
+ * \author Mark Spencer <markster@digium.com>
+ * \author Jim Dixon <jim@lambdatel.com>
  *
- * BestData 56SX-92 Voice Modem Driver (Conexant)
- * 
  * \ingroup channel_drivers
  */
 
index 69aa0045472301cacfd2f730ff87214161f2591a..36a2bd80271465f846b86d8a8eb652622ccf091b 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief ISDN4Linux TTY Driver
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup channel_drivers
  */
index b44cacb3e9ec2207fe65b7874f22f240ab93caa5..9d0481d2ad1a9177cf1da45efc63570b7029d73a 100644 (file)
@@ -23,6 +23,9 @@
  *
  * \brief Channel driver for OSS sound cards
  *
+ * \author Mark Spencer <markster@digium.com>
+ * \author Luigi Rizzo
+ *
  * \par See also
  * \arg \ref Config_oss
  *
index c1d5527163efad327f5b68d8cef8cde687fab446..abea80c9247dc93515d38869f90a0b5ace422e80 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Generic Linux Telephony Interface driver
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \ingroup channel_drivers
  */
index 011e7d15bb6ab7df50d8cc1478c975894240c949..d8d25071d204e663cec6a754e132e8b3472f7864 100644 (file)
 /*!
  * \file
  * \brief Implementation of Session Initiation Protocol
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *
+ * See Also:
+ * \arg \ref AstCREDITS
+ *
  * Implementation of RFC 3261 - without S/MIME, TCP and TLS support
  * Configuration file \link Config_sip sip.conf \endlink
  *
index 2868c8ffa0e898d8257f0aedeee7570ff2527b1b..ac797bf27460b24c365d5798bf15c23506cfa657 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief Zaptel Pseudo TDM interface 
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * Connects to the zaptel telephony library as well as 
  * libpri. Libpri is optional and needed only if you are
index 3ef80a39c3c4387be161b4439020c892d3fc05c9..ff13da9361743570b9209935e854a6743fecd32e 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Implementation of Inter-Asterisk eXchange Protocol, v 2
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <sys/types.h>
index 420e7921392d09a958c9ad07044d43b4b72efe1f..a61024d8e5af97205c0a75c34eb7a65a71397642 100644 (file)
  */
 
 /*! \file
+ * 
  * \brief IAX Provisioning Protocol 
  *
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #include <unistd.h>
index 83b611d23460c418ae0f20eb732548ac6363078c..f2653b8ffe0f5bc6766d2dafab0ea0badba85a2a 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Channel Variables
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdlib.h>
diff --git a/cli.c b/cli.c
index 441fab36f4fb26ac7021f70b62e760ecd505b8e5..7ad4d5ff696e5506180d28b03f26515a5e94f08e 100644 (file)
--- a/cli.c
+++ b/cli.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Standard Command Line Interface
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <unistd.h>
index ce68b60ab503934955c57d948b1901655700916a..146a88702f248177173a3fcf3fe45d9f1448a505 100644 (file)
--- a/config.c
+++ b/config.c
@@ -20,6 +20,8 @@
  *
  * \brief Configuration File Parser
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * Includes the Asterisk Realtime API - ARA
  * See README.realtime
  */
index 4d2809e0de7ef8454dce18c43e58c7b56d1e8ef2..5980819939f3daa2d5678b211168c0cd5adce0ed 100644 (file)
  * at the top of the source tree.
  */
 
+/*! \file
+ *
+ * \brief Stubs for res_crypto routines
+ *
+ * \author Mark Spencer <markster@digium.com>
+ */
+
 #include <unistd.h>
 #include <stdlib.h>
 
diff --git a/db.c b/db.c
index 543aa4ddae2c1e631140f03436d46685ba03cfd6..d3da08a2d4b4dde10088b8ab191f707267d9e051 100644 (file)
--- a/db.c
+++ b/db.c
 /*! \file
  *
  * \brief ASTdb Management
- * 
  *
- * DB3 is licensed under Sleepycat Public License and is thus incompatible
+ * \author Mark Spencer <markster@digium.com> 
+ *
+ * \note DB3 is licensed under Sleepycat Public License and is thus incompatible
  * with GPL.  To avoid having to make another exception (and complicate 
  * licensing even further) we elect to use DB1 which is BSD licensed 
  */
index 73b77956833aa03fef5e37bd4d85e38311af9fb2..6cd1d3ed521f286bb47a4190da1a71282f5ce4e1 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Device state management
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <sys/types.h>
index 204033e15aeee073a449eb989784ae4069e64e98..a82ebab2046f12fcb0ad6dca5b4967793992c028 100644 (file)
--- a/dnsmgr.c
+++ b/dnsmgr.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Background DNS update manager
- * 
+ *
+ * \author Kevin P. Fleming <kpfleming@digium.com> 
  */
 
 #include <sys/types.h>
diff --git a/dsp.c b/dsp.c
index e204f53603c210bd3b2c70d9f9c811e72b65c660..67b208fe3c3097cd2f49070ea528de26c4b2366d 100644 (file)
--- a/dsp.c
+++ b/dsp.c
@@ -22,7 +22,9 @@
 /*! \file
  *
  * \brief Convenience Signal Processing routines
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ * \author Steve Underwood <steveu@coppice.org>
  */
 
 /* Some routines from tone_detect.c by Steven Underwood as published under the zapata library */
diff --git a/enum.c b/enum.c
index 5e11ed906f5f71d5c1e5df11423e08a4ce733df7..b977f21fe4b270dd6831a927bfb97d82dcdbaf57 100644 (file)
--- a/enum.c
+++ b/enum.c
@@ -22,6 +22,9 @@
  *
  * \brief ENUM Support for Asterisk
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
+ * \arg Funding provided by nic.at
  */
 
 #include <sys/types.h>
diff --git a/file.c b/file.c
index 50c491c431ce1aba14016f074d2b52d7a19d9653..104f51949a5b91f0c70d2eefdbde86b0752f6600 100644 (file)
--- a/file.c
+++ b/file.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Generic File Format Support.
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <sys/types.h>
diff --git a/frame.c b/frame.c
index e5b4840c1b1dd2327fd614d211ce8da0d857eb84..2558ead992346ab3bbf216f61b19094a385934ba 100644 (file)
--- a/frame.c
+++ b/frame.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Frame manipulation routines
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdlib.h>
index 18e845c1e3fd64271f44846a2f973fe97f71dbef..f25f6c4e79565cf7e6830e0f6de45f529c40cfa5 100644 (file)
@@ -22,6 +22,9 @@
  *
  * \brief FSK Modulator/Demodulator 
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
+ * \arg Includes code and algorithms from the Zapata library.
  */
 
 #include <stdio.h>
index 3e4696e18df6fa17c91a8b1d8a50fa3b383883e2..c934e87c94f2722b29001d7d55a412dfecedd7f7 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief  Call Detail Record related dialplan functions
- * 
+ *
+ * \author Anthony Minessale II 
  */
 
 #include <stdlib.h>
index 7dc038906c0103826afa1ed75ddfdf6ae25d7845..1c3eaa48972c34d144577600db4f9f8c0fe731d7 100644 (file)
  */
 
 /*! \file
+ * 
  * \brief CUT function
  *
+ * \author Tilghman Lesher <app_cut__v003@the-tilghman.com>
+ *
  * \ingroup functions
  */
 
index bc135a6b33ad42c98943889e58008cb2e6a08cd1..1837c8be735534b556d552732ba0c39364dba234 100644 (file)
@@ -21,7 +21,8 @@
 /*! \file
  *
  * \brief Functions for interaction with the Asterisk database
- * 
+ *
+ * \author Russell Bryant <russelb@clemson.edu>
  */
 
 #include <stdlib.h>
index fa291a42e3158ad3475cada0e351ea44ff984f12..65b22db84fb5b9e10cc683c9d84ebe13dc32617a 100644 (file)
 /*! \file
  *
  * \brief ENUM Functions
+ *
+ * \author Mark Spencer <markster@digium.com>
+ * \author Oleksiy Krivoshey <oleksiyk@gmail.com>
+ * \author Russell Bryant <russelb@clemson.edu>
+ *
  * \arg See also AstENUM
  */
 
index f748ba93906e0677ebd9b836dad1483b5d2b8b06..d1d96abf3fe336244f19ab7484fc72bf39796670 100644 (file)
@@ -19,6 +19,7 @@
  * 
  * \brief Conditional logic dialplan functions
  * 
+ * \author Anthony Minessale II
  */
 
 #include <stdlib.h>
index e8a49acc8ce560f3a8f5572964316ac0071c7c91..245ff98494549e6d7eba2f72e17bb7984dbcb3a3 100644 (file)
@@ -19,7 +19,9 @@
 /*! \file
  *
  * \brief Maths relatad dialplan functions
- * 
+ *
+ * \author Andy Powell
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #include <stdlib.h>
index 910e44260664e2d3982bb641021d3672e9f2eb9c..fb8829030940f618dab6f64a0c3b9025837e2cc8 100644 (file)
@@ -20,6 +20,8 @@
  *
  * \brief MD5 digest related dialplan functions
  * 
+ * \author Olle E. Johansson <oej@edvina.net>
+ * \author Russell Bryant <russelb@clemson.edu>
  */
 
 #include <stdlib.h>
index 4262609b8fedd9705a2b6eb81487a899c58da0d5..95e02d26b88e226e9a32970046a8471cd985e6a7 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Functions for reading or setting the MusicOnHold class
- * 
+ *
+ * \author Russell Bryant <russelb@clemson.edu> 
  */
 
 #include <stdlib.h>
index 496933ef0ac28bfbbd948f7e31eadd212db8cc43..3e0f52fea02adc69518be33ab6cd726a45691e77 100644 (file)
  * Special thanks to Anthony Minessale II for debugging help.
  */
 
+/*!
+ * \file
+ *
+ * \brief ODBC lookups
+ *
+ * \author Tilghman Lesher <func_odbc__200508@the-tilghman.com>
+ */
+
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
index 48c3e8a5d252d170335b5267525a2ac560acb419..bce5d9d625e9faba42b1734c28fecd5f9bb5b613 100644 (file)
@@ -19,7 +19,9 @@
 /*! \file
  *
  * \brief String manipulation dialplan functions
- * 
+ *
+ * \author Tilghman Lesher
+ * \author Anothony Minessale II 
  */
 
 #include <stdlib.h>
index 4e9256ef5b28236dd2a0cb0f7fcf0a75c4c1e56d..6352b58b3d863d5a61b1b2d39e1e6385607be886 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Channel timeout related dialplan functions
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdlib.h>
index f985f38c1788efc5d6aaf5044e1df884a8826a37..122aff375f2cc0243c4662b34c6431f2cdfad5c4 100644 (file)
@@ -19,6 +19,8 @@
 /*! \file
  *
  * \brief URI encoding / decoding
+ *
+ * \author Olle E. Johansson <oej@edvina.net>
  * 
  * \note For now this code only supports 8 bit characters, not unicode,
          which we ultimately will need to support.
index 2d5c519c9001e35b577789f065c0a479c5e8541d..5c9e147aeaac684683ba2aa84a1950bd11b01520 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Builtin dialplan functions
- * 
+ *
+ * \author Kevin P. Fleming <kpfleming@digium.com>
  */
 
 #include <sys/types.h>
diff --git a/image.c b/image.c
index 894e6605b08c2d17cd9940a602784f7ae2981b23..fb2b4a2a065cdf69eb55f838c9c902c85f806889 100644 (file)
--- a/image.c
+++ b/image.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Image Management
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdio.h>
diff --git a/io.c b/io.c
index c19d222c69577f855d9cb7e6ba0b5d4f3e7661d5..5935c9ee1dd0e67a8f971a2d3cf9614aeb7cbedc 100644 (file)
--- a/io.c
+++ b/io.c
@@ -20,6 +20,7 @@
  *
  * \brief I/O Managment (Derived from Cheops-NG)
  *
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #include <stdio.h>
index 46fad50b39b92ceb33093ef87dd1422bc07dac3c..71aa702dcd9eb4d31feff12fc18060f73a761553 100644 (file)
--- a/loader.c
+++ b/loader.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Module Loader
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdio.h>
index 66977677da4193c016fc6184b49b1b434c702360..1d283faba9f73184990a7cf116d38eb8ba4b8656 100644 (file)
--- a/logger.c
+++ b/logger.c
  */
 
 /*! \file
+ *
  * \brief Asterisk Logger
  * 
  * Logging routines
  *
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #include <signal.h>
index 74b1dd5d527b22c80d2e80ce3eab9544679464ec..3351d5a2b735abb8907bef55787fb8da537ef30d 100644 (file)
--- a/manager.c
+++ b/manager.c
@@ -20,6 +20,8 @@
  *
  * \brief The Asterisk Management Interface - AMI
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * Channel Management and more
  * 
  * \ref amiconf
diff --git a/muted.c b/muted.c
index 600892cad6a5eb98e49e2370d62238a1d40bb227..73eadfa3d5171169af2bb7d222aa7c9c6e40b603 100644 (file)
--- a/muted.c
+++ b/muted.c
  */
 
 /*! \file
+ *
  * \brief Mute Daemon
  *
+ * \author Mark Spencer <markster@digium.com>
+ *
+ * Updated for Mac OSX CoreAudio 
+ * \arg Josh Roberson <josh@asteriasgi.com>
+ *
  * \note Specially written for Malcolm Davenport, but I think I'll use it too
  * Connects to the Asterisk Manager Interface, AMI, and listens for events
  * on certain devices. If a phone call is connected to one of the devices (phones)
index 386f15660c60e91d527faf1e0b2e306279539f52..4d504cb29ecf7c657ae26055fc391399cf4d8ec0 100644 (file)
--- a/netsock.c
+++ b/netsock.c
@@ -20,7 +20,9 @@
 /*! \file
  *
  * \brief Network socket handling
- * 
+ *
+ * \author Kevin P. Fleming <kpfleming@digium.com>
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #include <stdio.h>
diff --git a/pbx.c b/pbx.c
index 57f8c6e1d5ceb4a57621593e496c2f203db06d86..5ea93ae22e6104d04b8ededcef2c4fad08862aa8 100644 (file)
--- a/pbx.c
+++ b/pbx.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Core PBX routines.
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <sys/types.h>
diff --git a/plc.c b/plc.c
index f0ad46eeb7b0f0f595d753591ed5c312e1d1b040..5db6f7d1b70a88c94828a97d48990fc470efde08 100644 (file)
--- a/plc.c
+++ b/plc.c
@@ -26,6 +26,7 @@
  *
  * \brief SpanDSP - a series of DSP components for telephony
  *
+ * \author Steve Underwood <steveu@coppice.org>
  */
 
 #include <stdio.h>
index a3ffec3e3d52e44d0dd48bb80af7004e92bfe656..1121addb6c7dc1e1b36a43d9c562b927743aba97 100644 (file)
--- a/privacy.c
+++ b/privacy.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Privacy Routines
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdio.h>
index 18e7849f3eb7c640536eb7a93e5e2ec0d0994197..b6d2b97db177ed36e9df9df4e941419c1320f0b0 100644 (file)
@@ -21,7 +21,8 @@
 /*! \file
  *
  * \brief ADSI support 
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <time.h>
index 15b4c2a1ed3388d04aa26339f233940f07458055..29a4c8fbbbfc6adf5f60f6ce5cc75910dec1fb2a 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief AGI - the Asterisk Gateway Interface
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <sys/types.h>
index adc1bc4ee67d77ccda61c505a97c07a954c3fafe..311fa24784acc980130eea53b73419cba08c7bf2 100644 (file)
  *
  * \brief odbc+odbc plugin for portable configuration engine
  *
- *     http://www.unixodbc.org
+ * \author Mark Spencer <markster@digium.com>
+ * \author Anthony Minessale II <anthmct@yahoo.com>
+ *
+ * \arg http://www.unixodbc.org
  */
 
 #include <stdio.h>
index 3ada0d2249f6a83ead412e04e504ab932b40f6af..048006f69e33cae85134591c9b66dd3a8a545267 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Provide Cryptographic Signature capability
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <sys/types.h>
index 7b58f9f6b2e21ac1a131443224ca6022805132a0..f0d8ab9f7ef6c227c51b2510f435b5a7ffbf38ab 100644 (file)
@@ -18,8 +18,9 @@
 
 /*! \file
  *
- * \brief Routines implementing call parking
- * 
+ * \brief Routines implementing call features
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <pthread.h>
index 660757b5865dbed21ddaec5876165e651ffa2781..a82c36d15b2e2fc693345975bd4c854cdf5d7c12 100644 (file)
@@ -20,6 +20,7 @@
  *
  * \brief PBX channel monitoring
  *
+ * \author Mark Spencer <markster@digium.com>
  */
  
 #include <stdio.h>
index 2a27dcec8a953f2c5714fc4db676fad8ccdb6ee4..ffbd41713a6b3bbc59d31da542047c8e796dc2a9 100644 (file)
@@ -22,6 +22,7 @@
  *
  * \arg See also \ref Config_moh
  * 
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #include <stdlib.h>
index e5a05f58c0c27605105f13b862647aba695447bf..3f255f0d3b874b12987f00bdea7d5be576c954d2 100644 (file)
  *
  * \brief ODBC resource manager
  * 
- * \arg See also: \ref cdr_odbc
+ * \author Mark Spencer <markster@digium.com>
+ * \author Anthony Minessale II <anthmct@yahoo.com>
  *
+ * \arg See also: \ref cdr_odbc
  */
 
 #include <stdio.h>
index 41ca8c0cf0f28a94cb4ac925bdabcafe099d3fcc..ce2988c32267554c46fb6ccc7e7eb9a0b9949e68 100644 (file)
@@ -19,7 +19,9 @@
 /*! \file
  *
  * \brief Provide Open Settlement Protocol capability
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *
  * \arg See also: \ref chan_sip.c
  */
 
diff --git a/rtp.c b/rtp.c
index 2223f8ffde2ded54f6a76f535d482bcb4bfce0e1..afdd6d129734291dd107e12f344681c0a0a3a930 100644 (file)
--- a/rtp.c
+++ b/rtp.c
 
 /*! 
  * \file 
+ *
  * \brief Supports RTP and RTCP with Symmetric RTP support for NAT traversal.
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
- * RTP is deffined in RFC 3550.
+ * \note RTP is deffined in RFC 3550.
  */
 
 #include <stdio.h>
diff --git a/say.c b/say.c
index 863ff36a212942f1e36e5614f40bf0c7a98675f0..eb294e0fd0853487cb32209f2e64d582771280fe 100644 (file)
--- a/say.c
+++ b/say.c
 /*! \file
  *
  * \brief Say numbers and dates (maybe words one day too)
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
- * \note 12-16-2004 : Support for Greek added by InAccess Networks (work funded by HOL, www.hol.gr)
- *                                             George Konstantoulakis <gkon@inaccessnetworks.com>
+ * \note 12-16-2004 : Support for Greek added by InAccess Networks (work funded by HOL, www.hol.gr) George Konstantoulakis <gkon@inaccessnetworks.com>
+ *                                             
  */
 
 #include <sys/types.h>
diff --git a/sched.c b/sched.c
index 27dc68beef93d954ee89f41ad9729e216e69f5b0..8b39aa9acdef1e50161f60bce193cd2c5eecbbfa 100644 (file)
--- a/sched.c
+++ b/sched.c
@@ -20,6 +20,7 @@
  *
  * \brief Scheduler Routines (from cheops-NG)
  *
+ * \author Mark Spencer <markster@digium.com>
  */
 
 #ifdef DEBUG_SCHEDULER
index 7985ecdc60b22c2d61a87e22379187ad00dcc855..0b9fa9463316d09e8c481c812fe783ff0501bb18 100644 (file)
@@ -20,7 +20,8 @@
  *
  * \brief A machine to gather up arbitrary frames and convert them
  * to raw slinear on demand.
- * 
+ *
+ * \author Anthony Minessale <anthmct@yahoo.com>
  */
 
 #include <string.h>
diff --git a/srv.c b/srv.c
index 9e04d84e4531afe15958e63d9b3f479f80b5a48c..f647e3c952ae89228c5acebbf41f9c4995c108ed 100644 (file)
--- a/srv.c
+++ b/srv.c
 /*! \file
  *
  * \brief DNS SRV Record Lookup Support for Asterisk
+ *
+ * \author Mark Spencer <markster@digium.com>
  * 
  * \arg See also \ref AstENUM
  *
+ * \note Funding provided by nic.at
  */
 
 #include <sys/types.h>
diff --git a/tdd.c b/tdd.c
index df6c9f0a3707abfe73ade9d3adf0ff085b753289..4fd8dd1401440b6b3b62f78251621bfd99c60566 100644 (file)
--- a/tdd.c
+++ b/tdd.c
 /*! \file
  *
  * \brief TTY/TDD Generation support 
- * 
+ *
+ * \author Mark Spencer <markster@digium.com>
+ *
+ * \note Includes code and algorithms from the Zapata library.
  */
 
 #include <time.h>
diff --git a/term.c b/term.c
index cce5155735664a11ffb2d707a7971babdcc28b21..c10b423062eb1409262fcf80945d739117fcc387 100644 (file)
--- a/term.c
+++ b/term.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Terminal Routines 
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <stdio.h>
index 4126851b96bad2cc5c4a0638339b63a73d44d43c..3f2e549e7b664810d49ea5e0aa366d5b69e49d85 100644 (file)
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief Translate via the use of pseudo channels
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include <sys/types.h>
diff --git a/ulaw.c b/ulaw.c
index 618118d6cb177771935766a55b8fee8abb36ef57..a2e4d831e75ae67dc284bd47f8ce9ef7e8a2e8a2 100644 (file)
--- a/ulaw.c
+++ b/ulaw.c
@@ -19,7 +19,8 @@
 /*! \file
  *
  * \brief u-Law to Signed linear conversion
- * 
+ *
+ * \author Mark Spencer <markster@digium.com> 
  */
 
 #include "asterisk.h"