|
static void | __reg_module (void) |
|
static void | __unreg_module (void) |
|
struct ast_module * | AST_MODULE_SELF_SYM (void) |
|
static int | cdr_prop_write (struct ast_channel *chan, const char *cmd, char *parse, const char *value) |
|
static void | cdr_prop_write_callback (void *data, struct stasis_subscription *sub, struct stasis_message *message) |
|
static int | cdr_read (struct ast_channel *chan, const char *cmd, char *parse, char *buf, size_t len) |
|
static void | cdr_read_callback (void *data, struct stasis_subscription *sub, struct stasis_message *message) |
|
static struct timeval | cdr_retrieve_time (struct ast_channel *chan, const char *time_name) |
|
static int | cdr_write (struct ast_channel *chan, const char *cmd, char *arguments, const char *value) |
|
static void | cdr_write_callback (void *data, struct stasis_subscription *sub, struct stasis_message *message) |
|
static int | load_module (void) |
|
| STASIS_MESSAGE_TYPE_DEFN_LOCAL (cdr_read_message_type) |
|
| STASIS_MESSAGE_TYPE_DEFN_LOCAL (cdr_write_message_type) |
|
| STASIS_MESSAGE_TYPE_DEFN_LOCAL (cdr_prop_write_message_type) |
|
static int | unload_module (void) |
|
|
static struct ast_module_info | __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "Call Detail Record (CDR) dialplan functions" , .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 = "da6642af068ee5e6490c5b1d2cc1d238" , .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, .requires = "cdr", } |
|
static const struct ast_module_info * | ast_module_info = &__mod_info |
|
static const struct ast_app_option | cdr_func_options [128] = { [ 'f' ] = { .flag = OPT_FLOAT }, [ 'u' ] = { .flag = OPT_UNPARSED }, } |
|
static struct ast_custom_function | cdr_function |
|
static struct ast_custom_function | cdr_prop_function |
|
Call Detail Record related dialplan functions.
- Author
- Anthony Minessale II
Definition in file func_cdr.c.