Re: [asterisk-dev] Opus codec Development

2019-06-25 Thread Tzafrir Cohen
Hi all, On 25/06/2019 13:47, Joshua C. Colp wrote: > On Tue, Jun 25, 2019, at 7:44 AM, Mohit Dhiman wrote: >> Hi, >> Can anybody please share what is the development process of opus codec >> in Asterisk? >> Does Asterisk uses the fork from official xiph opus repository for >> development

[asterisk-dev] Fwd: Bug#925760: libss7: ftbfs with GCC-9

2019-03-29 Thread Tzafrir Cohen
Hi, I wanted to report this as a bug on the libss7 component, but I failed to do so: there are no versions there and thus I can't set a version. Basically it seems gcc does not like strncpy with size same as the buffer size, as in case the source is not null-terminated, the target won't be.

[asterisk-dev] dahdi_span_assignments fails because of missing "spantypes"

2019-03-13 Thread Tzafrir Cohen
Hi, It seems that a relatively recent change in DAHDI-linux (Was this change made by me? maybe) broke the userspace interface a bit: as of kernel 4.13 the dahdi device has the attibute "dahdi_spantypes" instead of "spantypes".

Re: [asterisk-dev] No tag for 13.24.0?

2018-12-17 Thread Tzafrir Cohen
On 17/12/2018 11:52, Niklas Larsson wrote: Hi, I can't find tags for release versions, only the rc - snipped from git tag: 13.20.0-rc1 13.20.0-rc2 13.21.0 13.21.0-rc1

[asterisk-dev] review: dahdi_span_assignments compare

2018-05-07 Thread Tzafrir Cohen
The following patch to dahdi-tools adds the 'compare' subcommand to dahdi_span_assignments, similar to that was earlier added to dahdi_span_types. That is: it will give an output and a non-zero exit value if 'dahdi_span_assignment add' will cause any spans to be assigned. --

[asterisk-dev] [PATCH] dahdi_span_assignments: compare subcommand

2018-05-07 Thread Tzafrir Cohen
dahdi_span_assignments compare, similar to dahdi_span_types compare. Signed-off-by: Tzafrir Cohen <tzafrir.co...@xorcom.com> --- dahdi_span_assignments | 45 doc/dahdi_span_assignments.8 | 22 +- 2 files changed, 66 insertions

Re: [asterisk-dev] Which enviroments are supported, really?

2018-01-22 Thread Tzafrir Cohen
system. The default is dash. -- Tzafrir Cohen +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev

Re: [asterisk-dev] tags on the main branches [was: Re: Minor Release Branches]

2017-12-26 Thread Tzafrir Cohen
ev-commit With this, 'git lol' instead of 'git log' gixes you a commits graph with all the branch heads and tags visible. -- Tzafrir Cohen +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _

Re: [asterisk-dev] dahdi dynamic spans and auto-assignment: mostly success

2017-12-26 Thread Tzafrir Cohen
On Mon, Apr 25, 2016 at 04:53:22PM +0300, Tzafrir Cohen wrote: > Hi, > > I wanted to play with local (dynamic) dahdi spans. Therefore I wanted to > figure out how they work with span auto-assignment. It turned out that > reasonably well. > > For starters: move the dynam

Re: [asterisk-dev] reproducible builds of asterisk

2017-12-20 Thread Tzafrir Cohen
On Wed, Dec 20, 2017 at 01:55:31PM -0600, Matt Fredrickson wrote: > Hey Tzafrir, > > On Wed, Dec 20, 2017 at 3:53 AM, Tzafrir Cohen <tzafrir.co...@xorcom.com> > wrote: > > Hi, > > > > There is a patch in the Debian package to build Asterisk in a > &g

Re: [asterisk-dev] tags on the main branches [was: Re: Minor Release Branches]

