#include <assert.h>
#include "../../sr_module.h"
#include "../../mem/mem.h"
#include "../../dprint.h"
#include "../../script_cb.h"
#include "../../locking.h"
#include "../../ut.h"
#include "../../mod_fix.h"
#include "../../error.h"
#include "ring.h"
#include "options.h"
#include "checks.h"
#include "utils.h"
#include "contact_ops.h"
#include "sipops.h"

Go to the source code of this file.
Functions | |
| static void | mod_destroy (void) |
| static int | mod_init (void) |
Variables | |
| static cmd_export_t | cmds [] |
| char * | contact_flds_separator = DEFAULT_SEPARATOR |
| struct module_exports | exports |
| str | opt_accept = str_init(ACPT_DEF) |
| str | opt_accept_enc = str_init(ACPT_ENC_DEF) |
| str | opt_accept_lang = str_init(ACPT_LAN_DEF) |
| struct sl_binds | opt_slb |
| str | opt_supported = str_init(SUPT_DEF) |
| static param_export_t | params [] |
| MODULE_VERSION gen_lock_t * | ring_lock = NULL |
| unsigned int | ring_timeout = 0 |
Definition in file siputils.c.
| static void mod_destroy | ( | void | ) | [static] |
Definition at line 153 of file siputils.c.
References NULL, ring_destroy_hashtable(), and ring_lock.
| static int mod_init | ( | void | ) | [static] |
Definition at line 121 of file siputils.c.
References _str::len, LM_CRIT, LM_ERR, load_sl_api(), opt_slb, PRE_SCRIPT_CB, register_script_cb(), ring_filter(), ring_init_hashtable(), ring_lock, ring_timeout, RPL_TYPE_CB, and _str::s.
cmd_export_t cmds[] [static] |
Definition at line 72 of file siputils.c.
| char* contact_flds_separator = DEFAULT_SEPARATOR |
Definition at line 70 of file siputils.c.
| struct module_exports exports |
Definition at line 105 of file siputils.c.
| str opt_accept = str_init(ACPT_DEF) |
| str opt_accept_enc = str_init(ACPT_ENC_DEF) |
| str opt_accept_lang = str_init(ACPT_LAN_DEF) |
| str opt_supported = str_init(SUPT_DEF) |
param_export_t params[] [static] |
Definition at line 94 of file siputils.c.
| MODULE_VERSION gen_lock_t* ring_lock = NULL |
Definition at line 57 of file siputils.c.
Referenced by mod_destroy(), mod_init(), ring_filter(), and ring_insert_callid().
| unsigned int ring_timeout = 0 |
Definition at line 58 of file siputils.c.
Referenced by mod_init(), remove_timeout(), and ring_fixup().
1.5.6