31ccf6a2 |
/*
* User location module interface
*
* Copyright (C) 2001-2003 FhG Fokus
*
|
27642a08 |
* This file is part of Kamailio, a free SIP server.
|
31ccf6a2 |
*
|
27642a08 |
* Kamailio is free software; you can redistribute it and/or modify
|
31ccf6a2 |
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
|
27642a08 |
* Kamailio is distributed in the hope that it will be useful,
|
31ccf6a2 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
|
10d6b2b7 |
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
|
9e1ff448 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
31ccf6a2 |
*
*/
|
adfa93a7 |
/*! \file
* \brief USRLOC - Usrloc module interface
* \ingroup usrloc
*/
|
31ccf6a2 |
|
25d173a9 |
#ifndef _USRLOC_MOD_H_
#define _USRLOC_MOD_H_
|
31ccf6a2 |
|
90ab2605 |
#include "../../lib/srdb1/db.h"
|
cf83221d |
#include "../../core/str.h"
|
31ccf6a2 |
/*
* Module parameters
*/
|
62ea33a6 |
#define UL_TABLE_VERSION 9
|
31ccf6a2 |
|
05823430 |
extern str ruid_col;
|
31ccf6a2 |
extern str user_col;
extern str domain_col;
extern str contact_col;
extern str expires_col;
extern str q_col;
extern str callid_col;
extern str cseq_col;
extern str flags_col;
|
cffbf08f |
extern str cflags_col;
|
31ccf6a2 |
extern str user_agent_col;
extern str received_col;
|
79bf803d |
extern str path_col;
|
31ccf6a2 |
extern str sock_col;
|
0b7b6f4f |
extern str methods_col;
|
05823430 |
extern str instance_col;
|
221073eb |
extern str reg_id_col;
|
67e40ec0 |
extern str srv_id_col;
extern str con_id_col;
extern str keepalive_col;
|
8f8d4f5d |
extern str partition_col;
|
9679b230 |
extern str last_mod_col;
|
31ccf6a2 |
|
5463e46f |
extern str ulattrs_user_col;
extern str ulattrs_domain_col;
extern str ulattrs_ruid_col;
extern str ulattrs_aname_col;
extern str ulattrs_atype_col;
extern str ulattrs_avalue_col;
extern str ulattrs_last_mod_col;
|
31ccf6a2 |
extern str db_url;
extern int timer_interval;
extern int db_mode;
|
5d14f5ca |
extern int db_insert_update;
|
31ccf6a2 |
extern int use_domain;
extern int desc_time_order;
|
9679b230 |
extern int cseq_delay;
|
b53534e7 |
extern int ul_fetch_rows;
|
72e74f8f |
extern int ul_hash_size;
|
d66b9903 |
extern int ul_db_update_as_insert;
|
4b68b3ca |
extern int ul_db_check_update;
|
36845cc5 |
extern int ul_keepalive_timeout;
|
72996942 |
extern int handle_lost_tcp;
|
c3f9e82e |
extern int close_expired_tcp;
|
e737942f |
extern int skip_remote_socket;
|
c3f9e82e |
|
36845cc5 |
/*! nat branch flag */
extern unsigned int nat_bflag;
/*! flag to protect against wrong initialization */
extern unsigned int init_flag;
|
e6ad428f |
extern str ul_xavp_contact_name;
|
31ccf6a2 |
|
90ab2605 |
extern db1_con_t* ul_dbh; /* Database connection handle */
|
31ccf6a2 |
extern db_func_t ul_dbf;
|
7fdbdd44 |
/* filter on load and during cleanup by server id */
|
aedd970a |
extern unsigned int ul_db_srvid;
|
31ccf6a2 |
|
3877e72f |
/*
* Matching algorithms
*/
|
a6609f5f |
#define CONTACT_ONLY (0)
#define CONTACT_CALLID (1)
#define CONTACT_PATH (2)
#define CONTACT_CALLID_ONLY (3)
|
3877e72f |
|
4c9bcb4c |
extern int ul_matching_mode;
|
3877e72f |
|
61e08282 |
extern int ul_db_ops_ruid;
|
3877e72f |
|
cb6e934a |
extern int ul_expires_type;
#define UL_DB_EXPIRES_SET(r, v) do { \
if(ul_expires_type==1) { \
(r)->type = DB1_BIGINT; \
(r)->val.ll_val = (long long)(v); \
} else { \
(r)->type = DB1_DATETIME; \
(r)->val.time_val = (time_t)(v); \
} \
} while(0)
#define UL_DB_EXPIRES_GET(r) ((ul_expires_type==1)?(time_t)VAL_BIGINT(r):VAL_TIME(r))
|
25d173a9 |
#endif /* _USRLOC_MOD_H_ */
|