- 15 May, 2013 2 commits
-
-
Pieter Hintjens authored
* ZMQ_PLAIN_SERVER, ZMQ_PLAIN_USERNAME, ZMQ_PLAIN_PASSWORD options * Man page changes to zmq_setsockopt and zmq_getsockopt * Man pages for ZMQ_NULL, ZMQ_PLAIN, and ZMQ_CURVE * Test program test_security
-
Pieter Hintjens authored
-
- 14 May, 2013 3 commits
-
-
Pieter Hintjens authored
Implement ZMTP/3.0 PLAIN mechanism
-
Martin Hurton authored
This implements protocol handshake. We still need to design and implement 1) API changes so a user can set username and password, and 2) a mechanism for engine to authenticate users.
-
Martin Hurton authored
-
- 08 May, 2013 1 commit
-
-
Ian Barber authored
Some changes to building and packaging
-
- 07 May, 2013 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 28 Apr, 2013 4 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Implement ZMTP/3.0 NULL mechanism
-
Martin Hurton authored
-
Martin Hurton authored
-
- 27 Apr, 2013 3 commits
-
-
Ian Barber authored
zmq_msg_close clarification in man pages
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 25 Apr, 2013 2 commits
-
-
Pieter Hintjens authored
Experimental function zmq_recviov doesnt work correctly in a couple of c...
-
Jon Dyte authored
1) VSM - you cannot hand out the 'data' address as it was not allocated on the heap 2) for other messages the 'data' address cannot be handed out either, as it not the address originally returned by malloc and hence cannot be passed to 'free'. see msg.cpp u.lmsg.content = (content_t*) malloc (sizeof (content_t) + size_); .... u.lmsg.content->data = u.lmsg.content + 1; So the function is changed to always malloc a data buffer and copy the data into it. There is a possible optimisation using memmove for the non-VSM case but that is not done yet.
-
- 24 Apr, 2013 1 commit
-
-
Martin Hurton authored
Fix return code redeclaration for platforms with SO_NOSIGPIPE
-
- 23 Apr, 2013 2 commits
-
-
Lourens Naudé authored
-
Ian Barber authored
Fixed issue LIBZMQ-526
-
- 22 Apr, 2013 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 18 Apr, 2013 2 commits
-
-
Martin Hurton authored
Fixed issue LIBZMQ-525
-
Pieter Hintjens authored
-
- 15 Apr, 2013 4 commits
-
-
Ian Barber authored
Throughput perf test was borked, fixed it
-
Pieter Hintjens authored
-
Pieter Hintjens authored
as I can see, these didn't work any more. At the very least, the command line API was broken and forced the user to enter new, exotic arguments. Patches should not break existing APIs. But also, the internals of these programs had become weird. If we want to build more complex performance tests, that's fine, but we should make new programs, not break the old ones. We need minimal, safe performance tests in 0MQ. Also, the code was quite horrid. So it's gone. If anyone wants to bring it back please make the code neat, and build new APIs instead of breaking the old ones. Cheers Pieter
-
Pieter Hintjens authored
contributors and doesn't reflect the real process. I've taken out all named authors and referred to the contribution policy. Hopefully this will improve the contributions to the man pages.
-
- 14 Apr, 2013 2 commits
-
-
Pieter Hintjens authored
Interoperate with higher versions of ZMTP protocol
-
Martin Hurton authored
-
- 13 Apr, 2013 2 commits
-
-
Pieter Hintjens authored
[#LIBZMQ-446] Silence error on setting PGM_TOS on REL 4.
-
Steven McCoy authored
[#LIBZMQ-446] Silence error on setting PGM_TOS due to some platforms raising an error at runtime. Noted are RHEL 4.
-
- 12 Apr, 2013 5 commits
-
-
Pieter Hintjens authored
MSVC local_thr & remote_thr dependency fix
-
Steven McCoy authored
-
Steven McCoy authored
Add platform.hpp as project dependency to vc100 and vc110 projects for local & remote throughput tests.
-
Pieter Hintjens authored
Use state functions for message flow
-
Martin Hurton authored
The patch makes the code somewhat simpler and prepares it for more complex initialization handshakes.
-
- 11 Apr, 2013 3 commits
-
-
Pieter Hintjens authored
Refactor code so that messages go through engines
-
Martin Hurton authored
-
Ian Barber authored
Small clarification about connect and ROUTER
-