/* * $Id: path_mod.c 1282 2006-11-28 15:49:10Z miconda $ * * Path handling for intermediate proxies * * Copyright (C) 2006 Inode GmbH (Andreas Granig ) * * 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 * */ #include #include #include #include "../../sr_module.h" #include "../../mem/mem.h" #include "../rr/api.h" #include "path.h" #include "path_mod.h" MODULE_VERSION /* If received-param of current Route uri should be used * as dst-uri. */ int use_received = 0; /* * Module destroy function prototype */ static void destroy(void); /* * Module child-init function prototype */ static int child_init(int rank); /* * Module initialization function prototype */ static int mod_init(void); /* * char* to str conversion */ static int str_fixup(void** param, int param_no); /* * rr callback API */ struct rr_binds path_rrb; /* * Exported functions */ static cmd_export_t cmds[] = { { "add_path", add_path, 0, 0, REQUEST_ROUTE }, { "add_path", add_path_usr, 1, str_fixup, REQUEST_ROUTE }, { "add_path_received", add_path_received, 0, 0, REQUEST_ROUTE }, { "add_path_received", add_path_received_usr, 1, str_fixup, REQUEST_ROUTE }, { 0, 0, 0, 0, 0 } }; /* * Exported parameters */ static param_export_t params[] = { {"use_received", INT_PARAM, &use_received }, { 0, 0, 0 } }; /* * Module interface */ struct module_exports exports = { "path", DEFAULT_DLFLAGS, /* dlopen flags */ cmds, /* Exported functions */ params, /* Exported parameters */ 0, /* exported statistics */ 0, /* exported MI functions */ 0, /* exported pseudo-variables */ mod_init, /* module initialization function */ 0, /* response function */ destroy, /* destroy function */ child_init /* child initialization function */ }; static int child_init(int rank) { return 0; } static int mod_init(void) { DBG("path module - initializing\n"); if (use_received) { if (load_rr_api(&path_rrb) != 0) { LOG(L_ERR, "ERROR: path: mod_init: Error loading rr-API\n"); return -1; } if (path_rrb.register_rrcb(path_rr_callback, 0) != 0) { LOG(L_ERR, "ERROR: path: mod_init: Error registering rr callback\n"); return -1; } } return 0; } static void destroy(void) { } /* * Convert char* parameter to str* parameter * Taken from modules/rr/rr_mod.c */ static int str_fixup(void** param, int param_no) { str* s; if (param_no == 1) { s = (str*)pkg_malloc(sizeof(str)); if (!s) { LOG(L_ERR, "str_fixup(): No memory left\n"); return E_UNSPEC; } s->s = (char*)*param; s->len = strlen(s->s); *param = (void*)s; } return 0; }