Thu Apr 28 2011 17:14:04

Asterisk developer's documentation


ast_module_info Struct Reference

#include <module.h>

Collaboration diagram for ast_module_info:

Data Fields

int(* backup_globals )(void)
const char buildopt_sum [33]
const char * description
unsigned int flags
const char * key
enum ast_module_load_result(* load )(void)
unsigned char load_pri
const char * name
int(* reload )(void)
void(* restore_globals )(void)
struct ast_moduleself
int(* unload )(void)

Detailed Description

Definition at line 196 of file module.h.


Field Documentation

int(* backup_globals)(void)

for embedded modules, backup global data

Definition at line 208 of file module.h.

Referenced by load_resource().

const char buildopt_sum[33]

The value of AST_BUILDOPT_SUM when this module was compiled

Definition at line 223 of file module.h.

Referenced by inspect_module().

const char* description

user friendly description of the module.

Definition at line 211 of file module.h.

Referenced by ast_module_reload(), ast_update_module_list(), config_module(), inspect_module(), load_module(), odbc_load_module(), start_resource(), and unload_module().

unsigned int flags

Definition at line 220 of file module.h.

const char* key

This holds the ASTERISK_GPL_KEY, signifiying that you agree to the terms of the Asterisk license as stated in the ASTERISK_GPL_KEY. Your module will not load if it does not return the EXACT key string.

Definition at line 219 of file module.h.

Referenced by inspect_module().

register stuff etc. Optional.

Definition at line 205 of file module.h.

Referenced by start_resource().

unsigned char load_pri

This value represents the order in which a module's load() function is initialized. The lower this value, the higher the priority. The value is only checked if the AST_MODFLAG_LOAD_ORDER flag is set. If the AST_MODFLAG_LOAD_ORDER flag is not set, this value will never be read and the module will be given the lowest possible priority on load.

Definition at line 230 of file module.h.

Referenced by mod_load_cmp().

const char* name

name of the module for loader reference and CLI commands

Definition at line 210 of file module.h.

int(* reload)(void)

config etc. Optional.

Definition at line 206 of file module.h.

Referenced by ast_module_helper(), and ast_module_reload().

void(* restore_globals)(void)

for embedded modules, restore global data

Definition at line 209 of file module.h.

Referenced by ast_unload_resource().

int(* unload)(void)

unload. called with the module locked

Definition at line 207 of file module.h.

Referenced by ast_module_shutdown(), and ast_unload_resource().


The documentation for this struct was generated from the following file: