search for: reachabl

Displaying 20 results from an estimated 1573 matches for "reachabl".

Did you mean: reachable
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
...693 100755 --- a/test/test_bins.sh +++ b/test/test_bins.sh @@ -52,8 +52,8 @@ flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable" run_flac () { if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then - echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=100 flac $*" >>test_bins.valgrind.log - valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --log-fd=4 flac $* 4>>test_bins.valgrind.log + echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=50 flac $*" >>test_bins.va...
2010 Mar 12
4
Can not enable sip debug because CLI flooded
Hello list, I have nat=no and qualify=no in my sip peer definition and still my CLI is flooded with : [Mar 12 10:17:26] NOTICE[20278]: chan_sip.c:12985 handle_response_peerpoke: Peer 'mysippeer' is now Reachable. (30ms / 2000ms) [Mar 12 10:17:26] NOTICE[20278]: chan_sip.c:12985 handle_response_peerpoke: Peer 'mysippeer' is now Reachable. (24ms / 2000ms) [Mar 12 10:17:26] NOTICE[20278]: chan_sip.c:12985 handle_response_peerpoke: Peer 'mysippeer' is now Reachable. (25ms / 2000ms) [Mar 12 10:...
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...ode_tree->head; node; node = node->next) { n = node->data; - n->status.visited = false; + n->status.st.visited = false; nodes++; } @@ -103,8 +103,8 @@ for(node = edge_weight_tree->head; node; node = node->next) { e = node->data; - if(e->from->status.reachable) { - e->from->status.visited = true; + if(e->from->status.st.reachable) { + e->from->status.st.visited = true; break; } } @@ -115,19 +115,19 @@ next = node->next; e = node->data; - if(!e->reverse || e->from->status.visited == e->to->sta...
2010 Feb 05
3
Asterisk going down
...19] chan_sip.c: Disconnecting call 'SIP/301-09ad3be8' for lack of RTP activity in 301 seconds [Feb 5 10:36:17] NOTICE[6519] chan_sip.c: Disconnecting call 'SIP/317-b7735220' for lack of RTP activity in 301 seconds [Feb 5 10:38:19] NOTICE[6519] chan_sip.c: Peer '353' is now Reachable. (1ms / 2000ms) [Feb 5 10:42:59] NOTICE[6519] chan_sip.c: Peer '353' is now Reachable. (7ms / 2000ms) [Feb 5 10:51:09] NOTICE[6519] chan_sip.c: Peer '358' is now Reachable. (1ms / 2000ms) [Feb 5 10:53:08] NOTICE[6519] chan_sip.c: Peer '366' is now UNREACHABLE! Last quali...
2004 May 23
1
IAX2 REACHABLE/UNREACHABLE
All, I have an issue with IAX that I can't comprehend. Approximately every eight minutes my servers go unreachable. They stay unreachable for exactly 10ms. I have two servers running IAX and it happens on both servers simultaneously. I have searched the archives and see similar issues, but not the exact same one. I am on the current CVS stable version of *. Also, during IAX calls, every couple of minutes...
2009 Jul 27
2
[LLVMdev] Reachability info in LLVM?
Dear All, I am new to LLVM and want to know if LLVM provides any reachability information about the instructions inside a function? For example, is instruction 'J' reachable from the instruction 'I'? (just based on CFG) Thanks a lot, ::Saman -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090727/d36adddd/attachment.html>
2015 Jun 11
3
Allowing calls - maybe I'm just stupid...
...alled an INTERNAL number, Asterisk tried to call it. I tried right now to call an EXTERNAL number (using my context [myproxy]) and the behavior is NOT the same... Not 100% correct, but it tries the right way... Now my problem is to check in my dialplan if the peer, that originate the call, is reachable, and if not, to give an error... Is there any function to know if the peer is reachable? Thanks Luca Bertoncello (lucabert at lucabert.de)
2006 Oct 15
3
VoicePulse Connect 4 Channel Limit?
Does anyone know what happens if you try to have 5 concurrent outgoing channels with VoicePulse Connect? Does it give you an error message or a reorder or something? I'm worried about using them as my primary carrier if this is the case. I noticed that they supposedly only allow 4 channels for free and then you have to pay $20 a month extra per channel. I'm guessing this is for inbound
2011 Mar 31
1
[LLVMdev] how to detect if block N is reachable from block M ?
...n Wed, Mar 30, 2011 at 10:14 AM, Jimborean Alexandra > <xinfinity_a at yahoo.com> wrote: >> Hi, >> >> Is there any method to check if there is a path in the CFG from block M to >> block N, but M does not necessarily dominate block N? >> In other words, if N is reachable from M. > > I don't think there's any method built in to LLVM.  It's pretty easy > to write, though. > > -Eli A simple depth-first or breadth-first search is good unless you end up querying all pairs - each query is O(blocks + edges), and the number of pairs is O(blocks...
2005 Sep 28
3
cisco phones problems
...d and hangup/redial). i've check the console output. there was a lot of messages like the following: Sep 28 15:00:49 NOTICE[8182]: chan_sip.c:6678 handle_response: Peer '3289' is now TOO LAGGED! Sep 28 15:00:59 NOTICE[8182]: chan_sip.c:6672 handle_response: Peer '3289' is now REACHABLE! Sep 28 15:01:08 NOTICE[8182]: chan_sip.c:6678 handle_response: Peer '3201' is now TOO LAGGED! Sep 28 15:01:18 NOTICE[8182]: chan_sip.c:6672 handle_response: Peer '3201' is now REACHABLE! Sep 28 15:04:01 NOTICE[8182]: chan_sip.c:6678 handle_response: Peer '3289' is now T...
2009 Jul 28
1
[LLVMdev] Reachability info in LLVM?
Thanks. that's right but I was looking for sth like "successor closure" set for each instruction 'I' that includes all reachable instructions from I. Does LLVM provide such a set? Thanks alot, ::Saman Dear All, > >I am new to LLVM and want to know if LLVM provides any reachability information about the instructions inside a function? For example, is instruction 'J' reachable from the instruction 'I'...
2009 Jul 27
0
[LLVMdev] Reachability info in LLVM?
On Jul 27, 2009, at 5:05 AM, Saman Zonouz wrote: > Dear All, > > I am new to LLVM and want to know if LLVM provides any reachability > information about the instructions inside a function? For example, > is instruction 'J' reachable from the instruction 'I'? (just based > on CFG) You can just do a depth first search on the cfg? -Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090727/8811cbfb/attachment.html>
2011 Mar 30
2
[LLVMdev] how to detect if block N is reachable from block M ?
Hi, Is there any method to check if there is a path in the CFG from block M to block N, but M does not necessarily dominate block N? In other words, if N is reachable from M. Thanks, Alexandra -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110330/7d533e42/attachment.html>
2006 Dec 07
0
sip qualify unreachable/reachable - ci$co 7940
...hour unavailable! :'( I tried to modify minexpiry/maxexpiry sip.conf timeouts, but nothing help me. I'm using latest firmware 8.4 in phone, will be better to downgrade? to what version? (latest asterisk 1.4branch) [Dec 7 00:36:56] NOTICE[19226] chan_sip.c: Peer '108' is now UNREACHABLE! Last qualify: 205 [Dec 7 01:36:23] NOTICE[19226] chan_sip.c: Peer '108' is now Reachable. (189ms / 2000ms) [Dec 7 02:36:41] NOTICE[19226] chan_sip.c: Peer '108' is now UNREACHABLE! Last qualify: 198 [Dec 7 03:36:22] NOTICE[19226] chan_sip.c: Peer '108' is now Reacha...
2016 Oct 15
3
Registered successfully, but after a minute or so no SIP messages anymore
...22] WARNING[10162]: res_pjsip_outbound_registration.c:761 schedule_retry: No response received from 'sip:sipgate.de:5060' on registration attempt to 'sip:2636146e0 at sipgate.de:5060', retrying in '60' -- Contact pjsip_sipgate/sip:2636146e0 at sipgate.de:5060 is now Reachable. RTT: 434.393 msec == Endpoint pjsip_sipgate is now Reachable so it is somewhat clear, why i get a busy, because the endpoint is not reachable. But WHY is the endpoint not reachable? Regarding the architecture: I have two routers cascaded, that is unfortunately necessary. On the first rout...
2010 Feb 25
2
decentral vpn with 1 gateway host
Hello tinc users, i have the follow configuration: 1 client/server called master, it is always reachable from internet (with dyndns) 5 clients, that connects to the master and the other clients (all behind a router (NAT)) master-hosts-file: Address = ... Port = ... Subnet = ... Compression = 0 ---- key ----- client-hosts-files: Compression = 0 Subnet = ... ----- key ----- tinc.conf Name = .... Con...
2007 Aug 09
2
Asterisk Help
...Is my network to slow? Or is there something else going on? Aug 9 09:40:21 NOTICE[6395]: chan_sip.c:9929 handle_response_peerpoke: Peer 'netlogic' is now TOO LAGGED! (1050ms / 1000ms) Aug 9 09:40:55 NOTICE[6395]: chan_sip.c:9923 handle_response_peerpoke: Peer 'netlogic' is now REACHABLE! (17ms / 1000ms) Aug 9 09:41:56 NOTICE[6395]: chan_sip.c:9929 handle_response_peerpoke: Peer 'netlogic' is now TOO LAGGED! (1017ms / 1000ms) Aug 9 09:42:17 NOTICE[6395]: chan_sip.c:9923 handle_response_peerpoke: Peer 'netlogic' is now REACHABLE! (17ms / 1000ms) Aug 9 09:48:18...
2017 Aug 18
2
RFC: Resolving TBAA issues
...processes the access paths related to ancestry. You can view it as either a grammar parsing or a graph reachability problem depending on what works for you (in fact, it's really a Dyck-CFL reachability problem on bidirected trees) The reachability rule is usually given as: If node Target is reachable from node Source, offset another through either it's children or the upwards edges (or was it downwards, i always screw up which direction we go in), they may-alias You could also implement it as a real grammar parsing problem (IE you quite literally could generate strings from tag + offset,...
2008 Sep 22
1
I can't call my remote users?
...ss. We ended up getting them to hook the phone into a switch that went to the MDF and the phone came online. The strange thing is that the phone would come online and then go offline: [Sep 12 22:11:04] NOTICE[3090]: chan_sip.c:12526 handle_response_peerpoke: Peer '17114-1' is now Reachable. (117ms / 2000ms) -- Registered SIP '17114-3' at 74.46.72.86 port 60725 expires 3600 [Sep 12 22:11:04] NOTICE[3090]: chan_sip.c:12526 handle_response_peerpoke: Peer '17114-2' is now Reachable. (126ms / 2000ms) -- Registered SIP '17114-4' at 74.46.72.86 port 60...
2011 Mar 31
0
[LLVMdev] how to detect if block N is reachable from block M ?
On Wed, Mar 30, 2011 at 10:14 AM, Jimborean Alexandra <xinfinity_a at yahoo.com> wrote: > Hi, > > Is there any method to check if there is a path in the CFG from block M to > block N, but M does not necessarily dominate block N? > In other words, if N is reachable from M. I don't think there's any method built in to LLVM. It's pretty easy to write, though. -Eli