ENUM Functions.
More...
Go to the source code of this file.
|
static void | __reg_module (void) |
|
static void | __unreg_module (void) |
|
struct ast_module * | AST_MODULE_SELF_SYM (void) |
|
static int | enum_query_read (struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) |
|
static int | enum_result_read (struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) |
|
static void | erds_destroy (struct enum_result_datastore *data) |
|
static void | erds_destroy_cb (void *data) |
|
static int | function_enum (struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) |
|
static int | function_txtcidname (struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) |
|
static int | load_module (void) |
|
static int | unload_module (void) |
|
|
static struct ast_module_info | __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "ENUM related 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 = "enum", } |
|
static const struct ast_module_info * | ast_module_info = &__mod_info |
|
static unsigned int | enum_datastore_id |
|
static struct ast_custom_function | enum_function |
|
static struct ast_custom_function | enum_query_function |
|
static const struct ast_datastore_info | enum_result_datastore_info |
|
static struct ast_custom_function | enum_result_function |
|
static char * | synopsis = "Syntax: ENUMLOOKUP(number[,Method-type[,options[,record#[,zone-suffix]]]])\n" |
|
static struct ast_custom_function | txtcidname_function |
|
Initial value:= {
.name = "ENUMLOOKUP",
.read = function_enum,
}
Definition at line 410 of file func_enum.c.
Initial value:= {
.name = "ENUMQUERY",
.read = enum_query_read,
}
Definition at line 400 of file func_enum.c.
Initial value:= {
.type = "ENUMQUERY",
.destroy = erds_destroy_cb,
}
Definition at line 247 of file func_enum.c.
Initial value:= {
.name = "ENUMRESULT",
.read = enum_result_read,
}
Definition at line 405 of file func_enum.c.
Initial value:= {
.name = "TXTCIDNAME",
.read = function_txtcidname,
}
Definition at line 446 of file func_enum.c.