|
@@ -28,7 +28,6 @@ static int w_t_release(struct sip_msg* msg, char* str, char* str2);
|
|
|
static int fixup_t_forward(void** param, int param_no);
|
|
|
static int fixup_t_forward_def(void** param, int param_no);
|
|
|
static int fixup_t_send_reply(void** param, int param_no);
|
|
|
-static void tm_destroy_module();
|
|
|
|
|
|
static struct module_exports nm_exports= {
|
|
|
"tm_module",
|
|
@@ -73,7 +72,7 @@ static struct module_exports nm_exports= {
|
|
|
},
|
|
|
8,
|
|
|
(response_function) t_on_reply_received,
|
|
|
- (destroy_function) tm_destroy_module
|
|
|
+ (destroy_function) tm_shutdown
|
|
|
};
|
|
|
|
|
|
|
|
@@ -221,9 +220,3 @@ static int w_t_release(struct sip_msg* msg, char* str, char* str2)
|
|
|
return t_release_transaction(msg);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-static void tm_destroy_module()
|
|
|
-{
|
|
|
- LOG(L_CRIT, "BUG: tm_destroy_module not implemented yet -FIX FIX FIX\n");
|
|
|
-}
|
|
|
-
|