123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /*
- * $Id$
- *
- * Copyright (C) 2007 iptelorg GmbH
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- * [email protected]
- *
- * ser 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
- *
- * HOWTO:
- * If you need a new configuration variable within the core, put it into
- * struct cfg_goup_core, and define it in cfg_core.c:core_cfg_def array.
- * The default value of the variable must be inserted into
- * cfg_core.c:default_core_cfg
- * Include this header file in your source code, and retrieve the
- * value with cfg_get(core, core_cfg, variable_name).
- *
- * History
- * -------
- * 2007-12-03 Initial version (Miklos)
- */
- /** core runtime config.
- * @file cfg_core.h
- * @ingroup core
- *
- * Module: @ref core
- */
- #ifndef _CFG_CORE_H
- #define _CFG_CORE_H
- #include "cfg/cfg.h"
- extern void *core_cfg;
- /*! \brief configuration default values */
- struct cfg_group_core {
- int debug;
- int log_facility;
- int memdbg; /*!< log level for memory debugging messages */
- #ifdef USE_DST_BLACKLIST
- /* blacklist */
- int use_dst_blacklist; /*!< 1 if blacklist is enabled */
- unsigned int blst_timeout; /*!< blacklist entry ttl */
- unsigned int blst_max_mem; /*!< maximum memory used for the
- blacklist entries */
- unsigned int blst_udp_imask; /* ignore mask for udp */
- unsigned int blst_tcp_imask; /* ignore mask for tcp */
- unsigned int blst_tls_imask; /* ignore mask for tls */
- unsigned int blst_sctp_imask; /* ignore mask for sctp */
- #endif
- /* resolver */
- int dns_try_ipv6;
- int dns_try_naptr;
- int dns_udp_pref;
- int dns_tcp_pref;
- int dns_tls_pref;
- int dns_sctp_pref;
- int dns_retr_time;
- int dns_retr_no;
- int dns_servers_no;
- int dns_search_list;
- int dns_search_fmatch;
- int dns_reinit;
- int dns_naptr_ignore_rfc;
- /* DNS cache */
- #ifdef USE_DNS_CACHE
- int use_dns_cache;
- int dns_cache_flags;
- int use_dns_failover;
- int dns_srv_lb;
- unsigned int dns_neg_cache_ttl;
- unsigned int dns_cache_min_ttl;
- unsigned int dns_cache_max_ttl;
- unsigned int dns_cache_max_mem;
- int dns_cache_del_nonexp;
- int dns_cache_rec_pref;
- #endif
- #ifdef PKG_MALLOC
- int mem_dump_pkg;
- #endif
- #ifdef SHM_MEM
- int mem_dump_shm;
- #endif
- int max_while_loops;
- int udp_mtu; /*!< maximum send size for udp, if > try another protocol*/
- int udp_mtu_try_proto; /*!< if packet> udp_mtu, try proto (e.g. TCP) */
- int udp4_raw; /* use raw sockets for sending on udp ipv 4 */
- int udp4_raw_mtu; /* mtu used when using udp raw socket */
- int udp4_raw_ttl; /* ttl used when using udp raw sockets */
- int force_rport; /*!< if set rport will always be forced*/
- int memlog; /*!< log level for memory status/summary info */
- int mem_summary; /*!< display memory status/summary info on exit */
- int mem_safety; /*!< memory safety control option */
- int mem_join; /*!< memory free fragments join option */
- int corelog; /*!< log level for non-critcal core error messages */
- int latency_log; /*!< log level for latency limits messages */
- int latency_limit_db; /*!< alert limit of running db commands */
- int latency_limit_action; /*!< alert limit of running cfg actions */
- };
- extern struct cfg_group_core default_core_cfg;
- extern cfg_def_t core_cfg_def[];
- #endif /* _CFG_CORE_H */
|