2017-12-20 Thread Tzafrir Cohen
On Wed, Dec 20, 2017 at 07:50:03AM -0700, George Joseph wrote: > On Wed, Dec 20, 2017 at 2:44 AM, Tzafrir Cohen <tzafrir.co...@xorcom.com> > wrote: > > > Off-topic: > > > > On Tue, Dec 19, 2017 at 01:50:03PM -0700, George Joseph wrote: > > > > > T

[asterisk-dev] reproducible builds of asterisk

2017-12-20 Thread Tzafrir Cohen
for a reprodicible build of Asterisk. [1] https://reproducible-builds.org/ -- Tzafrir Cohen +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _ -- Bandwidth and Colocation Provided by http

[asterisk-dev] tags on the main branches [was: Re: Minor Release Branches]

2017-12-20 Thread Tzafrir Cohen
nch in the version string is always "master". We tag everything. But only well after it was branched from the main branch. -- Tzafrir Cohen +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://w

[asterisk-dev] [PATCH 2/2] Avoid a race between /etc/init.d/dahdi and hotplug scripts:

2017-08-31 Thread Tzafrir Cohen
From: Oron Peled * On some systems/configurations, dahdi init script may kick in during the time that hotplug scripts are configuring spans. * It may lead to a race since the init script runs "dahdi_auto_assign_compat" which calls "dahdi_registration" and that tries

[asterisk-dev] [PATCH 1/2] dahdi_span_assignments: matched and unmatched

2017-08-31 Thread Tzafrir Cohen
From: Oron Peled Add two new subcommands to dahdi_span_assignments: * matched: list all spans that are in devices that have been registered and are matched by span_assignments.conf lines. * unmatched: list all such existing spans that have not been matched by

[asterisk-dev] fix for DAHTOOL-78: race: both init script and hotplug may configure astribanks at boot time

2017-08-31 Thread Tzafrir Cohen
The following two patches (The first adds a helper functoinality and the second includes the fix) fix a race in case a system uses hot-pluggable DAHDI and yet includes the iinit script. IIt doesn't cover some edge cases, but those are much less interesting (systems where not all the spans are

[asterisk-dev] [PATCH] fail non-blocking I/O in case of span unassignment

2017-06-20 Thread Tzafrir Cohen
In case a user has a file descriptor that is used for non-blocking I/O and the span to which it belongs gets unassigned, its reads and writes will still yield -EAGAIN. This commit adds a test for such a case and returns the proper -ENODEV. Signed-off-by: Tzafrir Cohen <tzafrir.co...@xorcom.

[asterisk-dev] Review: DAHDI: fail non-blocking I/O in case of span unassignment

2017-06-20 Thread Tzafrir Cohen
The MCF/R2 in Asterisk's chan_dahdi is an example of a program that uses non-blocking I/O with DAHDI. If you unassign a span that is used for MFC/R2 with Asterisk, you start getting an endless loop of EAGAIN errors. This is because in case of a non-blocking I/O read that has nothing to return,

[asterisk-dev] [PATCH] dahdi_span_types: compare

2017-06-13 Thread Tzafrir Cohen
This adds an extra subcommand: compare: shows span that have been configured (in /etc/dahdi/span_types.conf) to a different value than the one currently active on the system. Signed-off-by: Tzafrir Cohen <tzafrir.co...@xorcom.com> --- dahdi-bash-completion | 4 ++-- dahdi_span_types

[asterisk-dev] [PATCH] dahdi-tools: add command 'compare' to dahdi_span_types

