1. 15 Aug, 2018 1 commit
  2. 10 May, 2018 1 commit
  3. 23 Mar, 2018 2 commits
  4. 21 Mar, 2018 1 commit
  5. 09 Oct, 2017 1 commit
  6. 19 Sep, 2017 3 commits
  7. 07 Sep, 2017 3 commits
  8. 31 Jul, 2017 1 commit
    • Brian Russell's avatar
      Add socket option BINDTODEVICE · b963542e
      Brian Russell authored
      Linux now supports Virtual Routing and Forwarding (VRF) as per:
      
      https://www.kernel.org/doc/Documentation/networking/vrf.txt
      
      In order for an application to bind or connect to a socket with an
      address in a VRF, they need to first bind the socket to the VRF device:
      
          setsockopt(sd, SOL_SOCKET, SO_BINDTODEVICE, dev, strlen(dev)+1);
      
      Note "dev" is the VRF device, eg. VRF "blue", rather than an interface
      enslaved to the VRF.
      
      Add a new socket option, ZMQ_BINDTODEVICE, to bind a socket to a device.
      In general, if a socket is bound to a device, eg. an interface, only
      packets received from that particular device are processed by the socket.
      
      If device is a VRF device, then subsequent binds/connects to that socket
      use addresses in the VRF routing table.
      b963542e
  9. 24 Apr, 2017 1 commit
  10. 26 Dec, 2016 1 commit
  11. 21 Sep, 2016 1 commit
  12. 09 Feb, 2016 4 commits
  13. 08 Feb, 2016 1 commit
  14. 04 Feb, 2016 1 commit
  15. 01 Feb, 2016 3 commits
  16. 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
  17. 23 Nov, 2015 1 commit
  18. 13 Nov, 2015 2 commits
  19. 08 Nov, 2015 1 commit
  20. 08 Oct, 2015 1 commit
  21. 13 Sep, 2015 1 commit
  22. 11 Sep, 2015 1 commit
  23. 06 Aug, 2015 1 commit
  24. 04 Aug, 2015 2 commits
  25. 08 Jul, 2015 2 commits
  26. 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
  27. 09 Jan, 2015 1 commit