mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-03 20:38:59 +00:00 
			
		
		
		
	one more copyright/file header and version string support
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9452 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		@@ -1,14 +1,25 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
 * Asterisk -- A telephony toolkit for Linux.
 | 
					 * Asterisk -- A telephony toolkit for Linux.
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * SMDI support for Asterisk.
 | 
					 | 
				
			||||||
 * 
 | 
					 | 
				
			||||||
 * Copyright (C) 2005-2006, Digium, Inc.
 | 
					 * Copyright (C) 2005-2006, Digium, Inc.
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * Matthew A. Nicholson <mnicholson@digium.com>
 | 
					 * 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
 | 
					 * 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>
 | 
					#include <stdio.h>
 | 
				
			||||||
@@ -18,6 +29,11 @@
 | 
				
			|||||||
#include <sys/time.h>
 | 
					#include <sys/time.h>
 | 
				
			||||||
#include <time.h>
 | 
					#include <time.h>
 | 
				
			||||||
#include <ctype.h>
 | 
					#include <ctype.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "asterisk.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ASTERISK_FILE_VERSION(__FILE__, "$Revision: $")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "asterisk/module.h"
 | 
					#include "asterisk/module.h"
 | 
				
			||||||
#include "asterisk/lock.h"
 | 
					#include "asterisk/lock.h"
 | 
				
			||||||
#include "asterisk/utils.h"
 | 
					#include "asterisk/utils.h"
 | 
				
			||||||
@@ -29,12 +45,6 @@
 | 
				
			|||||||
#include "asterisk/utils.h"
 | 
					#include "asterisk/utils.h"
 | 
				
			||||||
#include "asterisk/options.h"
 | 
					#include "asterisk/options.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					 | 
				
			||||||
 * \file
 | 
					 | 
				
			||||||
 * \brief SMDI support for Asterisk.
 | 
					 | 
				
			||||||
 * \author Matthew A. Nicholson <mnicholson@digium.com>
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Message expiry time in milliseconds */
 | 
					/* Message expiry time in milliseconds */
 | 
				
			||||||
#define SMDI_MSG_EXPIRY_TIME	30000 /* 30 seconds */
 | 
					#define SMDI_MSG_EXPIRY_TIME	30000 /* 30 seconds */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user