2017-06-13 Thread Tzafrir Cohen
Applying /etc/dahdi/span_types.conf with 'dahdi_span_types set' requires the spans not to be assigned. In my application I needed to apply a configuration that may include changes to span_types.conf (but normally doesn't). If I do need to apply changes, I need to unassign the spans before doing

Re: [asterisk-dev] C++ Asterisk Module

2017-04-06 Thread Tzafrir Cohen
vpb.cc is in the tree (though disabled by default). Asterisk 11 had channels/chan_h323.c that was C, but interfaced with C++ code under channels/h323/ . -- Tzafrir Cohen +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorc

[asterisk-dev] [PATCH] xpp: prevent dracut from loading Astribank drivers

2017-03-22 Thread Tzafrir Cohen
Prevent an early load of the Astribank (xpp) drivers at initrd time, as they require some files from the root filesystem. This installs a file in the dracut configuration directory that will take effect the next time dracut generates an initrd image. --- configure.ac | 9 +

[asterisk-dev] dahdi and dracut initramfs

2017-03-22 Thread Tzafrir Cohen
up example that may or may not make sense and be supported in dracut. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

Re: [asterisk-dev] Line length restrictions in code changes

2017-03-16 Thread Tzafrir Cohen
mp; do_something_to_it(a_good_variable_name->another_good_name)) { // Do things } -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- __

[asterisk-dev] G.729 licensing

2017-01-31 Thread Tzafrir Cohen
It seems that the license of the patents in the G.729 patent pool has expired: http://www.sipro.com/G729.html Are there still pending issues? Will a patch to add a G.729 codec be considered? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50

Re: [asterisk-dev] review: remove support for named channels from chan_dahdi

2016-10-27 Thread Tzafrir Cohen
eature had any use I would call to deprecate it first. But I'm not aware of any use for it. Anybody mind removing a few lines from chan_dahdi.c ? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.co

[asterisk-dev] review: remove support for named channels from chan_dahdi

2016-10-18 Thread Tzafrir Cohen
to DAHDI channels by name is not really used by anyone, and therefore should probably be removed. So, has anyone used this feature? Anybody found it useful? [1] https://gerrit.asterisk.org/4156 -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50

Re: [asterisk-dev] Asterisk 14.0.1 Now Available

2016-10-05 Thread Tzafrir Cohen
it is not LTS. Has anybody updated the version of the patch for 14 and/or master? [1] https://www.opus-codec.org/license/ [2] https://github.com/seanbright/asterisk-opus [3] https://github.com/traud/asterisk-opus [4] http://git.xorcom.com/?p=rpm/asterisk.git -- Tzafrir Cohen icq

Re: [asterisk-dev] Using command line arguments in other file than asterisk.c

2016-09-14 Thread Tzafrir Cohen
lly relate to asterisk.conf options. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _ -- Bandwi

[asterisk-dev] SONAME of libtonezone (dahdi-tools)

2016-06-28 Thread Tzafrir Cohen
Hi, See https://issues.asterisk.org/jira/browse/DAHTOOL-74 . Should it be reverted to the value before 2.11? While I'm at it: what would it take to move dahdi-linux and dahdi-tools to Gerrit? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50

Re: [asterisk-dev] ASTERISK-26145 - Task Process Issues possibly caused by HEP

2016-06-28 Thread Tzafrir Cohen
n't know what they are doing. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _ -- Bandwidth and Colocatio

[asterisk-dev] remove dahdi-speed

2016-06-26 Thread Tzafrir Cohen
is good for and hence decided it's not worth the very little overhead it adds. Anybody who actually thinks it is useful: have you actually used it? Why are you sure it does what it is supposed to do (and what is it, exactly)? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co

Re: [asterisk-dev] BuildSystem: make --jobs without amount of thread hangs

2016-06-09 Thread Tzafrir Cohen
issue with make calling itself recursively endlessly and thus creating a mini-ofrk bomb? This should be easy to tell from a look at the process tree (ps fax or whatever) at the time of such a "build", assuming you can run it. -- Tzafrir Cohen icq#16849755

Re: [asterisk-dev] JIRA 25988: Systemd unit file for Asterisk: Submission

2016-05-18 Thread Tzafrir Cohen
de a tmpfiles file as well. > ExecStart=/usr/sbin/asterisk -f -C /etc/asterisk/asterisk.conf > ExecStop=/usr/sbin/asterisk -rx 'core stop now' > ExecReload=/usr/sbin/asterisk -rx 'core reload' > Restart=always Check how this interacts with "asterisk -rx 'core stop now'"

Re: [asterisk-dev] JIRA 25988: Systemd unit file for Asterisk: Submission

2016-05-16 Thread Tzafrir Cohen
n the ExecStop command and after it returns will kill all the processes remaining in the control group. Hence merely running 'core stop ' is useless, as systemd will kill it now. In fact, without a wrapper, such an ExecStop command is probably useless with asterisk. -- Tzafrir Cohen

Re: [asterisk-dev] [asterisk-users] Ubuntu 14 Warning

2016-05-03 Thread Tzafrir Cohen
gt; run "apt-get update" and "apt-get upgrade" manually, or run "apt-get > install libsnmp-dev" manually and say "no" to the first solution and "yes" > to the second. Then run install_prereq. Could you please provide a more complete log? Se

[asterisk-dev] dahdi dynamic spans and auto-assignment: mostly success

2016-04-25 Thread Tzafrir Cohen
1:2:32 # (Nothing special in the rest of the configuration files) -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com h

Re: [asterisk-dev] Attn: pjproject packagers

2016-02-28 Thread Tzafrir Cohen
use instead of it's intended client app use? Can you please give an example of the changes required? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _

Re: [asterisk-dev] Sending digits directly to Asterisk using DAHDI during ramal dialing

2016-02-03 Thread Tzafrir Cohen
you have a misconfigured phone/line (or badly-written driver). Reporting DTMF up and DTMF down is left for various drivers to implement, if they choose to. As you can see, there are currently two drivers that may send those events. See also DAHDI_TONEDETECT . -- Tzafrir Cohen i

Re: [asterisk-dev] Proposal to bring pjproject back into the fold

2016-01-20 Thread Tzafrir Cohen
dependencies, and I tried to do something about them (remove unused libraries). Off-topic: is there any point in providing the pjsua (the terminal-based example client) in a separate binary package from the pjproject source package? Is it useful enough for testing? -- Tzafrir Cohen icq#

Re: [asterisk-dev] Transcoding: Codec 2, iLBC 20, SILK, GSM-EFR, AMR(-WB)

2015-12-08 Thread Tzafrir Cohen
I read it is used at even lower rates. If I get a "codec2" stream, which rate (and/or other parameters) are used? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-795

Re: [asterisk-dev] Asterisk Docker Containers: Phase 1

2015-11-26 Thread Tzafrir Cohen
Includes the Opus codec patch (thanks for all those who keep help maintain it). -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _

[asterisk-dev] dahdi modules (un)loading and systemd

2015-11-07 Thread Tzafrir Cohen
ading bits from the init.d script. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _ -- Bandwidth and

Re: [asterisk-dev] asterisk rpm package: asterisk-config

2015-06-17 Thread Tzafrir Cohen
Hi, On Tue, Jun 16, 2015 at 11:06:02AM +0300, Tzafrir Cohen wrote: Hi, I'd like to get some feedback on the following: In the packaging of asterisk, I'd like to be able to provide an alternative set of asterisk configuration files as an rpm package. For instance, I know that FreePBX has

[asterisk-dev] asterisk rpm package: asterisk-config

2015-06-16 Thread Tzafrir Cohen
: asterisk %{version}, asterisk %{version} another-asteris-config.spec: Provides: asterisk-config Any thoughts? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

[asterisk-dev] automake support in dahdi-tools

2015-05-19 Thread Tzafrir Cohen
remember anybody asking for it. Could it be removed? Or at least: not installed by default? * Add an option to set the perl directory to the vendorlib (again, a pending Debian patch). I'd like to commit this patchset in a few days, if there are no comments. -- Tzafrir Cohen icq

Re: [asterisk-dev] Asterisk Beacon Module Proposal

2015-05-13 Thread Tzafrir Cohen
On Tue, May 12, 2015 at 01:24:17PM -0500, Scott Griepentrog wrote: On Tue, May 12, 2015 at 12:59 PM, Tzafrir Cohen tzafrir.co...@xorcom.com wrote: Quoting the spec: | Spoofing | | In order to limit spoofing, the server will return a token for all | accepted requests to a server

Re: [asterisk-dev] Asterisk Beacon Module Proposal

2015-05-12 Thread Tzafrir Cohen
On Tue, May 12, 2015 at 10:39:04AM -0600, George Joseph wrote: On Tue, May 12, 2015 at 10:08 AM, Jeffrey Ollie j...@ocjtech.us wrote: On Tue, May 12, 2015 at 9:47 AM, George Joseph george.jos...@fairview5.com wrote: On Tue, May 12, 2015 at 5:41 AM, Tzafrir Cohen tzafrir.co...@xorcom.com

Re: [asterisk-dev] Asterisk Beacon Module Proposal

2015-05-12 Thread Tzafrir Cohen
. And this removes complexity from the Asterisk process. It also removes unnecessary network connectivity from the Asterisk process, and simplifies settings of whatever network settings. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406

Re: [asterisk-dev] Asterisk Beacon Module Proposal

2015-05-12 Thread Tzafrir Cohen
want to spoof that (as opposed to merely add records to skew the stats, which is possible either way just as easily). What am I missing here? [1] https://packages.debian.org/sid/popularity-contest -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50

Re: [asterisk-dev] Asterisk Beacon Module Proposal

2015-05-12 Thread Tzafrir Cohen
the main process. KISS! This makes it part of the asterisk service, as far as systemd is concerned. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

Re: [asterisk-dev] Journald support for Asterisk

2015-05-12 Thread Tzafrir Cohen
, you have a Dict of Strings. That's nice in theory. Could you please give an example of the required output? An example of how it would help? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http

Re: [asterisk-dev] Asterisk Beacon Module Proposal

2015-05-11 Thread Tzafrir Cohen
to the distribution. People may also run custom kernels with standard distribution packages. lsb_release --all here gives me: No LSB modules are available. Distributor ID: Debian Description:Debian GNU/Linux 8.0 (jessie) Release:8.0 Codename: jessie -- Tzafrir Cohen icq

Re: [asterisk-dev] Asterisk Beacon Module Proposal

2015-05-11 Thread Tzafrir Cohen
part, not with the collecting part. If you don't trust asterisk, don't run it. So how about a module that collects data and, on request, dumps it for sending? This will be done by a simple cron job (asterisk -rx; wget) that is simple to inspect. -- Tzafrir Cohen icq#16849755

[asterisk-dev] systemd sd_notify() [was: Re: Journald support for Asterisk]

2015-05-10 Thread Tzafrir Cohen
to anything else besides notifying systemd via sd_notify()? [1] http://www.freedesktop.org/software/systemd/man/sd_notify.html [2] Bad name, I know. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com

Re: [asterisk-dev] systemd sd_notify() [was: Re: Journald support for Asterisk]

2015-05-10 Thread Tzafrir Cohen
On Sun, May 10, 2015 at 11:03:06AM +0300, Tzafrir Cohen wrote: On Sat, May 09, 2015 at 10:17:24AM +0200, Ludovic Gasc wrote: Hi, Systemd and Journald is now by default on Debian Jessie and Ubuntu 15.04, as on RHEL/CentOS. Journald supports syslog format, nevertheless, at least for us

[asterisk-dev] Change in asterisk[master]: main/editline: Add .gitignore.

2015-04-12 Thread Tzafrir Cohen (Code Review)
Tzafrir Cohen has posted comments on this change. Change subject: main/editline: Add .gitignore. .. Patch Set 1: Why is it not included in the main .ignore? main/editline/Makefile etc. -- To view, visit https

[asterisk-dev] CDR: log? lib?

2014-12-31 Thread Tzafrir Cohen
also wonder if they're useful enough to be generated by default (that is: if you can't be bothered to think about rotating them, don't generate them). The same applies to cdr_sqlite, of course. Any thoughts? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co

Re: [asterisk-dev] git migration update

2014-12-22 Thread Tzafrir Cohen
don't think I'd want automerge. Autorebase is probably bad as you can't clone that branch. If I rebase a branch I'd like to decide when it is done. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http

Re: [asterisk-dev] [Code Review] 4118: install init.d files on GNU/kFreeBSD

2014-10-31 Thread Tzafrir Cohen
-gnu uclinux linux-uclibc kfreebsd-gnu),) Diffs - /branches/13/Makefile 426754 Diff: https://reviewboard.asterisk.org/r/4118/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided

