Hello! Could somebody tell me why ArjReasonRouteCallToGatekeeper works only in routed mode? As I understand when endpoint or gateway, I use gateways :-), receives call it send ARQ to gatekeeper to get ACF - would it accept this call, so if there is no call in call table this mean that this is attempt to call without using gatekeeper, directly to gateway. IHMO, it is good to drop such attempts with ArjReasonRouteCallToGatekeeper=1. I just tried this (certanly, not in production): diff -u RasSrv.cxx RasSrv.cxx.orig --- RasSrv.cxx 2010-03-02 13:15:20.000000000 +0400 +++ RasSrv.cxx.orig 2010-03-02 13:16:53.000000000 +0400 @@ -2496,8 +2496,7 @@ } } -// if (RasSrv->IsGKRouted() && answer && !pExistingCallRec) { - if (answer && !pExistingCallRec) { + if (RasSrv->IsGKRouted() && answer && !pExistingCallRec) { if (Toolkit::AsBool(Kit->Config()->GetString("RasSrv::ARQFeatures", "ArjReasonRouteCallToGatekeeper", "1"))) { bReject = true; if (request.HasOptionalField(H225_AdmissionRequest::e_srcCallSignalAddress)) { with 2.3.1 and looks like this works. What can be wrong with using ArjReasonRouteCallToGatekeeper=1 and GKRouted=0 ? ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________________ Posting: mailto:Openh323gk-users@xxxxxxxxxxxxxxxxxxxxx Archive: http://sourceforge.net/mailarchive/forum.php?forum_name=openh323gk-users Unsubscribe: http://lists.sourceforge.net/lists/listinfo/openh323gk-users Homepage: http://www.gnugk.org/