similar to: Dial and MeetMe on the same channel

Displaying 20 results from an estimated 300 matches similar to: "Dial and MeetMe on the same channel"

2004 Dec 01
1
conference room possible bug
hi; i setup a Meetme conference room and i notice the following behavior: if A calls confroom over PSTN channel 1 B call confroom over PSTN channel 2 C calls confroom over SIP/Ethernet then i have all of them talking and the media stream mixed by asterisk. However, if i hang up A, channel 1 is still ocuppied (i try dialing inbound again on channel and it continues to give a busy siganl) any
2007 Feb 01
1
Dial option G - Passing parameters?
Has anyone used the G option with the Dial app? I'm looking for a way to control the called party leg. Specifically, I'd like to pass a few variables to the called side for some call control. Here's a synopsis of what I'm doing: Make outbound call w/ AMI Originate action. Called party answers ("Customer") Customer identifies himself, and now I use Dial w/ the G
2013 Dec 09
1
[PATCH] launch: switch from -nographic to -display none
The latter is a better way to disable the qemu display output as we need to, without enabling extra devices (which are disabled already, anyway). Also, related to the change above, ban the -display parameter from the ones that can be supplied by the user. --- configure.ac | 8 ++++---- src/launch-direct.c | 12 ++++++++---- src/launch.c | 1 + 3 files changed, 13 insertions(+), 8
2013 Oct 16
1
Parallel R expression evaluations
Hi all, I am using R-3.0.1 under Linux platform to embed R into my C++ code. I am facing an error while executing more than 1 R-expressions parallelly. I am executing round(X) and abs(X) parallelly on a set of 50 input rows which resulted in segmentation fault after getting the following errors. Error: unprotect_ptr: pointer not found Error: argument to 'findVar' is not an environment
2009 Feb 23
1
running multiple commands in one system() call
Hi all, I'm on Mac OS X 10.4... So I've got a small python script I need to run from R. However, to get the python script working, I need to have the shell that R calls get settings from my .bash_profile file, which apparently it doesn't currently (the shell R calls uses an older version of python, and also this older version of python can't see various python modules I have
2009 Oct 15
1
Callpickup works for outside calls but not inside calls
Hello, all. I've got a problem where we set up call pickup for a customer. If the Bob's extension rings and Bob is in Jim's office, Bob can press the button on his Snom 320 that says "Bob" and pick up his line. It works great for calls coming in from the outside but does not work for internal calls. Internal calls generate a app_directed_pickup.c:204 pickup_exec: No
2010 Mar 23
0
Strange Meetme disconnects
Running * version 1.6.1.17. My meetme conferences automagically disconnect users approximately 5-15 seconds after the user is connected. This occurs regardless of whether music on hold is active or not. [Mar 23 11:34:36] -- Executing Macro("SIP/SDN_TMCKEE-000000e9", "confroom,1808") [Mar 23 11:34:36] -- Executing [s at macro-confroom:1]
2003 Aug 05
0
WipeOut - gateway access with pin solution
Helo WipeOut, I have found a solution for sending dtmf after dial. I use spooling. Take a look at the sample.call file inside asterisk dir. You need to edit this file and dump it in /var/spool/asterisk/outgoing. Asterisk will precess this file automaticlly I create the sample.call do something like this: Channel: OH323/4324324324 #dial the access way MaxRetries: 3 RetryTime: 60 WaitTime: 30
2003 Dec 16
2
AT&T access code entry by Asterisk
I have a dialplan that requires that we use * to send the long distance access code to AT&T. I have found in the list that the `w` command can be used to inject a pause, I have tried the following: exten => _91NXXXXXXXXX,1,Dial(ZAP/g1/${EXTEN}www5555555,70) There `5555555` is the ld access code. I tried various quantities of `w`s but I never got * to dial the ld access code. Allof the
2009 Oct 08
1
MeetMe option question
We've started to use Asterisk for conferencing and have been getting some complaints. Our configuration is that some people call in from home, but we have a physical conference room with a Polycom. When somebody was giving a presentation in the physical conference room, we were told that the remote people kept hearing him cut in and our. To me, this sounds like the talking optimization was
2017 Sep 12
0
[PATCH v2 2/5] lib: qemu: Factor out common code for reading and writing cache files.
The previous code duplicated a lot of common code for reading and writing the cache file per data field. This change simply factors out that common code. This makes it simpler to add new tests in future. This is just refactoring, it should have no effect. --- lib/qemu.c | 375 +++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 238 insertions(+), 137 deletions(-)
2016 May 18
2
[PATCH v2 0/2] lib: qemu: Memoize qemu feature detection.
v1 -> v2: - Rebase on top of Pino's version work. Two patches went upstream, these are the two remaining patches. Note the generation number is still inside the qemu.stat file. We could put it in the filename, I have no particular preference. Rich.
2007 Apr 10
2
time command
Hi I am wanting to time how long it takes a couple commands to run. I can do "time command" and it tells me. How do I do multple commands at a time. I tried: time command; command no good time "command; command" no good I can make a script I guess but thought there was a more elegant way. Thanks, jerry
2016 Nov 04
0
[PATCH 4/5] v2v: ova: don't extract files from OVA if it's not needed
We don't have to always extract all files from the OVA archive. The OVA, as defined in the standard, is plain tar. We can work directly over the tar archive if we use correct 'offset' and 'size' options when defining the backing file for QEMU. This leads to improvements in speed and puts much lower requirement on available disk space. Signed-off-by: Tomáš Golembiovský
2016 May 12
7
[PATCH 0/4] lib: qemu: Memoize qemu feature detection.
Doing qemu feature detection in the direct backend takes ~100ms because we need to run `qemu -help' and `qemu -devices ?', and each of those interacts with glibc's very slow link loader. Fixing the link loader is really hard. Instead memoize the output of those two commands. This patch series first separates all the code dealing with qemu into a separate module (src/qemu.c) and
2007 Dec 19
3
array addition
Hi suppose I have two arrays x1,x2 of dimensions a1,b1,c1 and a2,b2,c2 respectively. I want x = x1 "+" x2 with dimensions c(max(a1,a2), max(b1,b2),max (c1,c2)) with x[a,b,c] = x1[a1,b1,c1] + x2[a2,b2,c2] if a <=min(a1,a2) , b<=min (b1,b2), c<=min(c1,c2) and the other bits either x1 or x2 or zero according to whether the coordinates are "in range" for
2016 May 12
0
[PATCH 4/4] lib: qemu: Memoize qemu feature detection.
qemu feature detection takes about 95ms on my laptop. The overhead is almost all due to the time taken by the glibc link loader opening the 170+ libraries that qemu is linked to (×2 because we need to run qemu twice). Fixing that is seriously hard work. Therefore memoize the results of guestfs_int_test_qemu. This is keyed on the size and mtime of the qemu binary, so if the user changes the
2011 Jun 30
5
How to define a hash table and loop over them in a definition?
This may have been asked before, if so, please excuse me and point me to the right direction. What I want to do is to define a hash table with multiple key->value pairs. I would like to pass this variable to a file template and generate a result file with all the mappings listed. Based on what I read, I need to do it in a definition. But does Puppet supports loop over a hash? Any help would
2016 May 25
4
[PATCH 0/4] qemu: Use sqlite to store qemu detection data.
Patches 1 & 2 were posted previously here: https://www.redhat.com/archives/libguestfs/2016-May/msg00134.html Patch 3 is a hack so I can test this using my own version of qemu (the `-L ?' stuff is not upstream). Patch 4 is where the real action takes place: Replace the caching of qemu features in blob-like files with a sqlite database. Probably the best way to approach this patch is to
2009 Nov 09
1
HDT 0.3.5 (mojito) is out
HDT 0.3.5 is out ! As you noticed, we've been adding codenames ;) You can grab this release on our webiste http://hdt-project.org/raw-attachment/wiki/WikiStart/hdt_0_3_5.c32 http://hdt-project.org/raw-attachment/wiki/WikiStart/hdt-0.3.5.img http://hdt-project.org/raw-attachment/wiki/WikiStart/hdt-0.3.5.iso http://hdt-project.org/raw-attachment/wiki/WikiStart/hdt-0.3.5.img.gz A dedicated page