1. 04 Feb, 2016 1 commit
  2. 01 Feb, 2016 1 commit
  3. 29 Jan, 2016 1 commit
  4. 28 Jan, 2016 1 commit
  5. 27 Jan, 2016 1 commit
  6. 18 Jan, 2016 1 commit
  7. 21 Dec, 2015 2 commits
  8. 18 Dec, 2015 1 commit
  9. 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
  10. 23 Nov, 2015 1 commit
  11. 08 Nov, 2015 1 commit
  12. 22 Oct, 2015 1 commit
  13. 21 Oct, 2015 3 commits
  14. 18 Oct, 2015 1 commit
  15. 08 Oct, 2015 1 commit
  16. 11 Sep, 2015 1 commit
  17. 21 Aug, 2015 2 commits
  18. 20 Aug, 2015 1 commit
  19. 17 Aug, 2015 3 commits
  20. 16 Aug, 2015 5 commits
  21. 14 Aug, 2015 1 commit
  22. 06 Aug, 2015 1 commit
  23. 04 Aug, 2015 1 commit
  24. 23 Jul, 2015 1 commit
    • Ricardo Catalinas Jiménez's avatar
      Fix 1478: receive unsubscriptions in XPUB when verbose · ec5592db
      Ricardo Catalinas Jiménez authored
      Fixes not receiving unsubscription messages in XPUB socket with
      ZMQ_XPUB_VERBOSE and using a XSUB-XPUB proxy in front.
      
      This adds two modifications:
      
      - It adds a new flag, ZMQ_XPUB_VERBOSE_UNSUBSCRIBE, to enable verbose
        unsubscription messages, necessary when using a XSUB/XPUB proxy.
      
      - It adds a boolean switch to zmq::mtrie_t::rm () to control if the
        callback is invoked every time or only in the last removal. Necessary
        when a pipe is terminated and the verbose mode for unsubscriptions is
        enabled.
      ec5592db
  25. 24 Jun, 2015 1 commit
  26. 02 Jun, 2015 1 commit
  27. 02 Feb, 2015 1 commit
  28. 01 Feb, 2015 1 commit
  29. 27 Jan, 2015 1 commit
  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