Re: [asterisk-dev] [Code Review] 4118: install init.d files on GNU/kFreeBSD

2014-10-30 Thread Tzafrir Cohen
-gnu),) Diffs (updated) - /branches/13/Makefile 426754 Diff: https://reviewboard.asterisk.org/r/4118/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api

Re: [asterisk-dev] [Code Review] 4117: Fix building chan_phone on big endian systems

2014-10-29 Thread Tzafrir Cohen
endian platforms (sparc, powerpc, s390x) on buildd.debian.org now build. Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update

[asterisk-dev] [Code Review] 4117: Fix building chan_phone on big endian systems

2014-10-28 Thread Tzafrir Cohen
. Fix those as well? Diffs - /branches/13/channels/chan_phone.c 426440 Diff: https://reviewboard.asterisk.org/r/4117/diff/ Testing --- Big endian platforms (sparc, powerpc, s390x) on buildd.debian.org now build. Thanks, Tzafrir Cohen

[asterisk-dev] [Code Review] 4118: install init.d files on GNU/kFreeBSD

2014-10-28 Thread Tzafrir Cohen
/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo

Re: [asterisk-dev] Changing hard coded TEST_RESULTS variable in testsuite

2014-10-23 Thread Tzafrir Cohen
there). -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _ -- Bandwidth and Colocation Provided by http://www.api

