mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-03 03:40:27 +00:00
tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1141 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
81cb064f4b
commit
d98633c11a
@ -119,6 +119,9 @@ struct private_object {
|
|||||||
uint32_t last_read;
|
uint32_t last_read;
|
||||||
char *codec_name;
|
char *codec_name;
|
||||||
uint8_t codec_num;
|
uint8_t codec_num;
|
||||||
|
switch_time_t last_cand;
|
||||||
|
char *stun_ip;
|
||||||
|
uint32_t stun_port;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rfc2833_digit {
|
struct rfc2833_digit {
|
||||||
@ -220,7 +223,12 @@ static void *SWITCH_THREAD_FUNC negotiate_thread_run(switch_thread *thread, void
|
|||||||
|
|
||||||
started = switch_time_now();
|
started = switch_time_now();
|
||||||
|
|
||||||
next_cand = switch_test_flag(tech_pvt, TFLAG_OUTBOUND) ? switch_time_now() + 5000000 : switch_time_now() + 20000000;
|
if (!tech_pvt->last_cand) {
|
||||||
|
tech_pvt->last_cand = switch_time_now();
|
||||||
|
next_cand = tech_pvt->last_cand;
|
||||||
|
} else {
|
||||||
|
next_cand = tech_pvt->last_cand + 6000000;
|
||||||
|
}
|
||||||
|
|
||||||
while(! (switch_test_flag(tech_pvt, TFLAG_CODEC_READY) && switch_test_flag(tech_pvt, TFLAG_RTP_READY))) {
|
while(! (switch_test_flag(tech_pvt, TFLAG_CODEC_READY) && switch_test_flag(tech_pvt, TFLAG_RTP_READY))) {
|
||||||
now = switch_time_now();
|
now = switch_time_now();
|
||||||
@ -272,25 +280,32 @@ static void *SWITCH_THREAD_FUNC negotiate_thread_run(switch_thread *thread, void
|
|||||||
if (!strncasecmp(advip, "stun:", 5)) {
|
if (!strncasecmp(advip, "stun:", 5)) {
|
||||||
char *stun_ip = advip + 5;
|
char *stun_ip = advip + 5;
|
||||||
|
|
||||||
if (!stun_ip) {
|
if (tech_pvt->stun_ip) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! NO STUN SERVER!\n");
|
cand[0].address = tech_pvt->stun_ip;
|
||||||
switch_channel_hangup(channel);
|
cand[0].port = tech_pvt->stun_port;
|
||||||
break;
|
} else {
|
||||||
}
|
if (!stun_ip) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! NO STUN SERVER!\n");
|
||||||
|
switch_channel_hangup(channel);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
cand[0].address = tech_pvt->profile->ip;
|
cand[0].address = tech_pvt->profile->ip;
|
||||||
if (switch_stun_lookup(&cand[0].address,
|
if (switch_stun_lookup(&cand[0].address,
|
||||||
&cand[0].port,
|
&cand[0].port,
|
||||||
stun_ip,
|
stun_ip,
|
||||||
SWITCH_STUN_DEFAULT_PORT,
|
SWITCH_STUN_DEFAULT_PORT,
|
||||||
&err,
|
&err,
|
||||||
switch_core_session_get_pool(tech_pvt->session)) != SWITCH_STATUS_SUCCESS) {
|
switch_core_session_get_pool(tech_pvt->session)) != SWITCH_STATUS_SUCCESS) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! %s:%d [%s]\n", stun_ip, SWITCH_STUN_DEFAULT_PORT, err);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! %s:%d [%s]\n", stun_ip, SWITCH_STUN_DEFAULT_PORT, err);
|
||||||
switch_channel_hangup(channel);
|
switch_channel_hangup(channel);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Success %s:%d\n", cand[0].address, cand[0].port);
|
||||||
}
|
}
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Success %s:%d\n", cand[0].address, cand[0].port);
|
|
||||||
cand[0].type = "stun";
|
cand[0].type = "stun";
|
||||||
|
tech_pvt->stun_ip = switch_core_session_strdup(tech_pvt->session, cand[0].address);
|
||||||
|
tech_pvt->stun_port = cand[0].port;
|
||||||
} else {
|
} else {
|
||||||
cand[0].type = "local";
|
cand[0].type = "local";
|
||||||
}
|
}
|
||||||
@ -1217,7 +1232,7 @@ static ldl_status handle_signalling(ldl_handle_t *handle, ldl_session_t *dlsessi
|
|||||||
unsigned int len = 0;
|
unsigned int len = 0;
|
||||||
char *err;
|
char *err;
|
||||||
|
|
||||||
|
tech_pvt->last_cand = switch_time_now();
|
||||||
if (ldl_session_get_candidates(dlsession, &candidates, &len) == LDL_STATUS_SUCCESS) {
|
if (ldl_session_get_candidates(dlsession, &candidates, &len) == LDL_STATUS_SUCCESS) {
|
||||||
unsigned int x;
|
unsigned int x;
|
||||||
|
|
||||||
@ -1279,24 +1294,29 @@ static ldl_status handle_signalling(ldl_handle_t *handle, ldl_session_t *dlsessi
|
|||||||
if (!strncasecmp(advip, "stun:", 5)) {
|
if (!strncasecmp(advip, "stun:", 5)) {
|
||||||
char *stun_ip = advip + 5;
|
char *stun_ip = advip + 5;
|
||||||
|
|
||||||
if (!stun_ip) {
|
if (tech_pvt->stun_ip) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! NO STUN SERVER!\n");
|
cand[0].address = tech_pvt->stun_ip;
|
||||||
switch_channel_hangup(channel);
|
cand[0].port = tech_pvt->stun_port;
|
||||||
break;
|
} else {
|
||||||
}
|
if (!stun_ip) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! NO STUN SERVER!\n");
|
||||||
|
switch_channel_hangup(channel);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
cand[0].address = profile->ip;
|
cand[0].address = profile->ip;
|
||||||
if (switch_stun_lookup(&cand[0].address,
|
if (switch_stun_lookup(&cand[0].address,
|
||||||
&cand[0].port,
|
&cand[0].port,
|
||||||
stun_ip,
|
stun_ip,
|
||||||
SWITCH_STUN_DEFAULT_PORT,
|
SWITCH_STUN_DEFAULT_PORT,
|
||||||
&err,
|
&err,
|
||||||
switch_core_session_get_pool(tech_pvt->session)) != SWITCH_STATUS_SUCCESS) {
|
switch_core_session_get_pool(tech_pvt->session)) != SWITCH_STATUS_SUCCESS) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! %s:%d [%s]\n", stun_ip, SWITCH_STUN_DEFAULT_PORT, err);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Failed! %s:%d [%s]\n", stun_ip, SWITCH_STUN_DEFAULT_PORT, err);
|
||||||
switch_channel_hangup(channel);
|
switch_channel_hangup(channel);
|
||||||
return LDL_STATUS_FALSE;
|
return LDL_STATUS_FALSE;
|
||||||
|
}
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Success %s:%d\n", cand[0].address, cand[0].port);
|
||||||
}
|
}
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Stun Success %s:%d\n", cand[0].address, cand[0].port);
|
|
||||||
cand[0].type = "stun";
|
cand[0].type = "stun";
|
||||||
} else {
|
} else {
|
||||||
cand[0].type = "local";
|
cand[0].type = "local";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user