aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_smdi.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-10 23:58:11 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-10 23:58:11 +0000
commit3d8745a038830e8689bfd3c9849a5f1c39e37ae8 (patch)
tree50b600d84bec437ca118c3d1164a8c7eb7c0611f /res/res_smdi.c
parent6fdcb5fae5233c35c1391a39b73f5cb8f5d4b28f (diff)
one more copyright/file header and version string support
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9452 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_smdi.c')
-rw-r--r--res/res_smdi.c28
1 files changed, 19 insertions, 9 deletions
diff --git a/res/res_smdi.c b/res/res_smdi.c
index 37aab0d4f..334f640be 100644
--- a/res/res_smdi.c
+++ b/res/res_smdi.c
@@ -1,14 +1,25 @@
/*
* Asterisk -- A telephony toolkit for Linux.
*
- * SMDI support for Asterisk.
- *
* Copyright (C) 2005-2006, Digium, Inc.
*
* Matthew A. Nicholson <mnicholson@digium.com>
*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
* This program is free software, distributed under the terms of
- * the GNU General Public License
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ */
+
+/*!
+ * \file
+ * \brief SMDI support for Asterisk.
+ * \author Matthew A. Nicholson <mnicholson@digium.com>
*/
#include <stdio.h>
@@ -18,6 +29,11 @@
#include <sys/time.h>
#include <time.h>
#include <ctype.h>
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision: $")
+
#include "asterisk/module.h"
#include "asterisk/lock.h"
#include "asterisk/utils.h"
@@ -29,12 +45,6 @@
#include "asterisk/utils.h"
#include "asterisk/options.h"
-/*!
- * \file
- * \brief SMDI support for Asterisk.
- * \author Matthew A. Nicholson <mnicholson@digium.com>
- */
-
/* Message expiry time in milliseconds */
#define SMDI_MSG_EXPIRY_TIME 30000 /* 30 seconds */