- 01 Jul, 2014 1 commit
-
-
Martin Hurton authored
-
- 29 Jun, 2014 2 commits
-
-
Pieter Hintjens authored
Add missing socks files
-
Diego Duclos authored
-
- 27 Jun, 2014 2 commits
-
-
Pieter Hintjens authored
socks: fix build on FreeBSD
-
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.
-
- 25 Jun, 2014 10 commits
-
-
Richard Newton authored
Problem: zmq_msg_gets did not set errno on unknown properties
-
Pieter Hintjens authored
Solution: set errno to EINVAL when a property does not exist. Also fixed test_metadata.cpp to test this case.
-
Richard Newton authored
Reverted removal of [ ] support
-
Pieter Hintjens authored
-
Pieter Hintjens authored
This reverts commit 78a7b469.
-
Richard Newton authored
Set EINVAL on invalid tcp:// endpoint in zmq_connect
-
Pieter Hintjens authored
Solution: set errno to EINVAL when tcp:// endpoint is invalid (was just leaving errno to previous value).
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Allow change of pthread priority
-
Joel Lauener authored
Rationale: In a real-time environment it is sometime mandatory to tune threads priority and scheduling policy. This is required by our users who mixes real-time and server threads within the same process. It's not planned to support this on non-pthread platforms (e.g. Windows).
-
- 24 Jun, 2014 4 commits
-
-
Richard Newton authored
Problem: zmq_connect() does not validate TCP addresses
-
Pieter Hintjens authored
This syntax is undocumented and has no known meaning. It was in libzmq since 3.x. Solution: remove this code.
-
Pieter Hintjens authored
Since https://github.com/zeromq/libzmq/commit/350a1a, TCP addresses get resolved asynchronously, so zmq_connect no longer returned an error on incorrect addresses. This is troublesome since we rely on some error checking to catch blatant errors. Solution add some upfront syntax checking that catches at least the obvious kinds of errors (invalid characters, wrong or missing port number).
-
Richard Newton authored
Fixed typo in doc example
-
- 23 Jun, 2014 5 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Fix windows build
-
Pieter Hintjens authored
Updated spec file for libzmq 4.0.4
-
Richard Newton authored
Added capabilities API
-
Richard Newton authored
-
- 22 Jun, 2014 6 commits
-
-
Pieter Hintjens authored
Fix memory leak in socks connecter
-
Martin Hurton authored
-
Pieter Hintjens authored
Add support for SOCKS proxies
-
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
-
Pieter Hintjens authored
Fixed build with arm-linux-androideabi toolchain
-
chrox authored
-
- 20 Jun, 2014 2 commits
-
-
Pieter Hintjens authored
Add documentation for GSSAPI options.
-
Mike Gatny authored
-
- 19 Jun, 2014 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 18 Jun, 2014 1 commit
-
-
Pieter Hintjens authored
As libzmq is compiled with optional transports and security mechanisms, there is no clean way for applications to determine what capabilities are actually available in a given libzmq instance. Solution: provide an API specifically for capability reporting. The zmq_has () method is meant to be open ended. It accepts a string so that we can add arbitrary capabilities without breaking existing applications. zmq.h also defines ZMQ_HAS_CAPABILITIES when this method is provided.
-
- 17 Jun, 2014 5 commits
-
-
Pieter Hintjens authored
Solution: use same approach as for libsodium/CURVE, i.e. return EINVAL if the library isn't present when libzmq builds, and the application still tries to use these options in zmq_getsockopt/setsockopt.
-
Trevor Bernard authored
Problem: API violations are treated as recoverable errors
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
Pieter Hintjens authored
The example is applications passing invalid arguments to a socket option and then failing to check the return code. The results can be very hard to diagnose. Here are some threads that show the pain this causes: * https://github.com/zeromq/zyre/issues/179 * http://lists.zeromq.org/pipermail/zeromq-dev/2014-June/026388.html One common argument is that a library should never assert, and should pass errors back to the calling application. The counter argument is that when an application is broken enough to pass garbage to libzmq, it cannot be trusted to handle the resulting errors properly. Empirical evidence from CZMQ, where we systematically assert on bad arguments, is that this militant approach makes applications more, not less, robust. I don't see any valid use cases for returning errors on bad arguments, with one exception: zmq_setsockopt can be used to probe whether libzmq was e.g. built with CURVE security. I'd argue that it's nasty to use a side effect like this. If apps need to probe how libzmq was built, this should be done explicitly, and for ALL build options, not just CURVE. There are/were no libzmq test cases that check the return code for an invalid option. For now I've enabled militant assertions using --with-militant at configure time. However I'd like to make this the default setting.
-