From 13b9f349662093ff037c14e710cf85fe5fe6985d Mon Sep 17 00:00:00 2001 From: Paul Cadach Date: Thu, 28 Sep 2006 17:34:19 +0000 Subject: [PATCH] Extend call establishment timeout git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43918 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/h323/ast_h323.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/channels/h323/ast_h323.cxx b/channels/h323/ast_h323.cxx index 7a86c5b811..dd981285d3 100644 --- a/channels/h323/ast_h323.cxx +++ b/channels/h323/ast_h323.cxx @@ -218,8 +218,11 @@ void PAssertFunc(const char *msg) MyH323EndPoint::MyH323EndPoint() : H323EndPoint() { - // Capabilities will be negotiated on per-connection basis + /* Capabilities will be negotiated on per-connection basis */ capabilities.RemoveAll(); + + /* Reset call setup timeout to some more reasonable value than 1 minute */ + signallingChannelCallTimeout = PTimeInterval(0, 0, 10); /* 10 minutes */ } /** The fullAddress parameter is used directly in the MakeCall method so