Re: [asterisk-dev] asterisk-testsuite: linux-only

2014-10-13 Thread Tzafrir Cohen
On Mon, Oct 13, 2014 at 09:18:10AM -0400, Russell Bryant wrote: On Mon, Oct 13, 2014 at 1:58 AM, Tzafrir Cohen tzafrir.co...@xorcom.com wrote: Hi I finally got the asterisk-testsuite accpted into Debian (I know, I need to get it updated). A related question ... what's the value

[asterisk-dev] asterisk-testsuite: linux-only

2014-10-12 Thread Tzafrir Cohen
run Lua tests (is it used for Python ones as well?) -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

Re: [asterisk-dev] [Code Review] 3972: Change DAHDI_UDEV_HOOK_DIR to honor --prefix

2014-09-04 Thread Tzafrir Cohen
/2014-September/070114.html - Tzafrir Cohen On Sept. 3, 2014, 1:57 p.m., David Lee wrote: --- This is an automatically generated e-mail. To reply, visit: https://reviewboard.asterisk.org/r/3972

Re: [asterisk-dev] [Code Review] 3931: runtests.py: -n (--dry-run)

2014-08-28 Thread Tzafrir Cohen
them. Diffs - /asterisk/trunk/runtests.py 5520 Diff: https://reviewboard.asterisk.org/r/3931/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com

Re: [asterisk-dev] [Code Review] 3931: runtests.py: -n (--dry-run)

2014-08-28 Thread Tzafrir Cohen
/runtests.py 5520 Diff: https://reviewboard.asterisk.org/r/3931/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE

Re: [asterisk-dev] [Code Review] 3931: runtests.py: -d (--dry-run)

2014-08-26 Thread Tzafrir Cohen
--- This is an automatically generated e-mail. To reply, visit: https://reviewboard.asterisk.org/r/3931/#review13170 --- On Aug. 24, 2014, 5:44 p.m., Tzafrir Cohen wrote

Re: [asterisk-dev] [Code Review] 3931: runtests.py: -d (--dry-run)

2014-08-26 Thread Tzafrir Cohen
://reviewboard.asterisk.org/r/3931/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http

[asterisk-dev] [Code Review] 3949: a separate output-dir option

2014-08-26 Thread Tzafrir Cohen
noone shouts at me for that. Diffs - /asterisk/trunk/runtests.py 5520 Diff: https://reviewboard.asterisk.org/r/3949/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http

[asterisk-dev] [Code Review] 3931: runtests.py: -d (--dry-run)

2014-08-24 Thread Tzafrir Cohen
Description --- Adds option -d (--dry-run) to runtests.py to just list the tests that will be run and not actually run them. Diffs - /asterisk/trunk/runtests.py 5520 Diff: https://reviewboard.asterisk.org/r/3931/diff/ Testing --- Thanks, Tzafrir Cohen

