⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.h

📁 性能优秀的SIP Proxy
💻 H
字号:
/* * $Id: config.h,v 1.3 2006/03/13 12:29:46 bogdan_iancu Exp $ * * Copyright (C) 2001-2003 FhG Fokus * * This file is part of openser, a free SIP server. * * openser 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 * * openser 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#ifndef _TM_CONFIG_H#define _TM_CONFIG_H/* hash table engine and hash function*/#include "../../hash_func.h"#include "../../config.h"/* always use a power of 2 for hash table size */#define tm_hash( s1, s2 )     core_hash( &s1, &s2, TM_TABLE_ENTRIES)/* maximum length of localy generated acknowledgment */#define MAX_ACK_LEN   1024/* FINAL_RESPONSE_TIMER ... tells how long should the transaction engine   wait if no final response comes back*/#define FR_TIME_OUT       30#define INV_FR_TIME_OUT   120/* WAIT timer ... tells how long state should persist in memory after   a transaction was finalized*/#define WT_TIME_OUT       5/* DELETE timer ... tells how long should the transaction persist in memory   after it was removed from the hash table and before it will be deleted */#define DEL_TIME_OUT      2 /* retransmission timers */#define RETR_T1           1#define RETR_T2           4/* when first reply is sent, this additional space is allocated so that   one does not have to reallocate share memory when the message is   replaced by a subsequent, longer message*/#define REPLY_OVERBUFFER_LEN 160#define TAG_OVERBUFFER_LEN 32/* dimensions of FIFO server */#define MAX_METHOD	64#define MAX_HEADER	1024#define MAX_BODY	1024#define MAX_DST	512#define MAX_FROM 512/* messages generated by server */#define CANCELING "canceling"#define CANCEL_DONE "ok -- no more pending branches"#define CANCELED "Request canceled"/* to-tag separator for stateful processing */#define TM_TAG_SEPARATOR '-'/* FIFO substitution character */#define SUBST_CHAR '!'#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -