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

📄 sl.c

📁 用来作为linux中SIP SERVER,完成VOIP网络电话中服务器的功能
💻 C
字号:
/* * $Id: sl.c,v 1.18.2.1 2005/03/01 11:24:21 bogdan Exp $ * * sl module * * * ************************************************ * * * Bogdan's Source Memorial                       * * *                                                * * * Welcome, pilgrim! This is one of rare places  * * * kept untouched in memory of brave heart,       * * * Bogdan, one of most active ser contributors,   * * * and winner of the longest line of code content.* * *                                                * * * Please, preserve this codework heritage, as    * * * most of other work has been smashed away during* * * extensive clean-up floods.                     * * *                                                * * * Hereby, we solicit you to adopt this historical* * * piece of code. For $100, your name will be     * * * be printed in this banner and we will use      * * * collected funds to create and display an ASCII * * * statue of Bogdan.                              * * ************************************************** * * * Copyright (C) 2001-2003 FhG Fokus * * 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: *    info@iptel.org * * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA *//* * History: * -------- *  2003-03-11  updated to the new module exports interface (andrei) *  2003-03-16  flags export parameter added (janakj) *  2003-03-19  all mallocs/frees replaced w/ pkg_malloc/pkg_free *  2005-03-01  force for stateless replies the incoming interface of *              the request (bogdan) */#include <stdio.h>#include <string.h>#include <stdlib.h>#include "../../sr_module.h"#include "../../dprint.h"#include "../../error.h"#include "../../ut.h"#include "../../script_cb.h"#include "../../mem/mem.h"#include "sl_stats.h"#include "sl_funcs.h"MODULE_VERSIONstatic int w_sl_send_reply(struct sip_msg* msg, char* str, char* str2);static int w_sl_reply_error(struct sip_msg* msg, char* str, char* str2);static int fixup_sl_send_reply(void** param, int param_no);static int mod_init(void);static void mod_destroy();static cmd_export_t cmds[]={	{"sl_send_reply",  w_sl_send_reply,  2, fixup_sl_send_reply, REQUEST_ROUTE},	{"sl_reply_error", w_sl_reply_error, 0, 0,                   REQUEST_ROUTE},	{0,0,0,0,0}};#ifdef STATIC_SLstruct module_exports sl_exports = {#elsestruct module_exports exports= {#endif	"sl_module",	cmds,	0, /* param exports */		mod_init,   /* module initialization function */	(response_function) 0,	mod_destroy,	0,	0  /* per-child init function */};static int mod_init(void){	fprintf(stderr, "stateless - initializing\n");	if (init_sl_stats()<0) {		LOG(L_ERR, "ERROR: init_sl_stats failed\n");		return -1;	}	/* if SL loaded, filter ACKs on beginning */	register_script_cb( sl_filter_ACK, PRE_SCRIPT_CB, 0 );	sl_startup();	return 0;}static void mod_destroy(){	sl_stats_destroy();	sl_shutdown();}static int fixup_sl_send_reply(void** param, int param_no){	unsigned long code;	int err;	if (param_no==1){		code=str2s(*param, strlen(*param), &err);		if (err==0){			pkg_free(*param);			*param=(void*)code;			return 0;		}else{			LOG(L_ERR, "SL module:fixup_sl_send_reply: bad  number <%s>\n",					(char*)(*param));			return E_UNSPEC;		}	}	return 0;}static int w_sl_send_reply(struct sip_msg* msg, char* str, char* str2){	return sl_send_reply(msg,(unsigned int)(unsigned long)str,str2);}static int w_sl_reply_error( struct sip_msg* msg, char* str, char* str2){	return sl_reply_error( msg );}

⌨️ 快捷键说明

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