mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-27 20:59:50 +00:00
FS-3386 Try this revision please
This commit is contained in:
parent
d2f76ca482
commit
2932c1fa17
@ -34,6 +34,7 @@
|
|||||||
|
|
||||||
#include "mod_spandsp.h"
|
#include "mod_spandsp.h"
|
||||||
|
|
||||||
|
#if SWITCH_MAX_INTERVAL >= 90
|
||||||
/* LPC10 - START */
|
/* LPC10 - START */
|
||||||
|
|
||||||
struct lpc10_context {
|
struct lpc10_context {
|
||||||
@ -123,7 +124,7 @@ static switch_status_t switch_lpc10_decode(switch_codec_t *codec,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* LPC10 - END */
|
/* LPC10 - END */
|
||||||
|
#endif
|
||||||
|
|
||||||
/* GSM - START */
|
/* GSM - START */
|
||||||
struct gsm_context {
|
struct gsm_context {
|
||||||
|
@ -553,7 +553,6 @@ switch_status_t sofia_on_hangup(switch_core_session_t *session)
|
|||||||
*tech_pvt->sofia_private->uuid = '\0';
|
*tech_pvt->sofia_private->uuid = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
sofia_glue_set_rtp_stats(tech_pvt);
|
sofia_glue_set_rtp_stats(tech_pvt);
|
||||||
|
|
||||||
switch_mutex_unlock(tech_pvt->sofia_mutex);
|
switch_mutex_unlock(tech_pvt->sofia_mutex);
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
* mod_sofia.h -- SOFIA SIP Endpoint
|
* mod_sofia.h -- SOFIA SIP Endpoint
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
//#define HAVE_MEMLEAK_LOG 1
|
||||||
/*Defines etc..*/
|
/*Defines etc..*/
|
||||||
/*************************************************************************************************************************************************************/
|
/*************************************************************************************************************************************************************/
|
||||||
#define MANUAL_BYE 1
|
#define MANUAL_BYE 1
|
||||||
@ -151,10 +151,11 @@ struct sofia_private {
|
|||||||
char gateway_name[256];
|
char gateway_name[256];
|
||||||
char auth_gateway_name[256];
|
char auth_gateway_name[256];
|
||||||
int destroy_nh;
|
int destroy_nh;
|
||||||
int destroy_me;
|
|
||||||
int is_call;
|
int is_call;
|
||||||
|
int got_bye;
|
||||||
int is_static;
|
int is_static;
|
||||||
sofia_dispatch_event_t *de;
|
sofia_dispatch_event_t *de;
|
||||||
|
nua_handle_t *nh;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define set_param(ptr,val) if (ptr) {free(ptr) ; ptr = NULL;} if (val) {ptr = strdup(val);}
|
#define set_param(ptr,val) if (ptr) {free(ptr) ; ptr = NULL;} if (val) {ptr = strdup(val);}
|
||||||
@ -318,7 +319,7 @@ typedef enum {
|
|||||||
} TFLAGS;
|
} TFLAGS;
|
||||||
|
|
||||||
#define SOFIA_MAX_MSG_QUEUE 51
|
#define SOFIA_MAX_MSG_QUEUE 51
|
||||||
#define SOFIA_MSG_QUEUE_SIZE 2000
|
#define SOFIA_MSG_QUEUE_SIZE 200
|
||||||
|
|
||||||
struct mod_sofia_globals {
|
struct mod_sofia_globals {
|
||||||
switch_memory_pool_t *pool;
|
switch_memory_pool_t *pool;
|
||||||
|
@ -486,12 +486,7 @@ void sofia_handle_sip_i_notify(switch_core_session_t *session, int status,
|
|||||||
|
|
||||||
end:
|
end:
|
||||||
|
|
||||||
if (sub_state == nua_substate_terminated && sofia_private && sofia_private != &mod_sofia_globals.destroy_private &&
|
return;
|
||||||
sofia_private != &mod_sofia_globals.keep_private) {
|
|
||||||
sofia_private->destroy_nh = 1;
|
|
||||||
sofia_private->destroy_me = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void sofia_handle_sip_i_bye(switch_core_session_t *session, int status,
|
void sofia_handle_sip_i_bye(switch_core_session_t *session, int status,
|
||||||
@ -561,10 +556,6 @@ void sofia_handle_sip_i_bye(switch_core_session_t *session, int status,
|
|||||||
|
|
||||||
switch_safe_free(extra_headers);
|
switch_safe_free(extra_headers);
|
||||||
|
|
||||||
if (sofia_private) {
|
|
||||||
sofia_private->destroy_me = 1;
|
|
||||||
sofia_private->destroy_nh = 1;
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@ -585,6 +576,8 @@ void sofia_handle_sip_i_bye(switch_core_session_t *session, int status,
|
|||||||
}
|
}
|
||||||
|
|
||||||
tech_pvt->got_bye = 1;
|
tech_pvt->got_bye = 1;
|
||||||
|
sofia_private->got_bye = 1;
|
||||||
|
|
||||||
switch_channel_set_variable(channel, "sip_hangup_disposition", "recv_bye");
|
switch_channel_set_variable(channel, "sip_hangup_disposition", "recv_bye");
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@ -1075,28 +1068,19 @@ static void our_sofia_event_callback(nua_event_t event,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (check_destroy) {
|
if (check_destroy) {
|
||||||
if (nh && ((sofia_private && sofia_private->destroy_nh) || !nua_handle_magic(nh))) {
|
if (0 && nh && ((sofia_private && sofia_private->destroy_nh) || !nua_handle_magic(nh))) {
|
||||||
|
|
||||||
|
printf("FUCKER2\n");
|
||||||
|
|
||||||
if (sofia_private) {
|
if (sofia_private) {
|
||||||
nua_handle_bind(nh, NULL);
|
nua_handle_bind(nh, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
nua_handle_destroy(nh);
|
nua_handle_destroy(nh);
|
||||||
nh = NULL;
|
nh = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sofia_private && sofia_private->destroy_me) {
|
|
||||||
if (tech_pvt) {
|
|
||||||
tech_pvt->sofia_private = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nh) {
|
|
||||||
nua_handle_bind(nh, NULL);
|
|
||||||
}
|
|
||||||
sofia_private->destroy_me = 12;
|
|
||||||
sofia_private_free(sofia_private);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gateway) {
|
if (gateway) {
|
||||||
sofia_reg_release_gateway(gateway);
|
sofia_reg_release_gateway(gateway);
|
||||||
}
|
}
|
||||||
@ -1115,15 +1099,22 @@ void sofia_process_dispatch_event(sofia_dispatch_event_t **dep)
|
|||||||
sofia_dispatch_event_t *de = *dep;
|
sofia_dispatch_event_t *de = *dep;
|
||||||
nua_handle_t *nh = de->nh;
|
nua_handle_t *nh = de->nh;
|
||||||
nua_t *nua = de->nua;
|
nua_t *nua = de->nua;
|
||||||
|
sofia_private_t *sofia_private = nua_handle_magic(de->nh);
|
||||||
|
|
||||||
*dep = NULL;
|
*dep = NULL;
|
||||||
|
|
||||||
|
sofia_private = nua_handle_magic(nh);
|
||||||
|
|
||||||
|
//printf("QUEUE EVENT %s\n", nua_event_name(de->data->e_event));
|
||||||
|
|
||||||
|
|
||||||
our_sofia_event_callback(de->data->e_event, de->data->e_status, de->data->e_phrase, de->nua, de->profile,
|
our_sofia_event_callback(de->data->e_event, de->data->e_status, de->data->e_phrase, de->nua, de->profile,
|
||||||
de->nh, nua_handle_magic(de->nh), de->sip, de, (tagi_t *) de->data->e_tags);
|
nh, sofia_private, de->sip, de, (tagi_t *) de->data->e_tags);
|
||||||
|
|
||||||
|
//printf("/QUEUE EVENT %s\n", nua_event_name(de->data->e_event));
|
||||||
|
|
||||||
nua_destroy_event(de->event);
|
nua_destroy_event(de->event);
|
||||||
su_free(nh->nh_home, de);
|
su_free(nh->nh_home, de);
|
||||||
|
|
||||||
nua_handle_unref(nh);
|
nua_handle_unref(nh);
|
||||||
nua_stack_unref(nua);
|
nua_stack_unref(nua);
|
||||||
}
|
}
|
||||||
@ -1222,24 +1213,55 @@ void sofia_event_callback(nua_event_t event,
|
|||||||
{
|
{
|
||||||
sofia_dispatch_event_t *de;
|
sofia_dispatch_event_t *de;
|
||||||
|
|
||||||
|
//printf("EVENT %s\n", nua_event_name(event));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (event == nua_i_terminated) {
|
||||||
|
if (sofia_private && sofia_private->nh) {
|
||||||
|
nua_handle_bind(nh, NULL);
|
||||||
|
nua_handle_destroy(sofia_private->nh);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
de = su_alloc(nh->nh_home, sizeof(*de));
|
de = su_alloc(nh->nh_home, sizeof(*de));
|
||||||
memset(de, 0, sizeof(*de));
|
memset(de, 0, sizeof(*de));
|
||||||
nua_save_event(nua, de->event);
|
nua_save_event(nua, de->event);
|
||||||
de->nh = nua_handle_ref(nh);
|
de->nh = nua_handle_ref(nh);
|
||||||
de->nh = nh;
|
|
||||||
de->data = nua_event_data(de->event);
|
de->data = nua_event_data(de->event);
|
||||||
de->sip = sip_object(de->data->e_msg);
|
de->sip = sip_object(de->data->e_msg);
|
||||||
de->profile = profile;
|
de->profile = profile;
|
||||||
de->nua = nua_stack_ref(nua);
|
de->nua = nua_stack_ref(nua);
|
||||||
|
|
||||||
|
|
||||||
|
if (event == nua_i_state) {
|
||||||
|
int ss_state = nua_callstate_init;
|
||||||
|
tl_gets(tags, NUTAG_CALLSTATE_REF(ss_state), TAG_END());
|
||||||
|
|
||||||
|
//printf("state [%s][%d]\n", nua_callstate_name(ss_state), status);
|
||||||
|
|
||||||
|
if (ss_state == nua_callstate_terminated || ss_state == nua_callstate_terminating) {
|
||||||
|
sofia_process_dispatch_event(&de);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (event == nua_i_invite && !sofia_private) {
|
if (event == nua_i_invite && !sofia_private) {
|
||||||
if (!(sofia_private = su_alloc(nh->nh_home, sizeof(*sofia_private)))) {
|
if (!(sofia_private = su_alloc(nh->nh_home, sizeof(*sofia_private)))) {
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(sofia_private, 0, sizeof(*sofia_private));
|
memset(sofia_private, 0, sizeof(*sofia_private));
|
||||||
sofia_private->is_call++;
|
sofia_private->is_call = 2;
|
||||||
sofia_private->de = de;
|
sofia_private->de = de;
|
||||||
|
sofia_private->nh = nua_handle_ref(nh);
|
||||||
nua_handle_bind(nh, sofia_private);
|
nua_handle_bind(nh, sofia_private);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1266,7 +1288,6 @@ void sofia_event_callback(nua_event_t event,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
sofia_queue_message(de);
|
sofia_queue_message(de);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4347,7 +4368,6 @@ static void sofia_handle_sip_r_options(switch_core_session_t *session, int statu
|
|||||||
|
|
||||||
if (sofia_private && !zstr(sofia_private->gateway_name)) {
|
if (sofia_private && !zstr(sofia_private->gateway_name)) {
|
||||||
gateway = sofia_reg_find_gateway(sofia_private->gateway_name);
|
gateway = sofia_reg_find_gateway(sofia_private->gateway_name);
|
||||||
sofia_private->destroy_me = 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gateway) {
|
if (gateway) {
|
||||||
@ -5067,10 +5087,6 @@ static void sofia_handle_sip_i_state(switch_core_session_t *session, int status,
|
|||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sofia_private) {
|
|
||||||
sofia_private->destroy_me = 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (session) {
|
if (session) {
|
||||||
@ -5806,21 +5822,6 @@ static void sofia_handle_sip_i_state(switch_core_session_t *session, int status,
|
|||||||
switch_channel_hangup(channel, cause);
|
switch_channel_hangup(channel, cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (ss_state == nua_callstate_terminated) {
|
|
||||||
if (tech_pvt->sofia_private) {
|
|
||||||
tech_pvt->sofia_private = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
nua_handle_unref(tech_pvt->nh);
|
|
||||||
tech_pvt->nh = NULL;
|
|
||||||
|
|
||||||
if (nh) {
|
|
||||||
nua_handle_bind(nh, NULL);
|
|
||||||
nua_handle_destroy(nh);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -7929,8 +7930,6 @@ void sofia_handle_sip_i_invite(nua_t *nua, sofia_profile_t *profile, nua_handle_
|
|||||||
switch_mutex_unlock(tech_pvt->profile->flag_mutex);
|
switch_mutex_unlock(tech_pvt->profile->flag_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
nua_handle_bind(nh, NULL);
|
|
||||||
sofia_private_free(sofia_private);
|
|
||||||
switch_core_session_destroy(&session);
|
switch_core_session_destroy(&session);
|
||||||
nua_respond(nh, 503, "Maximum Calls In Progress", SIPTAG_RETRY_AFTER_STR("300"), TAG_END());
|
nua_respond(nh, 503, "Maximum Calls In Progress", SIPTAG_RETRY_AFTER_STR("300"), TAG_END());
|
||||||
return;
|
return;
|
||||||
|
@ -2214,7 +2214,6 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session)
|
|||||||
switch_safe_free(d_url);
|
switch_safe_free(d_url);
|
||||||
return SWITCH_STATUS_FALSE;
|
return SWITCH_STATUS_FALSE;
|
||||||
}
|
}
|
||||||
nua_handle_ref(tech_pvt->nh);
|
|
||||||
|
|
||||||
if (tech_pvt->dest && (strstr(tech_pvt->dest, ";fs_nat") || strstr(tech_pvt->dest, ";received")
|
if (tech_pvt->dest && (strstr(tech_pvt->dest, ";fs_nat") || strstr(tech_pvt->dest, ";received")
|
||||||
|| ((val = switch_channel_get_variable(channel, "sip_sticky_contact")) && switch_true(val)))) {
|
|| ((val = switch_channel_get_variable(channel, "sip_sticky_contact")) && switch_true(val)))) {
|
||||||
@ -2309,6 +2308,7 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session)
|
|||||||
|
|
||||||
memset(sofia_private, 0, sizeof(*sofia_private));
|
memset(sofia_private, 0, sizeof(*sofia_private));
|
||||||
sofia_private->is_call++;
|
sofia_private->is_call++;
|
||||||
|
sofia_private->nh = nua_handle_ref(tech_pvt->nh);
|
||||||
|
|
||||||
tech_pvt->sofia_private = sofia_private;
|
tech_pvt->sofia_private = sofia_private;
|
||||||
switch_copy_string(tech_pvt->sofia_private->uuid, switch_core_session_get_uuid(session), sizeof(tech_pvt->sofia_private->uuid));
|
switch_copy_string(tech_pvt->sofia_private->uuid, switch_core_session_get_uuid(session), sizeof(tech_pvt->sofia_private->uuid));
|
||||||
|
@ -1790,8 +1790,12 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
|
|||||||
switch_safe_free(pl);
|
switch_safe_free(pl);
|
||||||
switch_safe_free(to);
|
switch_safe_free(to);
|
||||||
|
|
||||||
if (nh && kill_handle) {
|
if (nh) {
|
||||||
|
if (kill_handle) {
|
||||||
nua_handle_destroy(nh);
|
nua_handle_destroy(nh);
|
||||||
|
} else {
|
||||||
|
nua_handle_unref(nh);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@ -1841,6 +1845,10 @@ static int sofia_presence_mwi_callback(void *pArg, int argc, char **argv, char *
|
|||||||
|
|
||||||
end:
|
end:
|
||||||
|
|
||||||
|
if (nh) {
|
||||||
|
nua_handle_unref(nh);
|
||||||
|
}
|
||||||
|
|
||||||
if (ext_profile) {
|
if (ext_profile) {
|
||||||
sofia_glue_release_profile(ext_profile);
|
sofia_glue_release_profile(ext_profile);
|
||||||
}
|
}
|
||||||
@ -1931,6 +1939,8 @@ static int broadsoft_sla_notify_callback(void *pArg, int argc, char **argv, char
|
|||||||
nua_notify(nh,
|
nua_notify(nh,
|
||||||
SIPTAG_EXPIRES_STR("0"),
|
SIPTAG_EXPIRES_STR("0"),
|
||||||
SIPTAG_SUBSCRIPTION_STATE_STR("terminated;reason=noresource"), SIPTAG_EVENT_STR("line-seize"), SIPTAG_CALL_INFO_STR(tmp), TAG_END());
|
SIPTAG_SUBSCRIPTION_STATE_STR("terminated;reason=noresource"), SIPTAG_EVENT_STR("line-seize"), SIPTAG_CALL_INFO_STR(tmp), TAG_END());
|
||||||
|
|
||||||
|
nua_handle_unref(nh);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1939,6 +1949,7 @@ static int broadsoft_sla_notify_callback(void *pArg, int argc, char **argv, char
|
|||||||
TAG_IF(*expires_str, SIPTAG_EXPIRES_STR(expires_str)),
|
TAG_IF(*expires_str, SIPTAG_EXPIRES_STR(expires_str)),
|
||||||
SIPTAG_SUBSCRIPTION_STATE_STR(sstr), SIPTAG_EVENT_STR("call-info"), SIPTAG_CALL_INFO_STR(tmp), TAG_END());
|
SIPTAG_SUBSCRIPTION_STATE_STR(sstr), SIPTAG_EVENT_STR("call-info"), SIPTAG_CALL_INFO_STR(tmp), TAG_END());
|
||||||
|
|
||||||
|
nua_handle_unref(nh);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@ -2629,6 +2640,7 @@ static int sofia_counterpath_crutch(void *pArg, int argc, char **argv, char **co
|
|||||||
SIPTAG_EXPIRES_STR(expstr),
|
SIPTAG_EXPIRES_STR(expstr),
|
||||||
SIPTAG_SUBSCRIPTION_STATE_STR(sstr), SIPTAG_EVENT_STR(event_type),
|
SIPTAG_SUBSCRIPTION_STATE_STR(sstr), SIPTAG_EVENT_STR(event_type),
|
||||||
SIPTAG_CONTENT_TYPE_STR("application/pidf+xml"), SIPTAG_PAYLOAD_STR(pl), TAG_END());
|
SIPTAG_CONTENT_TYPE_STR("application/pidf+xml"), SIPTAG_PAYLOAD_STR(pl), TAG_END());
|
||||||
|
nua_handle_unref(nh);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -54,8 +54,9 @@ static void sofia_reg_new_handle(sofia_gateway_t *gateway_ptr, int attach)
|
|||||||
NUTAG_CALLSTATE_REF(ss_state), SIPTAG_FROM_STR(gateway_ptr->register_from), TAG_END());
|
NUTAG_CALLSTATE_REF(ss_state), SIPTAG_FROM_STR(gateway_ptr->register_from), TAG_END());
|
||||||
if (attach) {
|
if (attach) {
|
||||||
if (!gateway_ptr->sofia_private) {
|
if (!gateway_ptr->sofia_private) {
|
||||||
gateway_ptr->sofia_private = malloc(sizeof(*gateway_ptr->sofia_private));
|
if (!(gateway_ptr->sofia_private = su_alloc(gateway_ptr->nh->nh_home, sizeof(*gateway_ptr->sofia_private)))) {
|
||||||
switch_assert(gateway_ptr->sofia_private);
|
abort();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
memset(gateway_ptr->sofia_private, 0, sizeof(*gateway_ptr->sofia_private));
|
memset(gateway_ptr->sofia_private, 0, sizeof(*gateway_ptr->sofia_private));
|
||||||
|
|
||||||
@ -186,9 +187,10 @@ void sofia_sub_check_gateway(sofia_profile_t *profile, time_t now)
|
|||||||
NUTAG_CALLSTATE_REF(ss_state), SIPTAG_FROM_STR(gateway_ptr->register_from), TAG_END());
|
NUTAG_CALLSTATE_REF(ss_state), SIPTAG_FROM_STR(gateway_ptr->register_from), TAG_END());
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "subscribing to [%s] on gateway [%s]\n", gw_sub_ptr->event, gateway_ptr->name);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "subscribing to [%s] on gateway [%s]\n", gw_sub_ptr->event, gateway_ptr->name);
|
||||||
|
|
||||||
gateway_ptr->sofia_private = malloc(sizeof(*gateway_ptr->sofia_private));
|
|
||||||
switch_assert(gateway_ptr->sofia_private);
|
|
||||||
|
|
||||||
|
if (!(gateway_ptr->sofia_private = su_alloc(gateway_ptr->sub_nh->nh_home, sizeof(*gateway_ptr->sofia_private)))) {
|
||||||
|
abort();
|
||||||
|
}
|
||||||
memset(gateway_ptr->sofia_private, 0, sizeof(*gateway_ptr->sofia_private));
|
memset(gateway_ptr->sofia_private, 0, sizeof(*gateway_ptr->sofia_private));
|
||||||
|
|
||||||
gateway_ptr->sofia_private->gateway = gateway_ptr;
|
gateway_ptr->sofia_private->gateway = gateway_ptr;
|
||||||
@ -290,7 +292,6 @@ void sofia_reg_check_gateway(sofia_profile_t *profile, time_t now)
|
|||||||
if (gateway_ptr->ping && !gateway_ptr->pinging && (now >= gateway_ptr->ping && (ostate == REG_STATE_NOREG || ostate == REG_STATE_REGED)) &&
|
if (gateway_ptr->ping && !gateway_ptr->pinging && (now >= gateway_ptr->ping && (ostate == REG_STATE_NOREG || ostate == REG_STATE_REGED)) &&
|
||||||
!gateway_ptr->deleted) {
|
!gateway_ptr->deleted) {
|
||||||
nua_handle_t *nh = nua_handle(profile->nua, NULL, NUTAG_URL(gateway_ptr->register_url), TAG_END());
|
nua_handle_t *nh = nua_handle(profile->nua, NULL, NUTAG_URL(gateway_ptr->register_url), TAG_END());
|
||||||
sofia_private_t *pvt;
|
|
||||||
|
|
||||||
register_host = sofia_glue_get_register_host(gateway_ptr->register_proxy);
|
register_host = sofia_glue_get_register_host(gateway_ptr->register_proxy);
|
||||||
|
|
||||||
@ -301,13 +302,7 @@ void sofia_reg_check_gateway(sofia_profile_t *profile, time_t now)
|
|||||||
|
|
||||||
switch_safe_free(register_host);
|
switch_safe_free(register_host);
|
||||||
|
|
||||||
pvt = malloc(sizeof(*pvt));
|
nua_handle_bind(nh, &mod_sofia_globals.destroy_private);
|
||||||
switch_assert(pvt);
|
|
||||||
memset(pvt, 0, sizeof(*pvt));
|
|
||||||
pvt->destroy_nh = 1;
|
|
||||||
pvt->destroy_me = 1;
|
|
||||||
switch_copy_string(pvt->gateway_name, gateway_ptr->name, sizeof(pvt->gateway_name));
|
|
||||||
nua_handle_bind(nh, pvt);
|
|
||||||
|
|
||||||
gateway_ptr->pinging = 1;
|
gateway_ptr->pinging = 1;
|
||||||
nua_options(nh,
|
nua_options(nh,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user