From 6ffda996af2f5261775610a416e5146d5d394f4f Mon Sep 17 00:00:00 2001 From: anthm Date: Fri, 24 Sep 2004 21:33:48 +0000 Subject: add app_forkcdr git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3832 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/Makefile | 2 +- apps/app_forkcdr.c | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+), 1 deletion(-) create mode 100755 apps/app_forkcdr.c (limited to 'apps') diff --git a/apps/Makefile b/apps/Makefile index 5aacce21f..ebd149c76 100755 --- a/apps/Makefile +++ b/apps/Makefile @@ -29,7 +29,7 @@ APPS=app_dial.so app_playback.so app_voicemail.so app_directory.so app_mp3.so\ app_nbscat.so app_sendtext.so app_exec.so app_sms.so \ app_groupcount.so app_txtcidname.so app_controlplayback.so \ app_talkdetect.so app_alarmreceiver.so app_userevent.so app_verbose.so \ - app_test.so + app_test.so app_forkcdr.so ifneq (${OSARCH},Darwin) APPS+=app_intercom.so diff --git a/apps/app_forkcdr.c b/apps/app_forkcdr.c new file mode 100755 index 000000000..547bfa45e --- /dev/null +++ b/apps/app_forkcdr.c @@ -0,0 +1,89 @@ +/* + * Asterisk -- A telephony toolkit for Linux. + * + * Fork CDR application + * Copyright Anthony Minessale anthmct@yahoo.com + * Development of this app Sponsered/Funded by TAAN Softworks Corp + * + * This program is free software, distributed under the terms of + * the GNU General Public License + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static char *tdesc = "Fork The CDR into 2 seperate entities."; +static char *app = "ForkCDR"; +static char *synopsis = +"Forks the Call Data Record\n" +" ForkCDR(): Causes the Call Data Record to fork an additional\n" + "cdr record starting from the time of the fork call\n"; + + +STANDARD_LOCAL_USER; + +LOCAL_USER_DECL; + + +static void ast_cdr_clone(struct ast_cdr *cdr) { + struct ast_cdr *newcdr = ast_cdr_alloc(); + memcpy(newcdr,cdr,sizeof(struct ast_cdr)); + ast_cdr_append(cdr,newcdr); + gettimeofday(&newcdr->start, NULL); + memset(&newcdr->answer, 0, sizeof(newcdr->answer)); + ast_cdr_add_flag(cdr,AST_CDR_FLAG_CHILD|AST_CDR_FLAG_LOCKED); +} + +static void ast_cdr_fork(struct ast_channel *chan) { + if(chan && chan->cdr) { + ast_cdr_clone(chan->cdr); + } +} + +static int forkcdr_exec(struct ast_channel *chan, void *data) +{ + int res=0; + struct localuser *u; + LOCAL_USER_ADD(u); + + ast_cdr_fork(chan); + + LOCAL_USER_REMOVE(u); + return res; +} + +int unload_module(void) +{ + STANDARD_HANGUP_LOCALUSERS; + return ast_unregister_application(app); +} + +int load_module(void) +{ + return ast_register_application(app, forkcdr_exec, synopsis, tdesc); +} + +char *description(void) +{ + return tdesc; +} + +int usecount(void) +{ + int res; + STANDARD_USECOUNT(res); + return res; +} + +char *key() +{ + return ASTERISK_GPL_KEY; +} -- cgit v1.2.3