#include "asterisk.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include "asterisk/module.h"
#include "asterisk/channel.h"
#include "asterisk/pbx.h"
#include "asterisk/logger.h"
#include "asterisk/utils.h"
#include "asterisk/app.h"
#include "asterisk/stringfields.h"
Go to the source code of this file.
Functions | |
static void | __reg_module (void) |
static void | __unreg_module (void) |
static int | language_read (struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len) |
static int | language_write (struct ast_channel *chan, char *cmd, char *data, const char *value) |
static int | load_module (void) |
static int | unload_module (void) |
Variables | |
static struct ast_module_info | __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT | AST_MODFLAG_BUILDSUM, .description = "Channel language dialplan function" , .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 = "361d7bb937402d51e4658efb5b4d76e4" , .load = load_module, .unload = unload_module, } |
static const struct ast_module_info * | ast_module_info = &__mod_info |
static int | depwarning = 0 |
static struct ast_custom_function | language_function |
Definition in file func_language.c.
static void __reg_module | ( | void | ) | [static] |
Definition at line 90 of file func_language.c.
static void __unreg_module | ( | void | ) | [static] |
Definition at line 90 of file func_language.c.
static int language_read | ( | struct ast_channel * | chan, | |
char * | cmd, | |||
char * | data, | |||
char * | buf, | |||
size_t | len | |||
) | [static] |
Definition at line 42 of file func_language.c.
References ast_copy_string(), ast_log(), ast_channel::language, and LOG_WARNING.
00044 { 00045 if (!depwarning) { 00046 depwarning = 1; 00047 ast_log(LOG_WARNING, 00048 "LANGUAGE() is deprecated; use CHANNEL(language) instead.\n"); 00049 } 00050 00051 ast_copy_string(buf, chan ? chan->language : "", len); 00052 00053 return 0; 00054 }
static int language_write | ( | struct ast_channel * | chan, | |
char * | cmd, | |||
char * | data, | |||
const char * | value | |||
) | [static] |
Definition at line 56 of file func_language.c.
References ast_log(), ast_string_field_set, language, and LOG_WARNING.
00058 { 00059 if (!depwarning) { 00060 depwarning = 1; 00061 ast_log(LOG_WARNING, 00062 "LANGUAGE() is deprecated; use CHANNEL(language) instead.\n"); 00063 } 00064 00065 if (chan && value) 00066 ast_string_field_set(chan, language, value); 00067 00068 return 0; 00069 }
static int load_module | ( | void | ) | [static] |
Definition at line 85 of file func_language.c.
References ast_custom_function_register(), and language_function.
00086 { 00087 return ast_custom_function_register(&language_function); 00088 }
static int unload_module | ( | void | ) | [static] |
Definition at line 80 of file func_language.c.
References ast_custom_function_unregister(), and language_function.
00081 { 00082 return ast_custom_function_unregister(&language_function); 00083 }
struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT | AST_MODFLAG_BUILDSUM, .description = "Channel language dialplan function" , .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 = "361d7bb937402d51e4658efb5b4d76e4" , .load = load_module, .unload = unload_module, } [static] |
Definition at line 90 of file func_language.c.
const struct ast_module_info* ast_module_info = &__mod_info [static] |
Definition at line 90 of file func_language.c.
int depwarning = 0 [static] |
struct ast_custom_function language_function [static] |