Sat Apr 26 2014 22:02:51

Asterisk developer's documentation


func_callcompletion.c File Reference

Call Completion Supplementary Services implementation. More...

#include "asterisk.h"
#include "asterisk/module.h"
#include "asterisk/channel.h"
#include "asterisk/ccss.h"
#include "asterisk/pbx.h"
Include dependency graph for func_callcompletion.c:

Go to the source code of this file.

Functions

static void __reg_module (void)
static void __unreg_module (void)
static int acf_cc_read (struct ast_channel *chan, const char *name, char *data, char *buf, size_t buf_len)
static int acf_cc_write (struct ast_channel *chan, const 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_LOAD_ORDER , .description = "Call Control Configuration 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 = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_DEFAULT, }
static struct ast_module_infoast_module_info = &__mod_info
static struct ast_custom_function cc_function

Detailed Description

Call Completion Supplementary Services implementation.

Author:
Mark Michelson <mmichelson@digium.com>

Definition in file func_callcompletion.c.


Function Documentation

static void __reg_module ( void  ) [static]

Definition at line 131 of file func_callcompletion.c.

static void __unreg_module ( void  ) [static]

Definition at line 131 of file func_callcompletion.c.

static int acf_cc_read ( struct ast_channel chan,
const char *  name,
char *  data,
char *  buf,
size_t  buf_len 
) [static]

Definition at line 71 of file func_callcompletion.c.

References ast_cc_get_param(), ast_channel_get_cc_config_params(), ast_channel_lock, ast_channel_unlock, ast_log(), and LOG_WARNING.

{
   struct ast_cc_config_params *cc_params;
   int res;

   if (!chan) {
      ast_log(LOG_WARNING, "No channel was provided to %s function.\n", name);
      return -1;
   }

   ast_channel_lock(chan);
   if (!(cc_params = ast_channel_get_cc_config_params(chan))) {
      ast_channel_unlock(chan);
      return -1;
   }

   res = ast_cc_get_param(cc_params, data, buf, buf_len);
   ast_channel_unlock(chan);
   return res;
}
static int acf_cc_write ( struct ast_channel chan,
const char *  cmd,
char *  data,
const char *  value 
) [static]

Definition at line 93 of file func_callcompletion.c.

References ast_cc_set_param(), ast_channel_get_cc_config_params(), ast_channel_lock, ast_channel_unlock, ast_log(), and LOG_WARNING.

{
   struct ast_cc_config_params *cc_params;
   int res;

   if (!chan) {
      ast_log(LOG_WARNING, "No channel was provided to %s function.\n", cmd);
      return -1;
   }

   ast_channel_lock(chan);
   if (!(cc_params = ast_channel_get_cc_config_params(chan))) {
      ast_channel_unlock(chan);
      return -1;
   }

   res = ast_cc_set_param(cc_params, data, value);
   ast_channel_unlock(chan);
   return res;
}
static int unload_module ( void  ) [static]

Variable Documentation

struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_LOAD_ORDER , .description = "Call Control Configuration 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 = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_DEFAULT, } [static]

Definition at line 131 of file func_callcompletion.c.

Definition at line 131 of file func_callcompletion.c.

Initial value:
 {
   .name = "CALLCOMPLETION",
   .read = acf_cc_read,
   .write = acf_cc_write,
}

Definition at line 115 of file func_callcompletion.c.