similar to: Source code for AGI GET DATA command

Displaying 20 results from an estimated 200 matches similar to: "Source code for AGI GET DATA command"

2023 Apr 20
1
Source code for AGI GET DATA command
On 4/20/2023 7:16 AM, Rhys Hanrahan wrote: > > Hi All, > > I’m having issues figuring out how to set no DTMF timeout on the AGI > GET DATA command as “0” still has a multi-second timeout if no input > is given. I am trying to find the source code of the AGI command to > figure it out, but I can’t for the life of me find the underlying > source code. The closest I’ve
2004 Jan 23
0
Troubles with the System Attendent Patch.
Dear all, I have spent some time tying to get the system attendant patch to work; http://bugs.digium.com/bug_view_page.php?bug_id=0000214 I get no errors patching the system and the function runs, but I keep getting the following error; queue: Nexus1, options: (null), url: (null), announce: (null), timeout: 0 -- Started music on hold, class 'default', on SIP/phone10-a3f0 --
2018 Jan 03
1
Re: dovecot v2.3.0: imap segfault when sieve_extprograms_plugin.so called
pigeonhole 0.5.0 has been already released... ---Aki TuomiDovecot oy -------- Original message --------From: Daniel Kenzelmann <dovecot.org at k8n.de> Date: 03/01/2018 21:31 (GMT+02:00) To: Rhys Williams <lux+mailinglists at melted.me>, dovecot at dovecot.org Subject: Re: dovecot v2.3.0: imap segfault when sieve_extprograms_plugin.so ? called Hi, see the following thread:
2018 Aug 30
0
Re: Setting up port forwarding to guests on nat network
On Wed, Aug 29, 2018 at 06:31:41PM -0400, Rhys Ferris wrote: >Hello all, > >I’m currently trying to figure out how to forward ports to guests that are on a NAT Network. I have followed the directions on https://wiki.libvirt.org/page/Networking under the “Forwarding Incoming Connections” Section and get connection refused when attempting to connect. > >System: Ubuntu Server 18.04.1
2018 Aug 30
1
Re: Setting up port forwarding to guests on nat network
Thanks for the reply! output: net.ipv4.ip_forward = 1 What do you mean "The out:any and" Anywhere else I can look as to why the connection isn't going? Do I need some kind of listener at that port on the host? I'm not even seeing the packet count on the prerouting chain increase when the connection attempts are made. On Thu, Aug 30, 2018 at 8:58 AM Martin Kletzander
2013 Sep 10
0
Looping an lapply linear regression function
Hi, Try: dat2<- read.csv("BOlValues.csv",header=TRUE,sep="\t",row.names=1) dim(dat2) #[1] 20 28 indx2<-expand.grid(names(dat2),names(dat2),stringsAsFactors=FALSE) nrow(indx2) #[1] 784 indx2New<- indx2[indx2[,1]!=indx2[,2],] nrow(indx2New) #[1] 756 res2<-sapply(seq_len(nrow(indx2New)),function(i) {x1<- indx2New[i,];
2018 Jan 03
1
dovecot v2.3.0: imap segfault when sieve_extprograms_plugin.so called
That's the point, the fix was committed afterwards... https://github.com/dovecot/pigeonhole/commit/321a39be974deb2e7eff7b2a50 9a3ee6ff2e5ae1 So, any 0.5.1 release on the horizon? Thanks, Daniel Am Mittwoch, den 03.01.2018, 22:14 +0200 schrieb Aki Tuomi: > pigeonhole 0.5.0 has been already released... > > > > --- > Aki Tuomi > Dovecot oy > > -------- Original
2017 Oct 12
1
[PATCH v2] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
On Sun, Oct 01, 2017 at 10:13:53AM -0400, Rhys Kidd wrote: > nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged > with the main GeForce GPU families. > > v2: > - Qualify that support is Tegra K1+ (Martin Peres) > > Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> > Reviewed-by: Martin Peres <martin.peres at free.fr> > Acked-by:
2019 Jan 19
1
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
On Sat, 19 Jan 2019 at 18:32, Ilia Mirkin <imirkin at alum.mit.edu> wrote: > Is vlCreateAdaptorXvMC just silly, or does it really want to take > ownership of the name pointer? > vlCreateAdaptorXvMC( ) doesn't need to take over ownership of the name pointer, so yes - I guess it's being silly in one respect by not being specific about const. > > On Sat, Jan 19, 2019
2017 Sep 01
0
[PATCH v2] drm/nouveau/therm: initial implementation of new gp1xx temperature sensor
v2: - add nv138 and drop nv13b chipsets (Ilia Mirkin) - refactor out status variable and instead mask tsensor (Ilia Mirkin) - switch SHADOWed state message away from nvkm_error() (Ilia Mirkin) - rename internal temperature variable (Karol Herbst) Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- .../gpu/drm/nouveau/include/nvkm/subdev/therm.h | 1 +
2017 Aug 31
0
[Bug 101220] [NV137/GP107] xorg-server-1.19.3 crashes when trying to enable HDMI output
https://bugs.freedesktop.org/show_bug.cgi?id=101220 Rhys Kidd <rhyskidd at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freedesktop.or | |g/show_bug.cgi?id=100228
2019 Jan 19
0
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
Is vlCreateAdaptorXvMC just silly, or does it really want to take ownership of the name pointer? On Sat, Jan 19, 2019 at 6:30 PM Rhys Kidd <rhyskidd at gmail.com> wrote: > > Fixes warning with gcc 8.2: > > nouveau_xv.c: In function ‘NVInitVideo’: > nouveau_xv.c:2247:68: warning: passing argument 2 of ‘vlCreateAdaptorXvMC’ discards ‘const’ qualifier from pointer target type
2019 Jan 23
0
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
This causes nouveau_drv.so to not be loadable due to a missing wfbPictureInit. I'm not 100% sure what causes it -- it happens at runtime in the middle of probe, and I don't have wfb enabled. Either way, I'm going to revert this until we get a better idea of what's going on. On Sun, Jan 20, 2019 at 7:20 PM Rhys Kidd <rhyskidd at gmail.com> wrote: > > Fixes warning with
2018 Jan 03
0
dovecot v2.3.0: imap segfault when sieve_extprograms_plugin.so called
Hi, see the following thread: https://www.dovecot.org/pipermail/dovecot/2017-December/110448.html We need to wait for an updated pigeonhole/dovecot... :-( Is there maybe some ETA for an updated release? (just wondering if it makes sense to create an updated ebuild with the patch for gentoo) -Daniel Am Mittwoch, den 03.01.2018, 18:12 +0000 schrieb Rhys Williams: > Hi, > > I have
2018 Aug 29
2
Setting up port forwarding to guests on nat network
Hello all, I’m currently trying to figure out how to forward ports to guests that are on a NAT Network. I have followed the directions on https://wiki.libvirt.org/page/Networking under the “Forwarding Incoming Connections” Section and get connection refused when attempting to connect. System: Ubuntu Server 18.04.1 Virsh / LibVirtd Version: 4.0.0 Here’s the contents of /etc/libvirt/hooks/qemu  
2019 Jan 21
2
[PATCH xf86-video-nouveau 1/2] xv: Avoid shadowed declaration of 'int i' in NVPutImage
int i is accessed outside immediate scope so leave declaration at the highest common scope level: 1073: int ret, i; ... // Highest common scope ... 1193: if (newTTSize <= destination_buffer->size) { ... // Used in this scope ... 1248: } else { ... // Used in this scope ... 1316: }
2018 Jan 03
2
dovecot v2.3.0: imap segfault when sieve_extprograms_plugin.so called
Hi, I have recently upgraded to dovecot v2.3 on Ubuntu 16.04.3 from repo.dovecot.org and I switched to IMAPSieve for rspamd with the guide from the wiki. When a mail is moved from Junk to another Inbox or vice-versa imap segfaults. I have posted debug logs and versions below, any help will be greatly appreciated. Thanks, Rhys Williams lux at bifrost:~$ dovecot --version 2.3.0 (c8b89eb) lux at
2019 Jan 21
2
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
Fixes warning with xserver 1.20 and gcc 8.2: nv_driver.c:1443:9: warning: implicit declaration of function ‘wfbScreenInit’; did you mean ‘fbScreenInit’? [-Wimplicit-function-declaration] ret = wfbScreenInit(pScreen, FBStart, pScrn->virtualX, ^~~~~~~~~~~~~ fbScreenInit (See xserver 706e6d9cd074da606016ed4ecff51e9c2a822087) Signed-off-by: Rhys Kidd <rhyskidd at
2019 Jun 02
1
[PATCH] drm/nouveau/bios: downgrade absence of tmds table to info from an error
Absence of a TMDS Info Table is common on Optimus setups where the NVIDIA gpu is not connected directly to any outputs. Reporting an error in this scenario is too harsh. Accordingly, change the error message to an info message. By default the error message also causes a boot flicker for these sytems. Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> ---
2006 Jan 28
1
Re: Help with wine install
On 1/28/06, Rhys OReily <charger426bl@yahoo.com> wrote: > I have recently downloaded the Wine 0.9.2 RPM and > installed it on my computer, but when I tried to run > winecfg it came with a message saying there was no > such command. A little commandline magic located it: $ rpm -q -l -p wine-0.9.2-1fc4winehq.i686.rpm | grep winecfg /usr/bin/winecfg So it looks like it's in