Fri Jul 24 00:41:07 2009

Asterisk developer's documentation


app_cdr.c File Reference

Applications connected with CDR engine. More...

#include "asterisk.h"
#include "asterisk/channel.h"
#include "asterisk/module.h"

Go to the source code of this file.

Functions

static void __reg_module (void)
static void __unreg_module (void)
static int load_module (void)
static int nocdr_exec (struct ast_channel *chan, void *data)
static int unload_module (void)

Variables

static struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "Tell Asterisk to not maintain a CDR for the current call" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = "a9c98e5d177805051735cb5b0b16b0a0" , .load = load_module, .unload = unload_module, }
static struct ast_module_infoast_module_info = &__mod_info
static char * nocdr_app = "NoCDR"
static char * nocdr_descrip
static char * nocdr_synopsis = "Tell Asterisk to not maintain a CDR for the current call"


Detailed Description

Applications connected with CDR engine.

Author:
Martin Pycko <martinp@digium.com>

Definition in file app_cdr.c.


Function Documentation

static void __reg_module ( void   )  [static]

Definition at line 63 of file app_cdr.c.

static void __unreg_module ( void   )  [static]

Definition at line 63 of file app_cdr.c.

static int load_module ( void   )  [static]

Definition at line 56 of file app_cdr.c.

References AST_MODULE_LOAD_FAILURE, AST_MODULE_LOAD_SUCCESS, ast_register_application, and nocdr_exec().

static int nocdr_exec ( struct ast_channel chan,
void *  data 
) [static]

Definition at line 43 of file app_cdr.c.

References AST_CDR_FLAG_POST_DISABLED, ast_set_flag, ast_channel::cdr, and chan.

Referenced by load_module().

00044 {
00045    if (chan->cdr)
00046       ast_set_flag(chan->cdr, AST_CDR_FLAG_POST_DISABLED);
00047 
00048    return 0;
00049 }

static int unload_module ( void   )  [static]

Definition at line 51 of file app_cdr.c.

References ast_unregister_application().

00052 {
00053    return ast_unregister_application(nocdr_app);
00054 }


Variable Documentation

struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "Tell Asterisk to not maintain a CDR for the current call" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = "a9c98e5d177805051735cb5b0b16b0a0" , .load = load_module, .unload = unload_module, } [static]

Definition at line 63 of file app_cdr.c.

struct ast_module_info* ast_module_info = &__mod_info [static]

Definition at line 63 of file app_cdr.c.

char* nocdr_app = "NoCDR" [static]

Definition at line 39 of file app_cdr.c.

char* nocdr_descrip [static]

Initial value:

"  NoCDR(): This application will tell Asterisk not to maintain a CDR for the\n"
"current call.\n"

Definition at line 35 of file app_cdr.c.

char* nocdr_synopsis = "Tell Asterisk to not maintain a CDR for the current call" [static]

Definition at line 40 of file app_cdr.c.


Generated on Fri Jul 24 00:41:07 2009 for Asterisk - the Open Source PBX by  doxygen 1.4.7