Module: sems Branch: master Commit: 1af9f3c008416cd1a19ef2f5127c28c634b6ed63 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=1af9f3c008416cd1a19ef2f5127c28c634b6ed63
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Sat Nov 27 23:04:32 2010 +0100 b/f: ignore rel100OnRequestOut if rel1xx_ignored --- core/AmSipDialog.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/core/AmSipDialog.cpp b/core/AmSipDialog.cpp index cf163c8..8a27568 100644 --- a/core/AmSipDialog.cpp +++ b/core/AmSipDialog.cpp @@ -889,7 +889,7 @@ int AmSipDialog::sendRequest(const string& method, void AmSipDialog::rel100OnRequestOut(const string &method, string &hdrs) { - if (method!=SIP_METH_INVITE) // && method!=SIP_METH_OPTIONS) + if (reliable_1xx == REL100_IGNORED || method!=SIP_METH_INVITE) // && method!=SIP_METH_OPTIONS) return; switch(reliable_1xx) { _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
