1. 02 Jun, 2015 1 commit
  2. 22 Apr, 2015 1 commit
  3. 22 Jan, 2015 1 commit
  4. 27 Jun, 2014 1 commit
    • Franco Fichtner's avatar
      socks: fix build on FreeBSD · f1207e6a
      Franco Fichtner authored
      The fix should be sane on all UNIX-like systems, so there's
      no ZMQ_HAVE_FREEBSD involved.  It's likely that other BSDs
      stumble across this problem too.
      f1207e6a
  5. 23 Jun, 2014 1 commit
  6. 22 Jun, 2014 1 commit
    • 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