[Asterisk-cvs] asterisk/apps app_sms.c,NONE,1.1 Makefile,1.58,1.59
markster at lists.digium.com
markster at lists.digium.com
Wed Apr 28 16:36:29 CDT 2004
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv11646/apps
Modified Files:
Makefile
Added Files:
app_sms.c
Log Message:
Add revk's SMS application (bug #1437). Thanks!
--- NEW FILE: app_sms.c ---
/*
* Asterisk -- A telephony toolkit for Linux.
*
* SMS application - ETSI ES 201 912 protocol 1 implimentation
*
* Copyright (C) 2004, Adrian Kennard, rights assigned to Digium
*
* This program is free software, distributed under the terms of
* the GNU General Public License
*/
#include <asterisk/lock.h>
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/options.h>
#include <asterisk/channel.h>
#include <asterisk/pbx.h>
#include <asterisk/module.h>
#include <asterisk/callerid.h>
[...1188 lines suppressed...]
char *
description (void)
{
return tdesc;
}
int
usecount (void)
{
int res;
STANDARD_USECOUNT (res);
return res;
}
char *
key ()
{
return ASTERISK_GPL_KEY;
}
Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/Makefile,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- Makefile 27 Apr 2004 21:30:31 -0000 1.58
+++ Makefile 28 Apr 2004 20:43:06 -0000 1.59
@@ -26,7 +26,7 @@
app_enumlookup.so app_transfer.so app_setcidnum.so app_cdr.so \
app_hasnewvoicemail.so app_sayunixtime.so app_cut.so app_read.so \
app_setcdruserfield.so app_random.so app_ices.so app_eval.so \
- app_nbscat.so app_sendtext.so app_exec.so
+ app_nbscat.so app_sendtext.so app_exec.so app_sms.so
ifneq (${OSARCH},Darwin)
APPS+=app_intercom.so
More information about the svn-commits
mailing list