1. 29 Dec, 2015 1 commit
  2. 14 Dec, 2015 1 commit
  3. 09 Dec, 2015 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. 23 Nov, 2015 1 commit
  6. 13 Nov, 2015 2 commits
  7. 08 Nov, 2015 1 commit
  8. 08 Oct, 2015 1 commit
  9. 18 Sep, 2015 1 commit
  10. 14 Sep, 2015 1 commit
    • Elliot Saba's avatar
      Fix pointer indirection precedence issue in docs · 1fbc67a4
      Elliot Saba authored
      Without this change, a segmentation fault is likely to occur when using the proposed snippet of code, as `*address[size]` is equivalent to `*(address[size])`, not `(*address)[size]` as clearly intended.
      1fbc67a4
  11. 13 Sep, 2015 1 commit
  12. 11 Sep, 2015 2 commits
  13. 27 Aug, 2015 1 commit
  14. 11 Aug, 2015 1 commit
  15. 06 Aug, 2015 1 commit
  16. 04 Aug, 2015 2 commits
  17. 01 Aug, 2015 2 commits
  18. 31 Jul, 2015 1 commit
  19. 23 Jul, 2015 3 commits
  20. 19 Jul, 2015 1 commit
  21. 16 Jul, 2015 1 commit
  22. 08 Jul, 2015 2 commits
  23. 26 Jun, 2015 1 commit
    • Jonathan Reams's avatar
      Fix units and default values for heartbeats options · e9a5bc8d
      Jonathan Reams authored
      Set the ZMQ_HEARTBEAT_TIMEOUT to default to the value of
      ZMQ_HEARTBEAT_IVL if it's not explicitly set.
      Change the units of ZMQ_HEARTBEAT_TTL to milliseconds in the API
      and round down to the nearest decisecond so that all the options
      are using the same units.
      Make the maximum heartbeat TTL match the spec (6553 seconds)
      e9a5bc8d
  24. 24 Jun, 2015 1 commit
  25. 06 Jun, 2015 1 commit
  26. 05 Jun, 2015 1 commit
    • Kapp Arnaud's avatar
      Update documentation for zmq_setsockopt. · 4ad9a5e5
      Kapp Arnaud authored
      Pull request #1426 now allow for changing the watermark
      after and connect() or a bind(). This patch reflect the
      change in the documentation.
      
      Also closes #1416.
      4ad9a5e5
  27. 22 May, 2015 1 commit
  28. 14 Apr, 2015 2 commits
  29. 15 Mar, 2015 3 commits
  30. 26 Jan, 2015 1 commit
    • Julien Ruffin's avatar
      Added socket option ZMQ_INVERT_MATCHING. · cf2238f8
      Julien Ruffin authored
      ZMQ_INVERT_MATCHING reverses the PUB/SUB prefix matching. The subscription
      list becomes a rejection list. The PUB socket sends messages to all
      connected (X)SUB sockets that do not have any matching subscription.
      
      Whenever the option is used on a PUB/XPUB socket, any connecting SUB
      sockets must also set it or they will reject everything the publisher
      sends them. XSUB sockets are unaffected because they do not filter out
      incoming messages.
      cf2238f8