Module: sip-router
Branch: jorj/sca
Commit: 7b0f5a39881b49529078ff740640a2aeee078df2
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7b0f5a3…
Author: Jorj Bauer <jorj(a)isc.upenn.edu>
Committer: Jorj Bauer <jorj(a)isc.upenn.edu>
Date: Fri Aug 8 09:26:21 2014 -0400
modules/sca: fix 180 replies in sca_call_info_invite_reply_18x_handler()
- Per Broadworks Release 13.0v1 documentation, 180s should produce
"appearance-state=progressing" just like 183s do; Polycom OS 3.3.4
doesn't care, but 4.x swaps leg information when it hears
"appearance-state=alerting"
- report and patch from Joao Vitor Arruda
---
modules/sca/sca_call_info.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/modules/sca/sca_call_info.c b/modules/sca/sca_call_info.c
index f0cab7e..066834c 100644
--- a/modules/sca/sca_call_info.c
+++ b/modules/sca/sca_call_info.c
@@ -1072,9 +1072,6 @@ sca_call_info_invite_reply_18x_handler( sip_msg_t *msg,
switch ( msg->REPLY_STATUS ) {
case 180:
- state = SCA_APPEARANCE_STATE_ALERTING;
- break;
-
case 183:
state = SCA_APPEARANCE_STATE_PROGRESSING;
break;