- 21 May, 2013 8 commits
-
-
-
shripchenko authored
Add ROUTER socket option to introduce self(send an empty message) to new peers, to allow ROUTER<->ROUTER auto-discovery problem.
-
root authored
Add ROUTER socket option to introduce self(send an empty message) to new peers, to allow ROUTER<->ROUTER auto-discovery problem.
-
Pieter Hintjens authored
Working on Travis builds
-
Pieter Hintjens authored
- made consistent with options.cpp code - added trace print for ongoing issue with Travis CI builds
-
Ian Barber authored
Adding support for Travis CI
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 19 May, 2013 2 commits
-
-
Martin Hurton authored
stdint.h isn't available on all platforms
-
Pieter Hintjens authored
-
- 18 May, 2013 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 17 May, 2013 6 commits
-
-
Martin Hurton authored
Added as_server to options
-
Pieter Hintjens authored
-
Pieter Hintjens authored
- we need to switch to PLAIN according to options.mechanism - we need to catch case when both peers are as-server (or neither is) - and to use username/password from options, for client
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Use socket options to select security mechanism
-
Martin Hurton authored
-
- 15 May, 2013 3 commits
-
-
Pieter Hintjens authored
Added options for PLAIN security
-
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 1 commit
-
-
Pieter Hintjens authored
-