From: Paul Cadach Date: Thu, 28 Sep 2006 17:34:19 +0000 (+0000) Subject: Extend call establishment timeout X-Git-Tag: 1.4.0-beta3~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=13b9f349662093ff037c14e710cf85fe5fe6985d;p=thirdparty%2Fasterisk.git Extend call establishment timeout git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43918 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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