Skip to content
Snippets Groups Projects
Commit 593466a4 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

sip: change timeout for SIP messages

Change-Id: I60ce038769d55687e65b7dca64d2fe0d4731571c
parent dad538a9
Branches
No related tags found
No related merge requests found
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
"fix_turn_connection_failure.patch", "fix_turn_connection_failure.patch",
"disable_local_resolution.patch", "disable_local_resolution.patch",
"fix_assert_on_connection_attempt.patch", "fix_assert_on_connection_attempt.patch",
"keep_alive.patch" "keep_alive.patch",
"sip_td_timeout.patch"
], ],
"win_patches": [ "win_patches": [
"win32_vs_gnutls.patch", "win32_vs_gnutls.patch",
......
...@@ -72,6 +72,7 @@ endif ...@@ -72,6 +72,7 @@ endif
$(APPLY) $(SRC)/pjproject/disable_local_resolution.patch $(APPLY) $(SRC)/pjproject/disable_local_resolution.patch
$(APPLY) $(SRC)/pjproject/fix_assert_on_connection_attempt.patch $(APPLY) $(SRC)/pjproject/fix_assert_on_connection_attempt.patch
$(APPLY) $(SRC)/pjproject/keep_alive.patch $(APPLY) $(SRC)/pjproject/keep_alive.patch
$(APPLY) $(SRC)/pjproject/sip_td_timeout.patch
$(UPDATE_AUTOCONFIG) $(UPDATE_AUTOCONFIG)
$(MOVE) $(MOVE)
......
pjsip/include/pjsip/sip_config.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pjsip/include/pjsip/sip_config.h b/pjsip/include/pjsip/sip_config.h
index 904df24e..0831e4ef 100644
--- a/pjsip/include/pjsip/sip_config.h
+++ b/pjsip/include/pjsip/sip_config.h
@@ -1054,7 +1054,7 @@ PJ_INLINE(pjsip_cfg_t*) pjsip_cfg(void)
/** Transaction completed timer for INVITE */
#if !defined(PJSIP_TD_TIMEOUT)
-# define PJSIP_TD_TIMEOUT 32000
+# define PJSIP_TD_TIMEOUT 15000
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment