Re: [asterisk-dev] Help with AOC (Advice Of Charge) - price info on outbound calls

2017-11-22 Thread Marin Odrljin
Yes, that’s the way my app works all the time, there is no any AOC event sent to ARI. I was also expecting such events are sent to Stasis since I have found in ‘stasis.conf’ possibility to decline them: ; decline=aoc_s_type ; decline=aoc_d_type ; decline=aoc_e_type Other configuration f

Re: [asterisk-dev] Help with AOC (Advice Of Charge) - price info on outbound calls

2017-11-22 Thread Matthew Jordan
On Wed, Nov 22, 2017 at 2:46 AM, Marin Odrljin wrote: > > Yes, that’s the way my app works all the time, there is no any AOC event sent > to ARI. I was also expecting such events are sent to Stasis since I have > found in ‘stasis.conf’ possibility to decline them: > > > > ; decline=aoc_s_type >

[asterisk-dev] Can someone please review something

2017-11-22 Thread Nir Simionovich
Hi All, I've started a new branch at team/nirs/cdr-redis-support I'm having some issues integrating the hiredis library into the automake. It seems to be configured correctly, however, for some odd reason it will not become available in the 'menuselect' tool. Would highly appreciate it if

Re: [asterisk-dev] Can someone please review something

2017-11-22 Thread Corey Farrell
Where did you push this branch?  I'm not seeing it on gerrit or github. On 11/22/2017 06:01 PM, Nir Simionovich wrote: Hi All,   I've started a new branch at team/nirs/cdr-redis-support   I'm having some issues integrating the hiredis library into the automake. It seems to be configured corr

Re: [asterisk-dev] Can someone please review something

2017-11-22 Thread Nir Simionovich
it's on gerrit - it's inside asterisk-team On Thu, Nov 23, 2017 at 1:11 AM Corey Farrell wrote: > Where did you push this branch? I'm not seeing it on gerrit or github. > > On 11/22/2017 06:01 PM, Nir Simionovich wrote: > > Hi All, > > I've started a new branch at team/nirs/cdr-redis-suppor

Re: [asterisk-dev] Can someone please review something

2017-11-22 Thread Corey Farrell
From your configure.ac: > AST_EXT_LIB_CHECK([REDIS], [redis], [redisReaderCreate], [hiredis/hiredis.h]) This tries linking with '-lredis', but it needs to use '-lhiredis': AST_EXT_LIB_CHECK([REDIS], [hiredis], [redisReaderCreate], [hiredis/hiredis.h]) In addition instead of using variable p

Re: [asterisk-dev] Can someone please review something

2017-11-22 Thread Nir Simionovich
Actually, I was more thinking about Redis as a PubSub mechanism, not as a static storage backend. Here is my take on things, developers need tools. Some developers prefer Redis, other may prefer beanstalk, and other may prefer log files. Each one has its merits and its issues, but the overall abil