similar to: Goto not jumping to current context

Displaying 20 results from an estimated 400 matches similar to: "Goto not jumping to current context"

2011 Mar 02
1
Doubt about cdr on asterisk
I have the following situation.... I'm using Action Originate to originate a call for a costumer. Originate goes to a context that call the dial application. Before the application (Dial using the G option) to be invoked i'm setting the variable cellphone like this: [firstcontext] exten => s,1,Set(CDR(cellphone)=${CELLPHONE}) exten => s,n,Dial(IAX2/user:pass at
2007 Dec 21
1
txfax not working with spandsp
the attached log with verbose=6 and debug=6 refers. we've got a sangoma A104 (no hwec) with PRI ports 1 & 3 loopbacked to each other. we're trying to have txfax send out on one of those pri ports with rxfax listening on the other side, hence having asterisk send a fax to itself. we however have bad, and i mean really bad (<10%) success rates. we're currently using asterisk
2018 Apr 08
0
core dumped when using MatchAll in multi-threads
Hi, We have a search service based on xapian, when receving a request, we create several threads to create xapian-query and search in the corresponding databases, and then merge all results together. In some case, we use Xapian::Query::MatchAll to create the query, but it always has Segmentation fault (core dumped). It looks like some pointers are double freed. This is the function that we use
2015 Feb 23
2
Perl bindings and MatchAll / MatchNone
I've just had a quick look at the XS, but I can't see quite how to make these (or just MatchAll, really) available through the Perl binding ... where should I start please?
2005 Jan 25
0
Goto invalid extension doesn't go to 'I' when in a macro.
Hi, A bit of a problem here which I'd appreciate some thoughts on. (please excuse the stray capital letters - Outlook has a habit of capitalising where I don't want it to!) For various reasons, I need to be able to do the following: --------------8<-------------- [default] Exten => s,1,Macro(dosomething,9999) Exten => s,2,NoOp(Returned) [macro-dosomething] Exten =>
2008 Sep 27
3
Query::MatchAll
Why there still been rank when using Query::MatchAll() ?
2004 Aug 25
0
freebsd 4.10 and port misc/zaptel
hey asterisk folk, i'm new to asterisk, but not to freebsd as i've been using it and developing on it for quite a few years. we're planning on deploying asterisk as part of a voip provider's service platform and naturally i'd rather be using freebsd instead of a linux based distro. as such, i am very, very excited that there is work going on towards porting the zaptel drivers
2018 Jan 24
0
How to get the serialise score returned in Xapian::KeyMaker->operator().
On Tue, Jan 23, 2018 at 12:55:31AM +0800, 张少华 wrote: > We realise our score function using PostingSource instead of using > KeyMaker, we reference your python example and source code of xapian, > the simple demo is here. > https://github.com/xiangqianzsh/xapian_leaning/blob/master/postingsource/ExternalWeightPostingSource.h I'd just put the get_weight() and get_maxweight()
2024 Apr 26
2
queries for a set of values
On Fri, Apr 26, 2024 at 10:37:37PM +0000, Eric Wong wrote: > Say I have a bunch of values which I want to filter a query against. > If I had boolean terms, it could just OP_OR against the whole set. > IOW, this is what notmuch does with terms: > > std::set<std::string> terms; > > // notmuch populates terms via terms.insert(*i)... > > Query(OP_OR,
2006 Apr 04
1
asterisk-ooh323, asterisk 1.2.6 and netmeeting
has anyone managed to get these three beasties to work together ? we're using ooh323 from asterisk-addons-1.2.2, asterisk 1.2.6 and microsoft netmeeting default from windows xp. the symptoms are that calls from a SIP client to NetMeeting rings on NetMeeting, but upon answering the call in NetMeeting, no audio is passed between the two. eventually, the call times out and hangs up. on a
2004 Dec 25
1
Asterisk and Lucent APX8100 Universal Gateway
we're evaluating the use of a Lucent APX8100 E3/SS7 to SIP gateway for use in conjunction with asterisk, serving something like 4000+ lines. does anyone have experience with the APX8100 and it's integration with SIP on asterisk ? does the APX8100 handle SS7<->SIP signalling well enough to be used ? any anecdotes would be well appreciated. -- Regards,
2005 Oct 05
3
SIP Attended Transfer using REFER and Replaces: headers
hey all, am wondering if anyone has successfuly done a SIP attended transfer using the REFER method (after an INVITE obviously) and the Replaces: header. we're writing our own SIP UAC and the asterisk code seems to support it, but we're not really sure if this is so. we plan on the following call flows: 1. incoming call from exten 1111 is sent to our UAC with Dial() 2. our UAC makes
2013 Jun 19
2
Compact databases and removing stale records at the same time
I'm trying to compact (or at least merge) multiple databases, while stripping search records which are no longer required. Backstory: I've inherited the Cyrus IMAPd xapian-based search code from Greg Banks when he left Opera. One of the unfinished parts was removing expunged emails from the search database. We moved from having a single search database to supporting multiple
2001 Oct 19
2
wine 20010824 and quake
i have quake v1.06 installed and running fine under windows. however, running it in wine gives a bunch of errors. see below: prophet% wine --winver win98 -- QLAUNCH.EXE QUAKEUDP.DLL QUAKE.EXE -mpath fixme:win32:DEVICE_Open Unknown VxD MGenVxD.VXD. Try --winver nt40 or win31 ! prophet% wine --winver nt40 -- QLAUNCH.EXE QUAKEUDP.DLL QUAKE.EXE -mpath fixme:win32:DEVICE_Open Unknown VxD MGenVxD.VXD.
2018 Feb 08
7
How to ensure thread-safety
Hi, I have read the concurrency webpage from the Xapian documentation: http://getting-started-with-xapian.readthedocs.io/en/latest/concepts/concurrency.html But it is still not clear to me how to ensure thread-safety when using libxapian (C++ API). Usually when doing multi-threading many threads can read the same variable concurrently without locking provided none of the threads modifies the
2010 Dec 28
1
Printing all records when search is not present
Hi, I want to print all the records from the passed database when the search string is not present. I quickly skimmed through the API but I couldn't find a way to do it. Can someone show some pointers. Thanks, Shri
2018 Feb 12
0
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
FYI there is now serious talk of the Linux kernel dropping support for compilers that *don't* support asm goto. On Tue, 2017-04-04 at 13:13 -0700, Matthias Braun via llvm-dev wrote: > > > On Apr 4, 2017, at 11:44 AM, John McCall via llvm-dev > > ts.llvm.org> wrote: > > > > > On Apr 4, 2017, at 2:12 PM, Matthias Braun <matze at braunis.de> > >
2018 Feb 14
0
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
On Tue, 2017-04-04 at 16:26 +0000, Chandler Carruth via llvm-dev wrote: > On Tue, Apr 4, 2017 at 6:07 AM Yatsina, Marina via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Asm goto feature was introduces to GCC in order to optimize the > > support for tracepoints in Linux kernel (it can be used for other > > things that do nop patching). > >   > > GCC
2017 Mar 30
3
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
Linux kernel is using the “asm goto” feature, other projects probably use it as well. I think it provides motivation to support it in LLVM. Regarding the complexity, I believe there is some infrastructure that we can at least partially reuse (the support for “indirectbr” instruction). My focus is adding “asm goto” support, the other things are indeed completely orthogonal and came up in bugs
2008 Jun 04
0
Patch for app_asr.c: DTMF instead of goto
Hi to all if someone of you is interested on it, i've changed the code of app_asr.c With these patch you can use the ASR application to play DTMF tones, so you can have your own AGI application that uses the ASR and manages the DTMF tones without change the dialplan. EXAMPLE exten => 003,1,Ringing exten => 003,2,Wait(3) exten => 003,3,Answer exten =>