1. 09 Feb, 2016 1 commit
    • Pieter Hintjens's avatar
      Problem: test_large_msg kills my system temporarily · 62c66ae7
      Pieter Hintjens authored
      And I'm on a reasonably sized laptop. I think allocating INT_MAX
      memory is dangerous in a test case.
      
      Solution: expose this as a context option. I've used ZMQ_MAX_MSGSZ
      and documented it and implemented the API. However I don't know how
      to get the parent context for a socket, so the code in zmq.cpp is
      still unfinished.
      62c66ae7
  2. 01 Feb, 2016 3 commits
  3. 28 Jan, 2016 1 commit
  4. 08 Dec, 2015 1 commit
    • Ilya Kulakov's avatar
      Add the VMCI transport. · 68b13fbd
      Ilya Kulakov authored
      VMCI transport allows fast communication between the Host
      and a virtual machine, between virtual machines on the same host,
      and within a virtual machine (like IPC).
      
      It requires VMware to be installed on the host and Guest Additions
      to be installed on a guest.
      68b13fbd
  5. 20 Aug, 2015 1 commit
  6. 02 Jun, 2015 1 commit
  7. 12 Feb, 2015 1 commit
  8. 22 Jan, 2015 1 commit
  9. 17 Nov, 2014 1 commit
  10. 09 Jul, 2014 1 commit
  11. 02 Jul, 2014 1 commit
  12. 23 May, 2014 1 commit
  13. 21 May, 2014 1 commit
    • Martin Hurton's avatar
      Code cleanup · 414fc86b
      Martin Hurton authored
      - limit visibility of pending_connection_t
      - add const qualifiers
      414fc86b
  14. 02 Jan, 2014 1 commit
  15. 07 Oct, 2013 1 commit
  16. 14 Sep, 2013 1 commit
  17. 12 Sep, 2013 3 commits
  18. 10 Sep, 2013 1 commit
  19. 01 Sep, 2013 1 commit
  20. 12 Mar, 2013 1 commit
    • Pieter Hintjens's avatar
      Removed corporate advertisements from source file headers · f0f16505
      Pieter Hintjens authored
      Copyrights had become ads for Sustrik's corporate sponsors, going against the original
      agreement to share copyrights with the community (that agreement was: one line stating
      iMatix copyright + one reference to AUTHORS file). The proliferation of corporate ads
      is also unfair to the many individual authors. I've removed ALL corporate title from
      the source files so the copyright statements can now be centralized in AUTHORS and
      source files can be properly updated on an annual basis.
      f0f16505
  21. 31 Jan, 2013 1 commit
  22. 21 Sep, 2012 1 commit
  23. 24 Aug, 2012 1 commit
    • Arthur O'Dwyer's avatar
      Fix monitor_event() to work at all. · 7fadd708
      Arthur O'Dwyer authored
      There are three versions of monitor_event(), all taking
      variadic arguments. The original code just has the first one
      creating a va_list and passing that va_list variadically to
      the second one... which creates a new va_list and passes it
      variadically to the third one... and of course everything
      blows up when we try to pull a non-va_list argument off the
      stack.
      
      The correct approach matches the C standard library's use
      of printf/vprintf, scanf/vscanf, and so on. Once you make
      a va_list, you must pass it only to functions which expect
      a va_list parameter.
      7fadd708
  24. 21 May, 2012 2 commits
  25. 22 Mar, 2012 2 commits
  26. 20 Mar, 2012 1 commit
    • Pieter Hintjens's avatar
      Fixed issues #337, #341, and #340 · 6e71a54b
      Pieter Hintjens authored
      * Implemented new ctx API (_new, _destroy, _get, _set)
      * Removed 'typesafe' macros from zmq.h
      * Added support for MAX_SOCKETS (was tied into change for #337)
      * Created new man pages
      6e71a54b
  27. 19 Mar, 2012 2 commits
  28. 03 Feb, 2012 1 commit
    • skaller's avatar
      Set and arrange propagation of thread safe sockets flag. · 520ad3c2
      skaller authored
      We use a distinct context initialisation function to specify
      all sockets derived therefrom will be thread safe.
      
      However the inheritance is done exclusively in the C interface.
      This is not really correct, but it is chosen to minimise
      interference with the existing C++ code, including any
      construct or other calls within the C++ code base.
      Semantically the C++ code should be unchanged,
      physically some data structures and extra methods are
      provided by they're only used from the C binding.
      520ad3c2
  29. 27 Jan, 2012 1 commit
  30. 09 Nov, 2011 1 commit
  31. 01 Nov, 2011 1 commit
  32. 31 Oct, 2011 1 commit
  33. 24 Jul, 2011 1 commit