1. 01 Jun, 2016 1 commit
  2. 14 May, 2016 1 commit
  3. 04 May, 2016 1 commit
  4. 21 Feb, 2016 3 commits
  5. 18 Feb, 2016 1 commit
  6. 28 Jan, 2016 1 commit
  7. 06 Sep, 2015 1 commit
  8. 21 Aug, 2015 1 commit
  9. 16 Aug, 2015 1 commit
  10. 14 Aug, 2015 2 commits
  11. 08 Jul, 2015 1 commit
  12. 02 Jun, 2015 1 commit
  13. 22 Apr, 2015 1 commit
  14. 22 Jan, 2015 1 commit
  15. 28 Jul, 2014 1 commit
  16. 22 Jun, 2014 2 commits
    • Martin Hurton's avatar
      Fix memory leak in socks connecter · b73d1c8f
      Martin Hurton authored
      b73d1c8f
    • Martin Hurton's avatar
      Add support for SOCKS proxies · f06ca69a
      Martin Hurton authored
      This is still raw and experimental.
      To connect through a SOCKS proxy, set ZMQ_SOCKS_PROXY socket option on
      socket before issuing a connect call, e.g.:
      
          zmq_setsockopt (s, ZMQ_SOCKS_PROXY,
              "127.0.0.1:22222", strlen ("127.0.0.1:22222"));
          zmq_connect (s, "tcp://127.0.0.1:5555");
      
      Known limitations:
      - only SOCKS version 5 supported
      - authentication not supported
      - new option is still undocumented
      f06ca69a