- 16 Mar, 2017 1 commit
-
-
Goswin von Brederlow authored
-
- 24 Feb, 2017 2 commits
-
-
Luca Boccassi authored
Solution: Revert "Problem with ZMQ_ROUTER_MANDATORY option when peer lost" This partially reverts commit 06740b5d. The change in the mentioned commit was fixed to be backward compatible so test changes are no longer necessary. Partially revert the commit, leaving only the bug fix and taking out the test change and the superfluous change in socket_base.
-
Reza Ebrahimi authored
indention Revert "indention" This reverts commit a6e7e192ac2d089ac9f7dc0d31d4b1fd10de982e. indention indention Fix Failure in tests Check both pipe full and pipe close
-
- 25 Jan, 2017 1 commit
-
-
sigiesec authored
* Problem: zmq_z85_decode does not validate its input Solution: added checks for invalid characters and overflows * Added tests, added further check for range overflow, removed (multiple) calls to strlen * Problem: gcc fails to build Solution: added missing include directive * Added VS2015 test_utils_z85 project * Fixed indentation and copyright notice * Resolved garbage from merge * Revert "Added VS2015 test_utils_z85 project" This reverts commit c58b3c664c144326e77135aa1184b6f0dee11143. * Problem: test calls zmq_z85_decode with a NULL dest Solution: call zmq_z85_decode with a properly sized buffer * Problem: tests for zmq_z85_* scattered over two files Solution: merged files * Removed reference to removed test file from CMakeLists.txt * Problem: Missing include directive to stdint.h Solution: Added include directive * Define __STDC_LIMIT_MACROS before including stdint.h * Problem: Wrong variable is checked for invalid character marker Solution: Use correct variable
-
- 19 Jan, 2017 1 commit
-
-
Asmod4n authored
-
- 03 Jan, 2017 1 commit
-
-
Luca Boccassi authored
Solution: use lowercase
-
- 01 Jan, 2017 1 commit
-
-
Vincent Tellier authored
tests/README.md explicitly indicates to check the libzmq.lib path in CMakeLists.txt.
-
- 31 Dec, 2016 1 commit
-
-
Luca Boccassi authored
Solution: check that the expected handshake success or failure events are triggered in the curve security unit test
-
- 30 Dec, 2016 1 commit
-
-
Luca Boccassi authored
Solution: wrap the event triggering in the DRAFT ifdef as well as the defines. This ensures that the event are returned only if the library was built with DRAFTs enabled. Also update the test case to expect the new events since it uses the catch-all mask. Although the sequence of event is different and this might be considered as an API breakage, using the catch-all ZMQ_EVENT_ALL mask implies that, well, all events are monitored so it's normal that new ones will be added. Users that don't want this kind of behaviour to change can simply monitor only the event that they care about.
-
- 29 Dec, 2016 1 commit
-
-
Luca Boccassi authored
Solution: move it there, add it to src/zmq_draft.h and clarify in the documentation and in the NEWS file that this option is not yet stable
-
- 26 Dec, 2016 1 commit
-
-
Luca Boccassi authored
Solution: add it to the list
-
- 15 Dec, 2016 1 commit
-
-
Luca Boccassi authored
Solution: add one
-
- 06 Dec, 2016 2 commits
-
-
Luca Boccassi authored
Solution: add missing includes
-
Luca Boccassi authored
Solution: remove them as they are already in testutil.hpp
-
- 20 Nov, 2016 1 commit
-
-
Luca Boccassi authored
Solution: add a ZMQ_MSG_T_SIZE context read-only option so that wrappers can call zmq_ctx_get (ctx, ZMQ_MSG_T_SIZE) to get the size at runtime.
-
- 01 Nov, 2016 1 commit
-
-
Harald authored
Solution: add optional lookup for openpgm via pkg-config
-
- 23 Oct, 2016 1 commit
-
-
Luca Boccassi authored
Solution: during a connect with a TCP endpoint if a source address is passed set the SO_REUSEADDR flag on the socket before the bind system call. Add unit test to cover this case for both IPv4 and IPv6.
-
- 01 Oct, 2016 1 commit
-
-
Nick Guiffrida authored
-
- 28 Sep, 2016 1 commit
-
-
Min RK authored
enables zmq_poll on threadsafe sockets only supported in zmq_poller (radio, dish, etc.)
-
- 24 Sep, 2016 2 commits
-
-
Luca Boccassi authored
Problem: zmq_ctx_term asserts with connect-before-bind and sockets with identity over inproc transport Solution: check if the connecting inproc socket has been closed before trying to send the identity. Otherwise the pipe will be in waiting_for_delimiter state causing writes to fail and the connect to assert when the context is being torn down and the pending inproc connects are resolved. Add test case that covers this behaviour.
-
Luca Boccassi authored
Solution: add one to increase coverage
-
- 17 Sep, 2016 5 commits
-
-
Luca Boccassi authored
Solution: allow for '[' character when doing the basic sanity check on the TCP endpoint. Also add unit tests for both IPv4 and IPv6 source;dest format.
-
Luca Boccassi authored
Solution: add them
-
Luca Boccassi authored
Solution: add a test for this use case
-
Luca Boccassi authored
Solution: add disconnect and unbind calls to the test
-
Luca Boccassi authored
Solution: refactor it to allow for multiple functionalities to be tested
-
- 12 Sep, 2016 1 commit
-
-
Thomas Braun authored
Solution: Add "\n" at end of format string.
-
- 27 Aug, 2016 1 commit
-
-
Luca Boccassi authored
Solution: ifdef is_ipv6_available to always return false if building on Windows XP, as it doesn't support the needed standard libc functions
-
- 23 Aug, 2016 3 commits
-
-
Luca Boccassi authored
Solution: call the function after the zmq_ctx has been created, not before, so that the relevant Windows system calls have been setup.
-
Luca Boccassi authored
This reverts commit 9adf20aa.
-
Thomas Braun authored
This is required as zmq_ctx_new calls WSAStartup. Without that the IPV6 socket creation always fails.
-
- 12 Jul, 2016 2 commits
-
-
Giuseppe Corbelli authored
Solution: correct path is ../src/windows.hpp. Also added automatic linking of iphlpapi library if required and using MSVC
-
Giuseppe Corbelli authored
only if the library is found at a specific path Solution: Search for libzmq.lib in ../bin/Win32/Debug/v120/dynamic, don't know how to automatically search in correct path based on current build configuration
-
- 17 Jun, 2016 1 commit
-
-
Fedor Sheremetyev authored
Expect custom messages on both explicit unsubscription and pipe termination.
-
- 19 May, 2016 1 commit
-
-
evoskuil authored
-
- 16 May, 2016 3 commits
-
-
hitstergtd authored
Solution: Wrap it.
-
somdoron authored
solution: enforce that dish and gram can only bind and radio can only connect
-
somdoron authored
-
- 15 May, 2016 2 commits
-
-
Bitiquinho authored
-
Bitiquinho authored
-