similar to: chan_capi: sending incoming calls to different contexts

Displaying 20 results from an estimated 100 matches similar to: "chan_capi: sending incoming calls to different contexts"

2004 Aug 07
2
Asterisk : No Sound Issues
Hi , Thanks greg , for pointing out the valuable resources for reference. I tried SJphone in a windows environment to connect to fwd and it worked fine(including (audio). Now have to do the same thing for linux(red hat 9 ) and hope the nat issue is resolved. Now i would like to connect asterisk to fwd and instead of the SJ phone connecting to fwd directly i would wish to connect through
2004 Aug 07
2
Asterisk : No Sound No Dial
Thanks for taking a look greg and hank. This seems to be getting bettre everyday..help please My sjphone is running on the same box as asterisk...i believe then the red hat firewall should not be a problem. Whenever i dial from CLI i get ######### Executing Goto("OSS/dsp", "default|s|1") in new stack -- Goto (default,s,1) -- Executing Wait("OSS/dsp",
2005 Mar 04
2
Multiple telephone participants
I am brand new to Asterisk. My question is if I want to have multiple participants all listening, or listening and talking, do I need to have a separate telephone line for each, or can they all dial in using a single telephone number and a single line? Thanks, John Fistere -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Jul 12
3
RFC: changing variable naming rules in LLVM codebase
Rui Ueyama via llvm-dev <llvm-dev at lists.llvm.org> writes: > - LLVM's `/*foo=*/`-style comment to annotate function arguments need > to be handled automatically to make the tool scalable. So is the > doxygen @parameter. This is a bit of a side note, but in my own work I've more recently tried to move from this style: foo.h int foo(int a, bool doSomething); foo.cpp
2006 Jan 29
2
GetText and rjs templates?
hi, is it possible that gettext don''t work with rjs templates? i''ve just tried this simple example blog_controller.rb : class BlogController < ApplicationController def index end def dosomething end end index.rhtml : <html> <head> <%= javascript_include_tag :defaults %> </head> <body> <div id="test">Some text to change
2005 Aug 27
1
Asterisk ISDN: Problem Setting CallerID as DID Extension Numbers.
Hello Group, Current Setup: - Eicon Quad BRI ISDN Card. - 4 ISDN BRI (Telco: Telstra) Onramp2 services. - Mode: Point2Point. - 100 Indial Number ranges. Full National Number (9 digit format): BAAAAAAXX where: B (Area code): 2/3/7/8 A (Normal Numbers) X (99 Indial extensions) eg: BAAAAAA00 BAAAAAA20 etc Requirement: - To be able send Indial numbers as Caller ID when dialing out. Configration:
2018 Aug 09
3
WishList: Remove Generic Arguments
I apologize if this issue has been raised before. I really like object oriented S3 programming. However, there's one feature of object oriented S3 programming that I don't like. Generic functions can have arguments other than dots. Lets say you have an R package with something like: print.myfunction (f, ...) { dosomething (f, ...) } Noting that I use function objects a lot. R CMD
2019 Jul 12
2
RFC: changing variable naming rules in LLVM codebase
David Blaikie <dblaikie at gmail.com> writes: > Why would enums be less elegant than named boolean constants as you've shown here? Casting, mainly. If the parameters were also changed to an enum type that would be fine too, probably better than inline variables even. > http://jlebar.com/2011/12/16/Boolean_parameters_to_API_functions_considered_harmful..html > (at a random
2013 Sep 24
5
[LLVMdev] LLD: Returning true on success
Hi LLD developers, I'm about to make a change to invert the return value of Driver::parse() to return true on success. Currently it returns false on success. In many other functions, we return true to indicate success and false to indicate failure. The inconsistency is confusing, and fixing it should improve code readability. -------------- next part -------------- An HTML attachment was
2008 Feb 29
1
Optional data argument for a function
Dear All, I am working on a function that has an optional data argument, just like lm(). If the user sets the data argument equal to some dataframe, then the function should look inside the dataframe for the variables given to other arguments, otherwise the variables should be accessible from what I believe is called the parent frame from which the function was called. I looked at the source code
2019 May 26
2
"if" function in pure R?
Hi all, Could anyone refer to me to a good source to learn how to program a simple control-flow construct* in R, or provide me with a simple example? Control-flow constructs are programmed as primitives, but I would like to be able to do that (if possible) in pure R. The general context is that those functions are a mystery to me. The motivating example is that I would like to create a function
2008 Sep 17
1
Dealing with missing EOL at end of file
Colleagues, I am using R 2.7.2 on all three platforms (OS X; Windows; Linux) and I have encountered the following problem: I use R to issue a system call the execute a command in the OS. For example: system("DOSOMETHING TOSOMEFILE") In most situations, this task completes successfully and control returns to R. However, in rare situations, the target file (TOSOMEFILE) is
2006 May 02
5
How to call a javascript function from rails view?
Is there a way to call a javascript function from within a rails view? I can''t use the onLoad javascript method inside the <body> tag because I don''t have control over the body tag, it''s in my header. There are several rss feed reading functions that are in the page and I would like to call those functions while the page is being loaded or once it''s
2012 Dec 20
2
Filling Lists or Arrays of variable dimensions
Following problem: Say you have a bunch of parameters and want to produce results for all combinations of those: height<-c("high","low") width<-c("slim","wide") then what i used to do was something like this: l<-list() for(h in height){ l[[h]]<-list() for(w in width){ l[[h]][[w]] <- doSomething() } } Now those parameters aren't
2012 Jul 31
3
Access @resouce in custom type
Is it possible to access @resource variables inside a type? I would like to make some decisions on parameters based on other parameters that may have already been set. For example, --- newparam(:param1) do Puppet.debug "Found drivesperarray parameter" desc "parameter 1" validate do |value| if resource[:otherparam] then #dosomething else
2013 Sep 24
0
[LLVMdev] LLD: Returning true on success
On Tue, Sep 24, 2013 at 12:33 PM, Rui Ueyama <ruiu at google.com> wrote: > Hi LLD developers, > > I'm about to make a change to invert the return value of Driver::parse() > to return true on success. Currently it returns false on success. > > In many other functions, we return true to indicate success and false to > indicate failure. The inconsistency is confusing,
2006 Nov 02
2
fax eater
We have a 100 number indial range and every so often get fax calls on our voice numbers (our fax number isn't in the 100 number range). If you just hang up the sending fax will often try a few times before finally giving up. Our outgoing fax is connected to the PBX (not asterisk), and we can do a blind transfer to that which will print it out, but right now the fax is printing a misdialled
2014 Nov 04
10
[LLVMdev] lifetime.start/end clarification
The LRM (http://llvm.org/docs/LangRef.html#llvm-lifetime-start-intrinsic) essentially states that: - ptr is dead before a call to "lifetime.start size, ptr" - ptr is dead after a call to "lifetime.end size, ptr" This is all good and fine, and the expected use case is that all "lifetime.end size, ptr" markers are matched with a preceding "lifetime.start
2013 Sep 24
3
[LLVMdev] LLD: Returning true on success
On Sep 24, 2013, at 12:40 PM, Michael Spencer <bigcheesegs at gmail.com> wrote: > On Tue, Sep 24, 2013 at 12:33 PM, Rui Ueyama <ruiu at google.com> wrote: > Hi LLD developers, > > I'm about to make a change to invert the return value of Driver::parse() to return true on success. Currently it returns false on success. > > In many other functions, we return true
2006 Feb 23
2
Incoming/Outgoing call question
Hey everyone, I have a more of an opinion question then a technical question. The asterisk server I am setting up is going to host 3 different businesses. Each business is in the same building, and on the same network. My question is regarding calls coming in and going out. We are a small ISP and have a lot of numbers that are forwarded to our phone system. The other companies have about 3