From: Michael Jerris Date: Wed, 22 Aug 2007 13:16:37 +0000 (+0000) Subject: map 404 correct per rfc 4497 X-Git-Tag: v1.0-beta2~686 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88bbc489d12d0bdf1173bae4fd0b698cd080a9c4;p=thirdparty%2Ffreeswitch.git map 404 correct per rfc 4497 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5658 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index 9f919450fa..c7c138a45d 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -1369,6 +1369,7 @@ switch_call_cause_t sofia_glue_sip_cause_to_freeswitch(int status) case 603: return SWITCH_CAUSE_CALL_REJECTED; case 404: + return SWITCH_CAUSE_UNALLOCATED; case 485: case 604: return SWITCH_CAUSE_NO_ROUTE_DESTINATION;