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

📄 grouprad_mod.c

📁 用来作为linux中SIP SERVER,完成VOIP网络电话中服务器的功能
💻 C
字号:
/*  * $Id: grouprad_mod.c,v 1.10.2.1 2005/06/17 11:26:36 janakj Exp $  * * Group membership - module interface * * 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-02-25 - created by janakj *  2003-03-16 - flags export parameter added (janakj) *  2003-03-19  all mallocs/frees replaced w/ pkg_malloc/pkg_free */#include <string.h>#include <stdlib.h>#ifdef RADIUSCLIENT_NG_4#  include <radiusclient.h>#else#  include <radiusclient-ng.h>#endif#include "../../error.h"#include "../../dprint.h"#include "../../sr_module.h"#include "../../mem/mem.h"#include "../../modules/acc/dict.h"#include "grouprad_mod.h"#include "group.h"MODULE_VERSIONvoid *rh;struct attr attrs[A_MAX];struct val vals[V_MAX];static int mod_init(void); /* Module initialization function */static int hf_fixup(void** param, int param_no); /* Header field fixup *//* * Module parameter variables */static char* radius_config = "/usr/local/etc/radiusclient/radiusclient.conf";int use_domain = 0;  /* By default we use domain *//* * Exported functions */static cmd_export_t cmds[] = {	{"radius_is_user_in", radius_is_user_in, 2, hf_fixup, REQUEST_ROUTE},	{0, 0, 0, 0, 0}};/* * Exported parameters */static param_export_t params[] = {	{"radius_config", STR_PARAM, &radius_config},	{"use_domain",    INT_PARAM, &use_domain   },	{0, 0, 0}};/* * Module interface */struct module_exports exports = {	"group_radius", 	cmds,       /* Exported functions */	params,     /* Exported parameters */	mod_init,   /* module initialization function */	0,          /* response function */	0,          /* destroy function */	0,          /* oncancel function */	0           /* child initialization function */};static int mod_init(void){	DBG("group_radius - initializing\n");	memset(attrs, 0, sizeof(attrs));	memset(attrs, 0, sizeof(vals));	attrs[A_SERVICE_TYPE].n	= "Service-Type";	attrs[A_USER_NAME].n	= "User-Name";	attrs[A_SIP_GROUP].n    = "Sip-Group";	vals[V_GROUP_CHECK].n	= "Group-Check";	if ((rh = rc_read_config(radius_config)) == NULL) {		LOG(L_ERR, "group_radius: Error opening configuration file \n");		return -1;	}    	if (rc_read_dictionary(rh, rc_conf_str(rh, "dictionary")) != 0) {		LOG(L_ERR, "group_radius: Error opening dictionary file \n");		return -2;	}	INIT_AV(rh, attrs, vals, "group_radius", -3, -4);	return 0;}/* * Convert HF description string to hdr_field pointer * * Supported strings:  * "Request-URI", "To", "From", "Credentials" */static int hf_fixup(void** param, int param_no){	void* ptr;	str* s;	if (param_no == 1) {		ptr = *param;				if (!strcasecmp((char*)*param, "Request-URI")) {			*param = (void*)1;		} else if (!strcasecmp((char*)*param, "To")) {			*param = (void*)2;		} else if (!strcasecmp((char*)*param, "From")) {			*param = (void*)3;		} else if (!strcasecmp((char*)*param, "Credentials")) {			*param = (void*)4;		} else {			LOG(L_ERR, "hf_fixup(): Unsupported Header Field identifier\n");			return E_UNSPEC;		}		pkg_free(ptr);	} else if (param_no == 2) {		s = (str*)pkg_malloc(sizeof(str));		if (!s) {			LOG(L_ERR, "hf_fixup(): No memory left\n");			return E_UNSPEC;		}		s->s = (char*)*param;		s->len = strlen(s->s);		*param = (void*)s;	}	return 0;}

⌨️ 快捷键说明

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