Thu Apr 28 2011 17:13:36

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"
Include dependency graph for app_cdr.c:

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
__MODULE_INFO_SECTION 
__mod_info = { __MODULE_INFO_GLOBALS .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "Tell Asterisk to not maintain a CDR for the current call" , .key = ASTERISK_GPL_KEY , .buildopt_sum = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, }
static struct ast_module_infoast_module_info = &__mod_info
static char * nocdr_app = "NoCDR"

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 69 of file app_cdr.c.

static void __unreg_module ( void  ) [static]

Definition at line 69 of file app_cdr.c.

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

Definition at line 49 of file app_cdr.c.

References AST_CDR_FLAG_POST_DISABLED, ast_set_flag, and ast_channel::cdr.

Referenced by load_module().

{
   if (chan->cdr)
      ast_set_flag(chan->cdr, AST_CDR_FLAG_POST_DISABLED);

   return 0;
}
static int unload_module ( void  ) [static]

Definition at line 57 of file app_cdr.c.

References ast_unregister_application().


Variable Documentation

struct ast_module_info __MODULE_INFO_SECTION __mod_info = { __MODULE_INFO_GLOBALS .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "Tell Asterisk to not maintain a CDR for the current call" , .key = ASTERISK_GPL_KEY , .buildopt_sum = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, } [static]

Definition at line 69 of file app_cdr.c.

Definition at line 69 of file app_cdr.c.

char* nocdr_app = "NoCDR" [static]

Definition at line 47 of file app_cdr.c.