Module: sip-router Branch: sr_3.0 Commit: 04a122388dc9906a7eed887ebb6898618291f36f URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=04a122388dc9906a7eed887ebb6898618291f36f
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: Fri Nov 6 12:30:31 2009 +0100 rls(k): set callback type for local requests - type has to be TMCB_LOCAL_COMPLETED to execute transaction callback (cherry picked from commit dfefc8a15e9b059cf16d4930d12437948307568a) --- modules_k/rls/notify.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules_k/rls/notify.c b/modules_k/rls/notify.c index 9734d6c..85c62a4 100644 --- a/modules_k/rls/notify.c +++ b/modules_k/rls/notify.c @@ -686,8 +686,8 @@ int rls_send_notify(subs_t* subs, str* body, char* start_cid, } LM_DBG("str_hdr= %.*s\n", str_hdr->len, str_hdr->s); - set_uac_req(&uac_r, &met, str_hdr, body, td, 0, rls_notify_callback, - (void*)cb_param); + set_uac_req(&uac_r, &met, str_hdr, body, td, TMCB_LOCAL_COMPLETED, + rls_notify_callback, (void*)cb_param); rt = tmb.t_request_within(&uac_r); if(rt < 0) _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