[asterisk-dev] [Code Review] 3932: runtests.py: -H (--hide-skipped)

2014-08-24 Thread Tzafrir Cohen
Description --- Adds an option to runtest.py to to hide skipped tests. Reduces output, but currently formatting could be improved. Diffs - /asterisk/trunk/runtests.py 5520 Diff: https://reviewboard.asterisk.org/r/3932/diff/ Testing --- Thanks, Tzafrir Cohen

Re: [asterisk-dev] Trying Load a module in asterisk - fails without any message

2014-08-09 Thread Tzafrir Cohen
specific I can think of. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com -- _ -- Bandwidth and Colocation

Re: [asterisk-dev] [Code Review] 3707: asterisk.pc file contains a spacing error in CFlags

2014-07-09 Thread Tzafrir Cohen
On Thu, Jul 03, 2014 at 12:02:35PM -, Diederik de Groot wrote: Which should have been: Cflags: -I/usr/include/libxml2 -g3 Off-topic: what is libxml2 needed for? $ ls -F /usr/include/libxml2/ libxml/ $ grep -r libxml include/asterisk* [ Nothing ] -- Tzafrir Cohen icq

[asterisk-dev] [Code Review] 3727: Install dahdi span hook only if relevant

2014-07-08 Thread Tzafrir Cohen
/3727/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman

Re: [asterisk-dev] [Code Review] 3727: Install dahdi span hook only if relevant

2014-07-08 Thread Tzafrir Cohen
--- On July 8, 2014, 3:37 p.m., Tzafrir Cohen wrote: --- This is an automatically generated e-mail. To reply, visit: https://reviewboard.asterisk.org/r/3727

Re: [asterisk-dev] Fwd: [asterisk-commits] tzafrir: trunk r417863 - in /trunk: ./ contrib/scripts/

2014-07-07 Thread Tzafrir Cohen
On Sun, Jul 06, 2014 at 01:07:36PM -0400, Corey Farrell wrote: I'm fine with not installing unless prefix is /usr, but I also think disabling chan_dahdi should prevent this from being installed. This is something I would rather not have in the main Makefile. -- Tzafrir Cohen

Re: [asterisk-dev] Fwd: [asterisk-commits] tzafrir: trunk r417863 - in /trunk: ./ contrib/scripts/

2014-07-06 Thread Tzafrir Cohen
--prefix=${HOME}/somelocaldir). Installing the file to ${prefix}/share/dahdi probably does not make sense, as /usr here is the prefix of DAHDI. So I think that the fix is to only install it if the prefix is /usr . Any better idea? -- Tzafrir Cohen icq#16849755

Re: [asterisk-dev] [Code Review] 3157: dahdi_span_config_hook: script to automatically register new dahdi channels

2014-07-03 Thread Tzafrir Cohen
://reviewboard.asterisk.org/r/3157/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit

