Re: [zeromq-dev] rfc22

2013-12-08 Thread Justin Cook
I would be interested in becoming a member of the team to help maintain this protector. Chris, you can feel free to get in touch with me. Cheers, -- Justin Cook Sent from a mobile device On 8 Dec 2013 07:12, Pieter Hintjens p...@imatix.com wrote: GitHub shows access failures as Not found,

[zeromq-dev] A security authentication module for pyzmq

2013-12-08 Thread Chris Laws
I was wanting to use ZMQ's security features in my pyzmq applications. As far as I can tell the security API in pyzmq is pretty low level (sockopts and write your own ZAP handler). Hopefully I have not overlooked an existing module that already does what I want. Anyway, I am familiar with czmq

Re: [zeromq-dev] rfc22

2013-12-08 Thread Brian Knox
As I'll be setting this up and using it myself - I'm more than happy to sign up to be a maintainer! Brian From: zeromq-dev-boun...@lists.zeromq.org [mailto:zeromq-dev-boun...@lists.zeromq.org] On Behalf Of Chris Laws Sent: Saturday, December 7, 2013 5:26 PM To: zeromq-dev@lists.zeromq.org

Re: [zeromq-dev] When unreliability is desired

2013-12-08 Thread Lindley French
I've created a JIRA issue: https://zeromq.jira.com/browse/LIBZMQ-589 Next I'll try to figure out how to properly apply C4 to this process. I'm more familiar with gitflow, and while C4 appears to be pretty much the same thing except with forks instead of branches, I'm sure there are subtleties.

Re: [zeromq-dev] A security authentication module for pyzmq

2013-12-08 Thread Min RK
By all means! A PR adding that as zmq.auth would be great. -MinRK On Dec 8, 2013, at 5:07, Chris Laws clawsi...@gmail.com wrote: I was wanting to use ZMQ's security features in my pyzmq applications. As far as I can tell the security API in pyzmq is pretty low level (sockopts and write

[zeromq-dev] Problem installing python language binding on openwrt

2013-12-08 Thread Roman
I tried to install python zeromq binding on openwrt issuing command python setup.py install. Script ended with the following error: unable to execute ccache_cc: No such file or directory error: command 'ccache_cc' failed with exit status 1 Can anybody point me to the solution of this problem?

Re: [zeromq-dev] When unreliability is desired

2013-12-08 Thread Pieter Hintjens
We have moved the issue tracker to github and you may want to create new issues there. No urgency, it'll be a gradual migration. The process is... not the same as gitflow. The subtleties will become clear to you over time. It's far more aimed at learning, and less at organization, as a goal.

[zeromq-dev] czmq_selftest fails after fresh clone

2013-12-08 Thread Ingo Koinzer
Hello, I cloned the czmq repository like described for the FileMQ implementation (https://github.com/zeromq/filemq/blob/master/README.md). By doing ./configure make check I hit the error lt-czmq_selftest: zdigest.c:92: zdigest_update: Assertion `((long) buffer 7L) == 0' failed. when running the

Re: [zeromq-dev] czmq_selftest fails after fresh clone

2013-12-08 Thread Pieter Hintjens
On Sun, Dec 8, 2013 at 5:59 PM, Ingo Koinzer i...@koinzer.net wrote: I cloned the czmq repository like described for the FileMQ implementation (https://github.com/zeromq/filemq/blob/master/README.md). By doing ./configure make check I hit the error lt-czmq_selftest: zdigest.c:92:

Re: [zeromq-dev] When unreliability is desired

2013-12-08 Thread lindleyf
I'll recreate the issue there. I can see how C4 could be considered more democratic and less authoritarian than git flow since anyone can fork for stabilization (equivalent to creating a release branch in git flow). I also see how it could be less error-prone to create a feature fork rather

Re: [zeromq-dev] When unreliability is desired

2013-12-08 Thread Pieter Hintjens
On Sun, Dec 8, 2013 at 10:01 PM, lindl...@gmail.com wrote: I'll recreate the issue there. Sure, we're going to have overlapping trackers for a while (different ranges of issue numbers) so there's no problem. I can see how C4 could be considered more democratic and less authoritarian than

Re: [zeromq-dev] czmq_selftest fails after fresh clone

2013-12-08 Thread KIU Shueng Chuan
The assertion is raised in the selftest of zfile. The problem is in zchunk, used by zfile_digest() which uses zdigest_update(). On a 32-bit platform, sizeof(zchunk_t) is 12-bytes. Based on the memory allocation method in zchunk_new(), the data buffer would then only be 32-bit aligned. I suppose

[zeromq-dev] pubsub subscription acknowledgement

2013-12-08 Thread Justin Karneges
Hi folks, Many realtime applications have a need to display past content as well as future changes to that content. For example, a news feed application might subscribe for news updates and then separately query for the most recent 20 news items for initial display. The order of operations is