Exemplo n.º 1
0
static int w_t_precheck_trans(sip_msg_t *msg, char *p1, char *p2)
{
	int ret;

	ret = tmx_check_pretran(msg);
	if(ret>0)
		return 1;
	return (ret-1);
}
Exemplo n.º 2
0
static int t_precheck_trans(sip_msg_t *msg)
{
	int ret;

	ret = tmx_check_pretran(msg);
	if(ret>0)
		return 1;
	return (ret-1);
}