Re: [asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-06-23 Thread Tzafrir Cohen
/channels/sig_pri.h 416446 /trunk/channels/chan_dahdi.c 416446 Diff: https://reviewboard.asterisk.org/r/3548/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api

Re: [asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-06-17 Thread Tzafrir Cohen
/channels/chan_dahdi.c 416393 Diff: https://reviewboard.asterisk.org/r/3548/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev

Re: [asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-06-17 Thread Tzafrir Cohen
/trunk/channels/chan_dahdi.c 416393 Diff: https://reviewboard.asterisk.org/r/3548/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list

Re: [asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-06-17 Thread Tzafrir Cohen
it should be done earlier. Tzafrir Cohen wrote: I explained (and the comment in the code explains) why that does not work: destruction of the spans should not be done with the list lock held - this helps trigger a deadlock, as explained in the bug report. I solve this by moving all

Re: [asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-06-17 Thread Tzafrir Cohen
/channels/sig_pri.h 416446 /trunk/channels/chan_dahdi.c 416446 Diff: https://reviewboard.asterisk.org/r/3548/diff/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com

Re: [asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-06-16 Thread Tzafrir Cohen
: https://reviewboard.asterisk.org/r/3548/#review11962 --- On May 19, 2014, 2:32 p.m., Tzafrir Cohen wrote: --- This is an automatically generated e-mail. To reply, visit: https

Re: [asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-06-16 Thread Tzafrir Cohen
/ Testing --- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo

[asterisk-dev] [Code Review] 3548: suspended destructions of pri spans following PRI_EVENT_REMOVED

2014-05-19 Thread Tzafrir Cohen
--- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-dev

Re: [asterisk-dev] Segmentation fault error?

2014-05-15 Thread Tzafrir Cohen
Segmentation faul (core dump) error. I don't get it? You have a core dump. Where did it crash? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

Re: [asterisk-dev] [Code Review] 3426: Fix build failure on SmartOS / Illumos / SunOS

2014-04-08 Thread Tzafrir Cohen
of the defined() in that line, but: shouldn't this test be done in autoconf? - Tzafrir Cohen On April 8, 2014, 7:31 p.m., Sebastian Wiedenroth wrote: --- This is an automatically generated e-mail. To reply, visit: https

Re: [asterisk-dev] [Code Review] 3280: Makefile: replace -O6 with -O3

2014-03-03 Thread Tzafrir Cohen
--- Thanks, Tzafrir Cohen -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-dev

Re: [asterisk-dev] CentOS packaging

2014-02-27 Thread Tzafrir Cohen
limits their usefulness, in my opinion) In what ways? -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

Re: [asterisk-dev] CentOS packaging

2014-02-27 Thread Tzafrir Cohen
something is wrong in the Fedora packaging, or in the checks this has passed in Debian. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

Re: [asterisk-dev] CentOS packaging

2014-02-27 Thread Tzafrir Cohen
at it a bit later. Nothing wrong with embedded libraries if the system libraries can be used instead (preferably: by default). This is the case with editline as of asterisk 11. The system copy of libedit can be used now. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co

Re: [asterisk-dev] Installing Asterisk in Mac OS X Mavericks

2014-02-27 Thread Tzafrir Cohen
glance. Specifically, can we please please please get rid of -O6? That said, you can work around the latter by providing your own CFLAGS. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http

[asterisk-dev] [Code Review] 3280: Makefile: replace -O6 with -O3

2014-02-27 Thread Tzafrir Cohen
specific optimization flags. Workaround for applying this fix manually: build with OPTIMIZE=-O3 Diffs - /trunk/Makefile.rules 409155 Diff: https://reviewboard.asterisk.org/r/3280/diff/ Testing --- Thanks, Tzafrir Cohen

Re: [asterisk-dev] CentOS packaging

2014-02-26 Thread Tzafrir Cohen
for rpm packaging. Specifically, the original rpm is stored as files (and thus most of the duplication is avoided). See https://github.com/marquiz/git-buildpackage-rpm -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406

Re: [asterisk-dev] CentOS packaging

2014-02-25 Thread Tzafrir Cohen
, and some of the firmwares will be legal for Fedora. The ones not currently not even included in the Debian package will not. -- Tzafrir Cohen icq#16849755 jabber:tzafrir.co...@xorcom.com +972-50-7952406 mailto:tzafrir.co...@xorcom.com http://www.xorcom.com

  1   2   3   >