add session.hangupCause()

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14913 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-09-17 23:30:17 +00:00
parent c54f0c3945
commit 2261b687af
1 changed files with 2 additions and 0 deletions

View File

@ -487,6 +487,7 @@ SWITCH_DECLARE_CONSTRUCTOR CoreSession::CoreSession(char *nuuid, CoreSession *a_
channel = switch_core_session_get_channel(session);
allocated = 1;
} else {
cause = SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER;
if (switch_ivr_originate(a_leg ? a_leg->session : NULL, &session, &cause, nuuid, 60, NULL, NULL, NULL, NULL, NULL, SOF_NONE)
== SWITCH_STATUS_SUCCESS) {
channel = switch_core_session_get_channel(session);
@ -933,6 +934,7 @@ SWITCH_DECLARE(void) CoreSession::destroy(void)
SWITCH_DECLARE(const char *) CoreSession::hangupCause()
{
this_check(NULL);
return switch_channel_cause2str(cause);
}