From 134a9ac96d95581f128457fc977a0d94f388b457 Mon Sep 17 00:00:00 2001 From: Paul Cadach Date: Thu, 28 Sep 2006 17:36:33 +0000 Subject: [PATCH] Merged revisions 43918 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ........ r43918 | pcadach | 2006-09-28 23:34:19 +0600 (Чтв, 28 Сен 2006) | 1 line Extend call establishment timeout ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43920 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 4232245882..08470fcedf 100644 --- a/channels/h323/ast_h323.cxx +++ b/channels/h323/ast_h323.cxx @@ -224,8 +224,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