FreeTDS CEL logger http://www.freetds.org/.
More...
#include "asterisk.h"
#include <time.h>
#include <math.h>
#include "asterisk/config.h"
#include "asterisk/channel.h"
#include "asterisk/cel.h"
#include "asterisk/module.h"
#include "asterisk/logger.h"
#include <sqlfront.h>
#include <sybdb.h>
Go to the source code of this file.
|
#define | DATE_FORMAT "%Y/%m/%d %T" |
|
#define | TDS_BACKEND_NAME "CEL TDS logging backend" |
|
|
static void | __reg_module (void) |
|
static void | __unreg_module (void) |
|
static char * | anti_injection (const char *, int) |
|
struct ast_module * | AST_MODULE_SELF_SYM (void) |
|
static int | execute_and_consume (DBPROCESS *dbproc, const char *fmt,...) |
|
static void | get_date (char *, size_t len, struct timeval) |
|
static int | load_module (void) |
|
static int | mssql_connect (void) |
|
static int | mssql_disconnect (void) |
|
static int | reload (void) |
|
static int | tds_error_handler (DBPROCESS *dbproc, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr) |
|
static int | tds_load_module (int reload) |
|
static void | tds_log (struct ast_event *event) |
|
static int | tds_message_handler (DBPROCESS *dbproc, DBINT msgno, int msgstate, int severity, char *msgtext, char *srvname, char *procname, int line) |
|
static int | tds_unload_module (void) |
|
static int | unload_module (void) |
|
|
static struct ast_module_info | __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_LOAD_ORDER , .description = "FreeTDS CEL Backend" , .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 = "da6642af068ee5e6490c5b1d2cc1d238" , .support_level = AST_MODULE_SUPPORT_EXTENDED, .load = load_module, .unload = unload_module, .reload = reload, .load_pri = AST_MODPRI_CDR_DRIVER, .requires = "cel", } |
|
static const struct ast_module_info * | ast_module_info = &__mod_info |
|
static char * | config = "cel_tds.conf" |
|
static struct cel_tds_config * | settings |
|
static ast_mutex_t | tds_lock = { PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP , NULL, {1, 0} } |
|
FreeTDS CEL logger http://www.freetds.org/.
Definition in file cel_tds.c.
#define DATE_FORMAT "%Y/%m/%d %T" |
*
* Table Structure for `cel`
*
CREATE TABLE [dbo].[cel] (
[accountcode] [varchar] (20) NULL ,
[cidname] [varchar] (80) NULL ,
[cidnum] [varchar] (80) NULL ,
[cidani] [varchar] (80) NULL ,
[cidrdnis] [varchar] (80) NULL ,
[ciddnid] [varchar] (80) NULL ,
[exten] [varchar] (80) NULL ,
[context] [varchar] (80) NULL ,
[channame] [varchar] (80) NULL ,
[appname] [varchar] (80) NULL ,
[appdata] [varchar] (80) NULL ,
[eventtime] [datetime] NULL ,
[eventtype] [varchar] (32) NULL ,
[uniqueid] [varchar] (32) NULL ,
[linkedid] [varchar] (32) NULL ,
[amaflags] [varchar] (16) NULL ,
[userfield] [varchar] (32) NULL ,
[peer] [varchar] (32) NULL
) ON [PRIMARY]
Definition at line 77 of file cel_tds.c.