1. 28 Apr, 2014 2 commits
  2. 27 Apr, 2014 1 commit
  3. 25 Apr, 2014 3 commits
  4. 24 Apr, 2014 20 commits
  5. 14 Apr, 2014 1 commit
  6. 03 Apr, 2014 1 commit
    • Martin Hurton's avatar
      Resolve issue #939 · a53d7031
      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.
      a53d7031
  7. 02 Apr, 2014 1 commit
  8. 30 Mar, 2014 1 commit
  9. 21 Mar, 2014 2 commits
    • twwlogin's avatar
      Allow iov_base as char * on Solaris 8/9/10. · b7a663f1
      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.
      b7a663f1
    • twwlogin's avatar
      Include zmq.h after platform.hpp · 9051456f
      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>
      9051456f
  10. 20 Mar, 2014 1 commit
    • V G's avatar
      Fix building on MinGW64 Windows · 89cbd3d2
      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
      89cbd3d2
  11. 19 Mar, 2014 2 commits
  12. 18 Mar, 2014 2 commits
  13. 16 Mar, 2014 3 commits