Module: kamailio Branch: master Commit: fe7b9786f5e09735eea25e4f8e70ba694f8c0475 URL: https://github.com/kamailio/kamailio/commit/fe7b9786f5e09735eea25e4f8e70ba694f8c0475
Author: jaybeepee <[email protected]> Committer: jaybeepee <[email protected]> Date: 2015-07-16T09:36:18+02:00 modules/tm: unset async suspended transaction flag post-continue --- Modified: modules/tm/t_suspend.c --- Diff: https://github.com/kamailio/kamailio/commit/fe7b9786f5e09735eea25e4f8e70ba694f8c0475.diff Patch: https://github.com/kamailio/kamailio/commit/fe7b9786f5e09735eea25e4f8e70ba694f8c0475.patch --- diff --git a/modules/tm/t_suspend.c b/modules/tm/t_suspend.c index 86fb3be..64f9af8 100644 --- a/modules/tm/t_suspend.c +++ b/modules/tm/t_suspend.c @@ -437,6 +437,10 @@ int t_continue(unsigned int hash_index, unsigned int label, sip_msg_free(t->uac[branch].reply); t->uac[branch].reply = 0; } + + t->flags &= ~T_ASYNC_SUSPENDED; /*This transaction is no longer suspended so unsetting the SUSPEND flag*/ + + return 0; kill_trans: _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
