Module: sip-router Branch: 4.0 Commit: a189e7fd3e6e4915c762dd6c429e68f3d9d6b49a URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a189e7fd...
Author: Andrew Mortensen admorten@isc.upenn.edu Committer: Andrew Mortensen admorten@isc.upenn.edu Date: Mon Mar 18 15:03:24 2013 -0400
modules/sca: seize appearance for SCA callee answering w/o Call-Info
- Yealink firmware 7.70.0.130 doesn't include a Call-Info header with 200 OK response to INVITE.
---
modules/sca/sca_appearance.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/modules/sca/sca_appearance.c b/modules/sca/sca_appearance.c index 81e304c..0e454b6 100644 --- a/modules/sca/sca_appearance.c +++ b/modules/sca/sca_appearance.c @@ -362,6 +362,10 @@ sca_appearance_seize_index_unsafe( sca_mod *scam, str *aor, str *owner_uri, goto done; }
+ if ( app_idx <= 0 ) { + app_idx = sca_appearance_list_next_available_index_unsafe( app_list ); + } + for ( app = app_list->appearances; app != NULL; app = app->next ) { if ( app->index >= app_idx ) { break;