- 14 Jan, 2016 1 commit
-
-
Anonymous Maarten authored
found. Solution: Include the source directory Problem: _sleep is a library function of Windows. Solution: use sleep_
-
- 03 Jan, 2016 1 commit
-
-
Frederic Tregon authored
Current ZMQ_REQ_RELAXED test improvement to check that pipes are not closed after executing two send() in a row with no recv() in between.
-
- 29 Dec, 2015 1 commit
-
-
Pieter Hintjens authored
These sockets don't handle multipart data, so if callers send it, they drop frames, and things break silently. Solution: if the caller tries to use ZMQ_SNDMORE, return -1 and set errno to EINVAL.
-
- 21 Dec, 2015 2 commits
-
-
Pieter Hintjens authored
Solution: change zmq_poller_close(p) to zmq_poller_destroy(&p)
-
Pieter Hintjens authored
If we're going to add CLASS-like APIs we should use the proper syntax; specifically 'destroy' instead of 'close', which is a hangover from the 'ZeroMQ is like sockets' model we're slowly moving away from. Solution: change zmq_timers_close(p) to zmq_timers_destroy(&p)
-
- 18 Dec, 2015 1 commit
-
-
somdoron authored
-
- 08 Dec, 2015 1 commit
-
-
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.
-
- 24 Nov, 2015 1 commit
-
-
Fedor Sheremetyev authored
-
- 13 Nov, 2015 1 commit
-
-
Constantin Rack authored
Solution: add test case
-
- 23 Oct, 2015 2 commits
-
-
Anonymous Maarten authored
-
Anonymous Maarten authored
-
- 22 Oct, 2015 1 commit
-
-
somdoron authored
-
- 21 Oct, 2015 2 commits
- 18 Oct, 2015 1 commit
-
-
somdoron authored
-
- 14 Sep, 2015 1 commit
-
-
Richard Newton authored
-
- 13 Sep, 2015 1 commit
-
-
Pieter Hintjens authored
These sockets deal only with single part data (at present), so the drop tests are misleading / inappropriate. Solution: remove them.
-
- 11 Sep, 2015 4 commits
-
-
Pieter Hintjens authored
These tests connected CLIENT and SERVER to DEALER... this isn't allowed. I changed to CLIENT-to-SERVER in both cases. The result was aborts in client.cpp and server.cpp which cannot handle invalid multipart data. I removed the asserts in each of these in xsend. Solution: fix the test cases and remove the (unwanted?) asserts in client.cpp:xsend and server.cpp:xsend.
-
Pieter Hintjens authored
Solution: fix to use CLIENT-to-SERVER and increase number of messages sent to 100K per thread, to better stress thread safety.
-
Pieter Hintjens authored
This is due to the mangled include of platform.h, which was to make CMake happy. Solution: in CMakeLists.txt, define USING_CMAKE and then look for platform.h in current directory if that is defined, else look in ../src/ as one would expect.
-
Pieter Hintjens authored
We do not use 'get' for getters. Solution: rename to zmq_msg_routing_id () for public API.
-
- 05 Sep, 2015 3 commits
-
-
David Jelenc authored
Tests were failing, because some deque calls were causing undefined behavior: calling front() or pop_front() on an empty deque. Such calls are now safeguarded.
-
David Jelenc authored
The patch fixes the issue #1568.
-
David Jelenc authored
The patch fixes lingering subscriptions that occur upon disconnection on XPUB sockets with option XPUB_MANUAL when used in a XPUB-XSUB proxies.
-
- 02 Sep, 2015 1 commit
-
-
Pieter Hintjens authored
-
- 21 Aug, 2015 1 commit
-
-
Richard Newton authored
-
- 20 Aug, 2015 1 commit
-
-
Joe Eli McIlvain authored
Solution: Convert to spaces and remove trailing whitespace in these files.
-
- 17 Aug, 2015 3 commits
- 16 Aug, 2015 2 commits
- 11 Aug, 2015 5 commits
-
-
Rik van der Heijden authored
-
Rik van der Heijden authored
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Solution: added to test_stream.cpp
-
- 28 Jul, 2015 3 commits
-
-
Brian Silverman authored
Under linux 3.16.0-4-amd64, I was getting occasional test failures before fixing this.
-
Brian Silverman authored
I'm pretty sure this is an issue with the test being too picky and not a bug, but the behavior in this situation is not well documented.
-
Brian Silverman authored
-