37#include "asterisk/build.h" 
   88             char *parse, 
char *buffer, 
size_t buflen)
 
   98        if (!strcasecmp(
args.info,
"ASTERISK_VERSION_NUM"))
 
  100        else if (!strcasecmp(
args.info,
"BUILD_USER"))
 
  101            response_char = BUILD_USER;
 
  102        else if (!strcasecmp(
args.info,
"BUILD_HOSTNAME"))
 
  103            response_char = BUILD_HOSTNAME;
 
  104        else if (!strcasecmp(
args.info,
"BUILD_MACHINE"))
 
  105            response_char = BUILD_MACHINE;
 
  106        else if (!strcasecmp(
args.info,
"BUILD_KERNEL"))
 
  107            response_char = BUILD_KERNEL;
 
  108        else if (!strcasecmp(
args.info,
"BUILD_OS"))
 
  109            response_char = BUILD_OS;
 
  110        else if (!strcasecmp(
args.info,
"BUILD_DATE"))
 
  111            response_char = BUILD_DATE;
 
  114    ast_debug(1, 
"VERSION returns %s result, given %s argument\n", response_char, 
args.info);
 
 
Asterisk version information.
const char * ast_get_version(void)
Retrieve the Asterisk version string.
const char * ast_get_version_num(void)
Retrieve the numeric Asterisk version.
Asterisk main include file. File version handling, generic pbx functions.
General Asterisk PBX channel definitions.
static struct ast_custom_function acf_version
static int load_module(void)
static int unload_module(void)
static int acf_version_exec(struct ast_channel *chan, const char *cmd, char *parse, char *buffer, size_t buflen)
Application convenience functions, designed to give consistent look and feel to Asterisk apps.
#define AST_APP_ARG(name)
Define an application argument.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
#define ast_debug(level,...)
Log a DEBUG message.
Asterisk module definitions.
#define AST_MODULE_INFO_STANDARD(keystr, desc)
#define ASTERISK_GPL_KEY
The text the key() function should return.
Core PBX routines and definitions.
#define ast_custom_function_register(acf)
Register a custom function.
int ast_custom_function_unregister(struct ast_custom_function *acf)
Unregister a custom function.
static force_inline int attribute_pure ast_strlen_zero(const char *s)
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
Main Channel structure associated with a channel.
Data structure associated with a custom dialplan function.