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

📄 t_hooks.c

📁 用来作为linux中SIP SERVER,完成VOIP网络电话中服务器的功能
💻 C
字号:
/* * $Id: t_hooks.c,v 1.17 2004/12/04 10:39:00 andrei Exp $ * * 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-19  replaced all the mallocs/frees w/ pkg_malloc/pkg_free (andrei) *  2003-12-04  global callbacks moved into transaction callbacks; *              multiple events per callback added; single list per *              transaction for all its callbacks (bogdan) *  2004-08-23  user avp(attribute value pair) added -> making avp list *              available in callbacks (bogdan) */#include "defs.h"#include "stdlib.h"#include "../../dprint.h"#include "../../error.h"#include "../../mem/mem.h"#include "../../usr_avp.h"#include "t_hooks.h"#include "t_lookup.h"#include "t_funcs.h"struct tmcb_head_list* req_in_tmcb_hl = 0;int init_tmcb_lists(){	req_in_tmcb_hl = (struct tmcb_head_list*)shm_malloc		( sizeof(struct tmcb_head_list) );	if (req_in_tmcb_hl==0) {		LOG(L_CRIT,"ERROR:tm:init_tmcb_lists: no more shared mem\n");		return -1;	}	req_in_tmcb_hl->first = 0;	req_in_tmcb_hl->reg_types = 0;	return 1;}void destroy_tmcb_lists(){	struct tm_callback *cbp, *cbp_tmp;	if (!req_in_tmcb_hl)		return;	for( cbp=req_in_tmcb_hl->first; cbp ; ) {		cbp_tmp = cbp;		cbp = cbp->next;		if (cbp_tmp->param) shm_free( cbp_tmp->param );		shm_free( cbp_tmp );	}	shm_free(req_in_tmcb_hl);}int insert_tmcb(struct tmcb_head_list *cb_list, int types,									transaction_cb f, void *param ){	struct tm_callback *cbp;	/* build a new callback structure */	if (!(cbp=shm_malloc( sizeof( struct tm_callback)))) {		LOG(L_ERR, "ERROR:tm:insert_tmcb: out of shm. mem\n");		return E_OUT_OF_MEM;	}	/* link it into the proper place... */	cbp->next = cb_list->first;	cb_list->first = cbp;	cb_list->reg_types |= types;	/* ... and fill it up */	cbp->callback = f;	cbp->param = param;	cbp->types = types;	if (cbp->next)		cbp->id = cbp->next->id+1;	else		cbp->id = 0;	return 1;}/* register a callback function 'f' for 'types' mask of events; * will be called back whenever one of the events occurs in transaction module * (global or per transaction, depending of event type)*/int register_tmcb( struct sip_msg* p_msg, struct cell *t, int types,											transaction_cb f, void *param ){	//struct cell* t;	struct tmcb_head_list *cb_list;	/* are the callback types valid?... */	if ( types<0 || types>TMCB_MAX ) {		LOG(L_CRIT, "BUG:tm:register_tmcb: invalid callback types: mask=%d\n",			types);		return E_BUG;	}	/* we don't register null functions */	if (f==0) {		LOG(L_CRIT, "BUG:tm:register_tmcb: null callback function\n");		return E_BUG;	}	if (types&TMCB_REQUEST_IN) {		if (types!=TMCB_REQUEST_IN) {			LOG(L_CRIT, "BUG:tm:register_tmcb: callback type TMCB_REQUEST_IN "				"can't be register along with types\n");			return E_BUG;		}		cb_list = req_in_tmcb_hl;	} else {		if (!t) {			if (!p_msg) {				LOG(L_CRIT,"BUG:tm:register_tmcb: no sip_msg, nor transaction"					" given\n");				return E_BUG;			}			/* look for the transaction */			if ( t_check(p_msg,0)!=1 ){				LOG(L_CRIT,"BUG:tm:register_tmcb: no transaction found\n");				return E_BUG;			}			if ( (t=get_t())==0 ) {				LOG(L_CRIT,"BUG:tm:register_tmcb: transaction found "					"is NULL\n");				return E_BUG;			}		}		cb_list = &(t->tmcb_hl);	}	return insert_tmcb( cb_list, types, f, param );}void run_trans_callbacks( int type , struct cell *trans,						struct sip_msg *req, struct sip_msg *rpl, int code ){	static struct tmcb_params params = {0,0,0,0};	struct tm_callback    *cbp;	struct usr_avp **backup;	params.req = req;	params.rpl = rpl;	params.code = code;	if (trans->tmcb_hl.first==0 || ((trans->tmcb_hl.reg_types)&type)==0 )		return;	backup = set_avp_list( &trans->user_avps );	for (cbp=trans->tmcb_hl.first; cbp; cbp=cbp->next)  {		if ( (cbp->types)&type ) {			DBG("DBG: trans=%p, callback type %d, id %d entered\n",				trans, type, cbp->id );			params.param = &(cbp->param);			cbp->callback( trans, type, &params );		}	set_avp_list( backup );	}}void run_reqin_callbacks( struct cell *trans, struct sip_msg *req, int code ){	static struct tmcb_params params = {0,0,0,0};	struct tm_callback    *cbp;	struct usr_avp **backup;	params.req = req;	params.code = code;	if (req_in_tmcb_hl->first==0)		return;	backup = set_avp_list( &trans->user_avps );	for (cbp=req_in_tmcb_hl->first; cbp; cbp=cbp->next)  {		DBG("DBG: trans=%p, callback type %d, id %d entered\n",			trans, cbp->types, cbp->id );		params.param = &(cbp->param);		cbp->callback( trans, cbp->types, &params );	}	set_avp_list( backup );}

⌨️ 快捷键说明

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