FS-6890 #comment please test
This commit is contained in:
parent
c79360c596
commit
a279bf38af
|
@ -1559,7 +1559,6 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
|
||||||
if (ok) {
|
if (ok) {
|
||||||
char *headers = sofia_glue_get_extra_headers(channel, SOFIA_SIP_INFO_HEADER_PREFIX);
|
char *headers = sofia_glue_get_extra_headers(channel, SOFIA_SIP_INFO_HEADER_PREFIX);
|
||||||
const char *pl = NULL;
|
const char *pl = NULL;
|
||||||
uint32_t callsequence;
|
|
||||||
nua_handle_t *nh;
|
nua_handle_t *nh;
|
||||||
sip_cseq_t *cseq = NULL;
|
sip_cseq_t *cseq = NULL;
|
||||||
const char *uri = NULL;
|
const char *uri = NULL;
|
||||||
|
@ -1567,6 +1566,7 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
|
||||||
char *contact;
|
char *contact;
|
||||||
const char *invite_contact_params = switch_channel_get_variable(tech_pvt->channel, "sip_invite_contact_params");
|
const char *invite_contact_params = switch_channel_get_variable(tech_pvt->channel, "sip_invite_contact_params");
|
||||||
|
|
||||||
|
|
||||||
if (!zstr(msg->string_array_arg[2])) {
|
if (!zstr(msg->string_array_arg[2])) {
|
||||||
pl = msg->string_array_arg[2];
|
pl = msg->string_array_arg[2];
|
||||||
}
|
}
|
||||||
|
@ -1581,14 +1581,14 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
|
||||||
contact = tech_pvt->reply_contact;
|
contact = tech_pvt->reply_contact;
|
||||||
}
|
}
|
||||||
|
|
||||||
callsequence = sofia_presence_get_cseq(tech_pvt->profile);
|
|
||||||
nh = nua_handle(tech_pvt->profile->nua, NULL,
|
nh = nua_handle(tech_pvt->profile->nua, NULL,
|
||||||
NUTAG_URL(uri),
|
NUTAG_URL(uri),
|
||||||
TAG_IF(contact, SIPTAG_CONTACT_STR(contact)),
|
TAG_IF(contact, SIPTAG_CONTACT_STR(contact)),
|
||||||
TAG_END());
|
TAG_END());
|
||||||
|
|
||||||
|
|
||||||
cseq = sip_cseq_create(nh->nh_home, callsequence, SIP_METHOD_NOTIFY);
|
cseq = sip_cseq_create(nh->nh_home, ++tech_pvt->info_cseq, SIP_METHOD_INFO);
|
||||||
nua_handle_bind(nh, &mod_sofia_globals.destroy_private);
|
nua_handle_bind(nh, &mod_sofia_globals.destroy_private);
|
||||||
|
|
||||||
if (tech_pvt->sent_last_invite || !tech_pvt->recv_invites) {
|
if (tech_pvt->sent_last_invite || !tech_pvt->recv_invites) {
|
||||||
|
|
|
@ -811,6 +811,7 @@ struct private_object {
|
||||||
uint32_t keepalive;
|
uint32_t keepalive;
|
||||||
uint32_t sent_invites;
|
uint32_t sent_invites;
|
||||||
uint32_t recv_invites;
|
uint32_t recv_invites;
|
||||||
|
uint32_t info_cseq;
|
||||||
uint8_t sent_last_invite;
|
uint8_t sent_last_invite;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue