예제 #1
0
파일: dispatcher.c 프로젝트: Danfx/opensips
static int w_ds_next_domain(struct sip_msg *msg, char *part_param)
{
	ds_partition_t *partition;

	GET_AND_CHECK_PARTITION(part_param, partition);
	return ds_next_dst(msg, 1, partition);
}
예제 #2
0
static int w_ds_next_domain(struct sip_msg *msg, char *str1, char *str2)
{
	return ds_next_dst(msg, 1/*set host port*/);
}
예제 #3
0
static int w_ds_next_dst(struct sip_msg *msg, char *str1, char *str2)
{
	return ds_next_dst(msg, 0/*set dst uri*/);
}