search for: providerb

Displaying 2 results from an estimated 2 matches for "providerb".

Did you mean: provider
2007 May 11
4
Dealing with 2 SIP providers
Hi, I have a question of using 2 SIP providers. Let's say I have provider A and provider B, and I would like my calls to go to A, and then B if A wasn`t available Something like this would work: exten => 1234,1,Dial(SIP/providerA) exten => 1234,2,Dial(providerB) exten => 1234,3,Hangup But what if I want to put in a delay? If I put 30 seconds on each of them, I'll wait a total of 60. I want to wait only 30 seconds before the hang up. Also, if ProviderA has a main server and a backup server, am I now forced to have 3 Dial commands, or can I setu...
2009 May 14
0
[LLVMdev] Chaining analyses from an analysis group
Hello, Two questions regarding analysis groups that ``chain'' their results, like AliasAnalysis. (1) I have an analysis group, let's call it Provider. I also have two implementations of it: ProviderA and ProviderB. The "writing a pass" document suggests using: au.addRequiredTransitive< Provider >(); Within the getAnalysisUsage() method of both ProviderA and ProviderB. But... I'm doing something wrong, and I get an infinite recursion. (2) ALSO, I'm confused. Should I get the p...