| 1747 | |
| 1748 | |
| 1749 | static int w_t_wait_no_more_branches(struct sip_msg* msg) |
| 1750 | { |
| 1751 | struct cell *t; |
| 1752 | |
| 1753 | t=get_t(); |
| 1754 | |
| 1755 | if (t==NULL || t==T_UNDEFINED) { |
| 1756 | /* no transaction */ |
| 1757 | return -1; |
| 1758 | } |
| 1759 | |
| 1760 | if (t_wait_no_more_branches(t, 0)<0) |
| 1761 | return -1; |
| 1762 | |
| 1763 | return 1; |
| 1764 | } |
| 1765 | |
| 1766 | |
| 1767 | static int api_t_wait_no_more_branches(void) |
nothing calls this directly
no test coverage detected