1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/*
* $Id$
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* --------
* 2003-03-06 voicemail changes accepted (jiri)
* 2003-04-14 t_relay_to split in udp and tcp (jiri)
*/
#include "defs.h"
#include "tm_load.h"
#include "uac.h"
#define LOAD_ERROR "ERROR: tm_bind: TM module function "
int tm_init = 0;
int load_tm( struct tm_binds *tmb)
{
if (!tm_init) {
LOG(L_ERR, "tm:load_tm: Module not initialized yet,"
" make sure that all modules that need"
" tm module are loaded after tm in the configuration file\n");
return -1;
}
memset(tmb, 0, sizeof(struct tm_binds));
/* exported to cfg */
if (!( tmb->t_newtran=(tnewtran_f)find_export("t_newtran", 0, 0)) ) {
LOG(L_ERR, LOAD_ERROR "'t_newtran' not found\n");
return -1;
}
#ifdef USE_TCP
if (!( tmb->t_relay_to_tcp=find_export("t_relay_to_tcp", 2, 0)) ) {
LOG(L_ERR, LOAD_ERROR "'t_relay_to_tcp' not found\n");
return -1;
}
#endif
if (!( tmb->t_relay_to_udp=find_export("t_relay_to_udp", 2, 0)) ) {
LOG(L_ERR, LOAD_ERROR "'t_relay_to_udp' not found\n");
return -1;
}
if (!( tmb->t_relay=find_export("t_relay", 0, 0)) ) {
LOG(L_ERR, LOAD_ERROR "'t_relay' not found\n");
return -1;
}
if (!(tmb->t_forward_nonack=(tfwd_f)find_export("t_forward_nonack",2,0))) {
LOG( L_ERR, LOAD_ERROR "'t_forward_nonack' not found\n");
return -1;
}
if (!(tmb->t_release=(trelease_f)find_export("t_release",0,0))) {
LOG( L_ERR, LOAD_ERROR "'t_release' not found\n");
return -1;
}
/* if (!(tmb->t_reply=(treply_f)find_export(T_REPLY, 2, 0)) ) {
LOG( L_ERR, LOAD_ERROR "'t_reply' not found\n");
return -1;
}*/
/* non-cfg API */
tmb->t_replicate = t_replicate_uri;
tmb->register_tmcb =register_tmcb;
tmb->t_reply = w_t_reply_wrp;
tmb->t_reply_with_body = t_reply_with_body;
tmb->t_reply_trans = t_reply;
tmb->t_is_local = t_is_local;
tmb->t_get_trans_ident = t_get_trans_ident;
tmb->t_lookup_ident = t_lookup_ident;
tmb->t_addblind = add_blind_uac;
tmb->t_request_within = req_within;
tmb->t_request_outside = req_outside;
tmb->t_request = request;
tmb->new_dlg_uac = new_dlg_uac;
tmb->dlg_response_uac = dlg_response_uac;
tmb->new_dlg_uas = new_dlg_uas;
tmb->update_dlg_uas = update_dlg_uas;
tmb->dlg_request_uas = dlg_request_uas;
tmb->set_dlg_target = set_dlg_target;
tmb->free_dlg = free_dlg;
tmb->print_dlg = print_dlg;
tmb->t_gett = get_t;
tmb->t_gett_branch = get_t_branch;
tmb->t_sett = set_t;
tmb->calculate_hooks = w_calculate_hooks;
tmb->t_uac = t_uac;
tmb->t_uac_with_ids = t_uac_with_ids;
tmb->t_unref = t_unref;
tmb->run_failure_handlers = run_failure_handlers;
tmb->run_branch_failure_handlers = run_branch_failure_handlers;
tmb->cancel_uacs = cancel_uacs;
tmb->cancel_all_uacs = cancel_all_uacs;
tmb->prepare_request_within = prepare_req_within;
tmb->send_prepared_request = send_prepared_request;
tmb->dlg_add_extra = dlg_add_extra;
tmb->t_cancel_uac = t_uac_cancel;
#ifdef DIALOG_CALLBACKS
tmb->register_new_dlg_cb=register_new_dlg_cb;
tmb->register_dlg_tmcb=register_dlg_tmcb;
#endif
#ifdef WITH_AS_SUPPORT
tmb->ack_local_uac = ack_local_uac;
tmb->t_get_canceled_ident = t_get_canceled_ident;
#endif
tmb->t_suspend = t_suspend;
tmb->t_continue = t_continue;
tmb->t_cancel_suspend = t_cancel_suspend;
tmb->t_get_reply_totag = t_get_reply_totag;
tmb->t_get_picked_branch = t_get_picked_branch;
tmb->t_lookup_callid = t_lookup_callid;
tmb->generate_callid = generate_callid;
tmb->generate_fromtag = generate_fromtag;
tmb->t_lookup_request = t_lookup_request;
tmb->t_lookup_original = t_lookupOriginalT;
tmb->t_check = t_check;
tmb->unref_cell = unref_cell;
tmb->prepare_to_cancel = prepare_to_cancel;
tmb->get_stats = tm_get_stats;
tmb->get_table = tm_get_table;
#ifdef WITH_TM_CTX
tmb->tm_ctx_get = tm_ctx_get;
#endif
tmb->t_append_branches = t_append_branches;
return 1;
}
int load_xtm(tm_xapi_t *xapi)
{
if(xapi==NULL)
{
LM_ERR("invalid parameter\n");
return -1;
}
memset(xapi, 0, sizeof(tm_xapi_t));
xapi->t_on_failure = t_on_failure;
xapi->t_on_branch = t_on_branch;
xapi->t_on_reply = t_on_reply;
xapi->t_check_trans = t_check_trans;
xapi->t_is_canceled = t_is_canceled;
return 0;
}
|