- 28 Apr, 2014 2 commits
-
-
evoskuil authored
-
Pieter Hintjens authored
Specifically: * zmq_event_t should not be used internally in libzmq, it was meant to be an outward facing structure. * In 4.x, zmq_event_t does not correspond to monitor events, so I removed the structure entirely. * man page for zmq_socket_monitor is incomplete and the example code was particularly nasty. * test_monitor.cpp needed rewriting, it was not clean.
-
- 27 Apr, 2014 1 commit
-
-
Richard Newton authored
-
- 25 Apr, 2014 3 commits
-
-
evoskuil authored
-
Chris Laws authored
-
Chris Laws authored
-
- 24 Apr, 2014 20 commits
-
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Chris Busbey authored
-
Mike Gatny authored
-
Mike Gatny authored
-
Mike Gatny authored
-
Mike Gatny authored
-
Mike Gatny authored
For exchanging tokens.
-
Mike Gatny authored
E.g., both client and server need to produce and process GSSAPI tokens.
-
Mike Gatny authored
-
Mike Gatny authored
-
Mike Gatny authored
-
- 14 Apr, 2014 1 commit
-
-
Maarten Ditzel authored
-
- 03 Apr, 2014 1 commit
-
-
Martin Hurton authored
This bug is caused by fq which can terminate pipe before sending all frames of a message first. So sometimes two messages were mixed and this confused ZAP handler. This patch just modifies one pipe parameter so that socket consumes all messages before dropping the pipe.
-
- 02 Apr, 2014 1 commit
-
-
Jan Kryl authored
-
- 30 Mar, 2014 1 commit
-
-
evoskuil authored
-
- 21 Mar, 2014 2 commits
-
-
twwlogin authored
On Solaris 8, 9, 10/SPARC, iov_base is of type caddr_t which is char *. The Sun C++ compiler errors with "Cannot assign void* to char*". Using a static case to override this. On Solaris 11, HP-UX, AIX, and RHEL, iov_base is void * so no issues there. This seems a rather hackish solution so open to something better.
-
twwlogin authored
zmq.h requires definitions from platform.hpp so include platform.hpp before zmq.h. This is only an intermediate fix though. zmq.h should not require definitions from platform.hpp because platform.hpp is not installed. So, when zmq.h wants to include <inttypes.h> on ZMQ_HAVE_SOLARIS || ZMQ_HAVE_OPENVMS, it will not and fall back to #include <stdint.h> which will fail when building something like pyzmq on Solaris 8, 9/SPARC which do not have <stdint.h>
-
- 20 Mar, 2014 1 commit
-
-
V G authored
Mingw64 provides mstcpip.h and the build fails (redefinition) if the struct tcp_keepalive is redefined. Do not define the struct if __MINGW64__ is defined. Note that I had to manually pass the compile definition to cmake: -D__MINGW64__=1
-
- 19 Mar, 2014 2 commits
-
-
bebopagogo authored
-
bebopagogo authored
-
- 18 Mar, 2014 2 commits
- 16 Mar, 2014 3 commits
-
-
bebopagogo authored
-
Richard Newton authored
-
Richard Newton authored
-