[asterisk-commits] kmoore: branch kmoore/pjsip_path_support r404949 - /team/kmoore/pjsip_path_su...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jan 6 09:29:44 CST 2014
Author: kmoore
Date: Mon Jan 6 09:29:36 2014
New Revision: 404949
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=404949
Log:
Actually using the provided contact would be helpful
Modified:
team/kmoore/pjsip_path_support/res/res_pjsip.c
Modified: team/kmoore/pjsip_path_support/res/res_pjsip.c
URL: http://svnview.digium.com/svn/asterisk/team/kmoore/pjsip_path_support/res/res_pjsip.c?view=diff&rev=404949&r1=404948&r2=404949
==============================================================================
--- team/kmoore/pjsip_path_support/res/res_pjsip.c (original)
+++ team/kmoore/pjsip_path_support/res/res_pjsip.c Mon Jan 6 09:29:36 2014
@@ -2180,7 +2180,7 @@
AST_RWLIST_RDLOCK(&supplements);
AST_LIST_TRAVERSE(&supplements, supplement, next) {
if (supplement->outgoing_response && does_method_match(&cseq->method.name, supplement->method)) {
- supplement->outgoing_response(sip_endpoint, NULL, tdata);
+ supplement->outgoing_response(sip_endpoint, contact, tdata);
}
}
AST_RWLIST_UNLOCK(&supplements);
More information about the asterisk-commits
mailing list