[Freeswitch-svn] [commit] r9218 - freeswitch/trunk/src/mod/endpoints/mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Fri Aug 1 12:21:52 EDT 2008
Author: anthm
Date: Fri Aug 1 12:21:51 2008
New Revision: 9218
Modified:
freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.h
freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
Log:
add sip_hangup_disposition var
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c Fri Aug 1 12:21:51 2008
@@ -315,6 +315,9 @@
}
if (switch_test_flag(tech_pvt, TFLAG_ANS)) {
+ if (!tech_pvt->got_bye) {
+ switch_channel_set_variable(channel, "sip_hangup_disposition", "send_bye");
+ }
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Sending BYE to %s\n", switch_channel_get_name(channel));
nua_bye(tech_pvt->nh,
SIPTAG_REASON_STR(reason),
@@ -323,6 +326,9 @@
} else {
if (switch_test_flag(tech_pvt, TFLAG_OUTBOUND)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Sending CANCEL to %s\n", switch_channel_get_name(channel));
+ if (!tech_pvt->got_bye) {
+ switch_channel_set_variable(channel, "sip_hangup_disposition", "send_cancel");
+ }
nua_cancel(tech_pvt->nh,
SIPTAG_REASON_STR(reason),
TAG_IF(!switch_strlen_zero(bye_headers), SIPTAG_HEADER_STR(bye_headers)),
@@ -330,6 +336,9 @@
TAG_END());
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Responding to INVITE with: %d\n", sip_cause);
+ if (!tech_pvt->got_bye) {
+ switch_channel_set_variable(channel, "sip_hangup_disposition", "send_refuse");
+ }
nua_respond(tech_pvt->nh, sip_cause, sip_status_phrase(sip_cause),
SIPTAG_REASON_STR(reason),
TAG_IF(!switch_strlen_zero(bye_headers), SIPTAG_HEADER_STR(bye_headers)),
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.h
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.h (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.h Fri Aug 1 12:21:51 2008
@@ -474,6 +474,7 @@
int q850_cause;
char *remote_ip;
int remote_port;
+ int got_bye;
};
struct callback_t {
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c Fri Aug 1 12:21:51 2008
@@ -122,16 +122,16 @@
{
const char *tmp;
switch_channel_t *channel;
+ private_object_t *tech_pvt;
if (!session)
return;
channel = switch_core_session_get_channel(session);
-
+ tech_pvt = switch_core_session_get_private(session);
if (sip->sip_reason && sip->sip_reason->re_protocol &&
(!strcasecmp(sip->sip_reason->re_protocol, "Q.850") || !strcasecmp(sip->sip_reason->re_protocol, "FreeSWITCH")) && sip->sip_reason->re_cause) {
- private_object_t *tech_pvt = switch_core_session_get_private(session);
tech_pvt->q850_cause = atoi(sip->sip_reason->re_cause);
}
@@ -150,7 +150,10 @@
if ((tmp = sofia_glue_get_unknown_header(sip, "P-RTP-Stat"))) {
switch_channel_set_variable(channel, "sip_p_rtp_stat", tmp);
}
-
+
+ tech_pvt->got_bye = 1;
+ switch_channel_set_variable(channel, "sip_hangup_disposition", "recv_bye");
+
return;
}
More information about the Freeswitch-svn
mailing list