Displaying 3 results from an estimated 3 matches for "providera".
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...
2007 Apr 25
3
SLA Appearance between 2 Cisco 7960's (SIP)
Has anyone had any success with getting SLA going between 2 SIP phones?
(Particularly a set of Cisco 79xx's) The SLA document that comes with
the asterisk source is about as clear as mud.
Does anyone have a working sip.conf, sla.conf, and extensions.conf that
I can use for reference?
The part I'm most confused about is how to build the lines in sip.conf
and how the phones should
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. Shou...