summaryrefslogtreecommitdiff
path: root/pjsip
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-11-01 06:40:33 +0000
committerBenny Prijono <bennylp@teluu.com>2007-11-01 06:40:33 +0000
commit15982ff3aeb67c2644fea6c5ee7bb604400de146 (patch)
treecb449fe3e9e3a0dee4c7dcf00f92d9537ba86aa8 /pjsip
parent31312b374394c95addd6418da8be7acc5c4002b4 (diff)
More ticket #385: 100rel support should be enabled by default
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1538 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_call.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_call.c b/pjsip/src/pjsua-lib/pjsua_call.c
index f1fe3208..cb4959b3 100644
--- a/pjsip/src/pjsua-lib/pjsua_call.c
+++ b/pjsip/src/pjsua-lib/pjsua_call.c
@@ -326,9 +326,7 @@ PJ_DEF(pj_status_t) pjsua_call_make_call( pjsua_acc_id acc_id,
#endif
/* Create the INVITE session: */
-#if PJSIP_HAS_100REL
options |= PJSIP_INV_SUPPORT_100REL;
-#endif
if (acc->cfg.require_100rel)
options |= PJSIP_INV_REQUIRE_100REL;
@@ -592,9 +590,7 @@ pj_bool_t pjsua_call_on_incoming(pjsip_rx_data *rdata)
acc_id = call->acc_id = pjsua_acc_find_for_incoming(rdata);
/* Verify that we can handle the request. */
-#if PJSIP_HAS_100REL
options |= PJSIP_INV_SUPPORT_100REL;
-#endif
if (pjsua_var.acc[acc_id].cfg.require_100rel)
options |= PJSIP_INV_REQUIRE_100REL;