mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.9 KiB
111 lines
2.9 KiB
/*
|
|
* registrar module interface
|
|
*
|
|
* Copyright (C) 2001-2003 FhG Fokus
|
|
*
|
|
* This file is part of Kamailio, a free SIP server.
|
|
*
|
|
* Kamailio is free software; you can redistribute it and/or modify
|
|
* 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
|
|
*
|
|
* Kamailio is distributed in the hope that it will be useful,
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
/*!
|
|
* \file
|
|
* \brief SIP registrar module - interface
|
|
* \ingroup registrar
|
|
*/
|
|
|
|
|
|
#ifndef REG_MOD_H
|
|
#define REG_MOD_H
|
|
|
|
#include "../../parser/msg_parser.h"
|
|
#include "../../qvalue.h"
|
|
#include "../../usr_avp.h"
|
|
#include "../usrloc/usrloc.h"
|
|
#include "../../modules/sl/sl.h"
|
|
|
|
/* if DB support is used, this values must not exceed the
|
|
* storage capacity of the DB columns! See db/schema/entities.xml */
|
|
#define CONTACT_MAX_SIZE 255
|
|
#define RECEIVED_MAX_SIZE 255
|
|
#define USERNAME_MAX_SIZE 64
|
|
#define DOMAIN_MAX_SIZE 128
|
|
#define CALLID_MAX_SIZE 255
|
|
|
|
#define PATH_MODE_STRICT 2
|
|
#define PATH_MODE_LAZY 1
|
|
#define PATH_MODE_OFF 0
|
|
|
|
#define REG_SAVE_MEM_FL (1<<0)
|
|
#define REG_SAVE_NORPL_FL (1<<1)
|
|
#define REG_SAVE_REPL_FL (1<<2)
|
|
#define REG_SAVE_ALL_FL ((1<<3)-1)
|
|
|
|
#define REG_OUTBOUND_NONE 0
|
|
#define REG_OUTBOUND_SUPPORTED 1
|
|
#define REG_OUTBOUND_REQUIRE 2
|
|
|
|
#define REG_REGID_OUTBOUND 0
|
|
#define REG_REGID_ALWAYS 1
|
|
|
|
/* Maximum of 999 to keep flow-timer to 3 digits
|
|
* - make sure to update reply.c:add_flow_timer() if the number of digits
|
|
* increases! */
|
|
#define REG_FLOW_TIMER_MAX 999
|
|
|
|
extern int nat_flag;
|
|
extern int tcp_persistent_flag;
|
|
extern int received_avp;
|
|
extern int reg_use_domain;
|
|
extern float def_q;
|
|
|
|
extern unsigned short rcv_avp_type;
|
|
extern int_str rcv_avp_name;
|
|
|
|
extern str match_callid_name;
|
|
extern str match_received_name;
|
|
extern str match_contact_name;
|
|
|
|
extern str rcv_param;
|
|
extern int method_filtering;
|
|
extern int path_enabled;
|
|
extern int path_mode;
|
|
extern int path_use_params;
|
|
extern int path_check_local;
|
|
extern int reg_gruu_enabled;
|
|
extern int reg_outbound_mode;
|
|
extern int reg_regid_mode;
|
|
extern int reg_flow_timer;
|
|
|
|
extern str sock_hdr_name;
|
|
extern int sock_flag;
|
|
|
|
extern str reg_xavp_cfg;
|
|
extern str reg_xavp_rcd;
|
|
|
|
extern usrloc_api_t ul;/*!< Structure containing pointers to usrloc functions*/
|
|
|
|
extern sl_api_t slb;
|
|
|
|
extern int reg_expire_event_rt;
|
|
|
|
extern stat_var *accepted_registrations;
|
|
extern stat_var *rejected_registrations;
|
|
extern stat_var *default_expire_stat;
|
|
extern stat_var *max_expires_stat;
|
|
|
|
#endif /* REG_MOD_H */
|