similar to: Joining an astablished call

Displaying 20 results from an estimated 1000 matches similar to: "Joining an astablished call"

2013 Sep 03
1
How to use Skype ?
Hi, I want to recieve calls to my Skype account and forward them to a SIP/FXS line. I searched for chan_skype for asterisk (v11), but found it only available for asterisk 10 I know that Digium gives no support for this module, but I am sure that someone somewhere did write some tool to allow such connectivity. Do have any idea if I can use Skype with my asterisk v11 ? Thanks --------------
2012 Jun 23
2
Can't make call with TDM410P
Actually I can start and receive SIP calls (PC client, iphone client) but?I have an issue with calling external number throught PSTN (certified-asterisk-1.8.11-cert2). I'm having this ?error when making a call: *CLI> ? == Using SIP RTP CoS mark 5 ? ? -- Executing [9000 at local:1] Dial("SIP/3000-00000006", "DAHDI/1/4384019357,10") in new stack [Jun 23 16:18:09]
2013 Apr 18
1
How to show caller number ?
Hi, I am using asterisk 11.1.0. How to display the caller number (from asterisk -rvvv terminal) in the first step of the extension (before doing any action) ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130417/8e6cbb1a/attachment.htm>
2004 Aug 05
1
Skinny and CISCO 7905G
Hello, I tried to configure a cisco 7905 IP phone using the skinny channel but I had not much luck. The relevant portion of skinny.conf is: [cisco1] device=SEP000F3487F8E3 callerid="Alex" <123-456-789> mailbox=500 callwaiting=1 transfer=1 context=default threewaycalling=1 line => 500 ; Dial(Skinny/500@cisco1) I set up the tftp server, and prepared the following
2013 Feb 23
2
[LLVMdev] ARM assembler's syntax in clang
Hi, Jim, Why "asm" name is a horrible hack? Do you have any suggestion for cross-platform support of my ARM assembly code? Thanks! ashi On Feb 21, 2013, at 2:00 AM, Jim Grosbach <grosbach at apple.com> wrote: > You were correct the first time. That post is talking about a Windows target. Ashi is working on iOS. Underscores are normal and expected. Using an "asm" name
2010 Oct 08
23
O2CB global heartbeat - hopefully final drop!
All, This is hopefully the final drop of the patches for adding global heartbeat to the o2cb stack. The diff from the previous set is here: http://oss.oracle.com/~smushran/global-hb-diff-2010-10-07 Implemented most of the suggestions provided by Joel and Wengang. The most important one was to activate the feature only at the end, Also, got mostly a clean run with checkpatch.pl. Sunil
2019 Feb 14
2
[PATCH] v2v: windows: save log file from rhev-apt installer
Store log from MSI installer. Log file will be located in firstboot scripts-done directory with name rhev-apt.log. The path has to be double-quoted to handle spaces in path name properly. Hopefully this can help resolve RHBZ#1584678 someday. Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/convert_windows.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git
2013 Mar 04
2
[LLVMdev] ARM assembler's syntax in clang
Hi, all. Another problem in ARM assembly: I use LDR to load an external symbol : LDR R7,=DataTable But clang gives error: unexpected token in operand to the '=', Then I change the code to: LDR R7,=DataTable The error becomes: unsupported relocation on symbol. How can I get around this in clang? Thanks in advance! On Mon, Feb 25, 2013 at 7:14 PM, Ashi <ashi08104 at
2013 Feb 25
0
[LLVMdev] ARM assembler's syntax in clang
Hi,all, I've some problem when using clang compile my ARM assembly code: 1 .qn directive In GAS, .qn directive is used to create typed and/or indexed register aliases for use in Advanced SIMD Extension (Neon) instructions.( http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives) But clang's integrated-as seems have different syntax, for example, my code: input .qn
2009 May 12
1
Power function for ratio of lognormal means: two equally valid results? [SEC=Unclassified]
Hi All This is a general stats problem that I am dealing with using R, so any help is greater appreciated. I have two lognormal distributions with means M1 and M2. If we have: H0: log(M1/M2)=0 H1: log(M1/M2) !=0 equivalent to log(M1/M2)=log(1+P) where P<0 or P>0. If we calculate the power for a value of P=0.1 or P=-0.1 (i.e. a 10% difference) and say assume SE{log(M1/M2)}=0.05, and
2020 Mar 03
2
[PATCH v3] windows: delay installation of qemu-ga MSI
Instead of running firstboot script during early boot schedule a task delayed for 2 minutes. During the first boot, after virt-v2v conversion, Windows installs the drivers injected by virt-v2v. When this installation is finished Windows enforces some kind of internal reboot. This unfortunately terminates any running firstboot scripts thus killing the installation of qemu-ga MSI. This is just a
2013 Feb 01
29
cumulative sum by group and under some criteria
Thank you very much for your reply. Your code work well with this example. I modified a little to fit my real data, I got an error massage. Error in split.default(x = seq_len(nrow(x)), f = f, drop = drop, ...) : Group length is 0 but data length > 0 On Thu, Jan 31, 2013 at 12:21 PM, arun kirshna [via R] < ml-node+s789695n4657196h87@n4.nabble.com> wrote: > Hi, > Try this: >
2020 Mar 02
2
[PATCH 0/1] Delay installation of QEMU-GA
This is a replacement for previously posted patch "Delay firstboot scripts to some later time": https://www.redhat.com/archives/libguestfs/2019-November/msg00134.html Instead of delaying all the firstboot scripts we just delay the QEMU-GA installation that we know is problematic. I will possibly send a similar patch for RHEV-APT installation later. Tom?? Golembiovsk? (1): windows:
2013 Mar 06
3
[LLVMdev] ARM assembler's syntax in clang
Hi Ashi, Your first LDR is a pseudoinstruction that is supported by some tools (gas and armasm, at least), but not by LLVM. Roughly speaking, it turns into a PC-relative load from a literal pool. To do what you're trying to achieve you can write your own literal pool in your assembly. You can see some examples of this sort of thing at
2013 Mar 05
0
[LLVMdev] ARM assembler's syntax in clang
Hi, all. The previous post have a typo: problem in ARM assembly: I use LDR to load an external symbol : LDR R7,=DataTable But clang gives error: unexpected token in operand to the '=', Then I change the code to: LDR R7,DataTable The error becomes: unsupported relocation on symbol. How can I get around this in clang? My problem is actually how to load external symbol in
2004 Mar 26
2
Omegahat down?
I was wondering the same thing. The traceroute seems to end at their border router, which leads me to believe that they has a hardware failure. Hoping that they get it up in a few days. I've checked around and there are a few mirrors but they all just hang, so I guess we have to wait... Mark Fowle ------------------------------------------------------- Navicom Inc. One Steelcase Road W
2020 Mar 05
1
Re: [PATCH v3] windows: delay installation of qemu-ga MSI
On Thu, Mar 05, 2020 at 08:49:04AM +0000, Richard W.M. Jones wrote: > On Tue, Mar 03, 2020 at 03:45:49PM +0100, Tomáš Golembiovský wrote: > > Instead of running firstboot script during early boot schedule a task > > delayed for 2 minutes. > > > > During the first boot, after virt-v2v conversion, Windows installs the > > drivers injected by virt-v2v. When this
2003 Mar 05
8
How to draw several plots in one figure?
Hey, I want to draw several plots sequently, but have to make them dispaly in one figure. So how to achieve this? Thanks. Fred
2004 Jun 29
5
SIP->Asterisk->GnuGK->Cisco 5300
Hi all, I would like to call from SIP client to Asterisk then GnuGk, then Cisco 5300 to PSTN phone. Is this possible? I need simple config asterisk and gnugk.Can somebody help me? Ganbaa -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040629/cfe09e1e/attachment.htm
2004 Apr 08
1
Two operators, 10 rollover lines, Cisco 7960G chanisavail problem
Here's my situation. I have two receptionists that answer incoming lines. Each has a 7960G with 5 incoming lines each. I'm trying to set this up so each line on each phone doesn't utilize call waiting. My problem seems to be that ChanisAvail(Sip/cisco1&Sip/cisco2&Sip/cisco3&Sip/cisco4&Sip/cisco5) always returns cisco1. Here are the sip.conf entries: (mind you,