- 11 Sep, 2015 8 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
It should never be zero. Solution: if rid cycles back to zero, bump to 1.
-
Pieter Hintjens authored
-
Pieter Hintjens authored
This has no sense IMO; people who need this can still use DEALER-DEALER. Solution: let CLIENT talk only to SERVER.
-
Pieter Hintjens authored
We do not use 'get' for getters. Solution: rename to zmq_msg_routing_id () for public API.
-
Pieter Hintjens authored
-
- 02 Sep, 2015 1 commit
-
-
Pieter Hintjens authored
-
- 27 Aug, 2015 2 commits
-
-
Constantin Rack authored
Update zmq_inproc manpage for bind/connect order
-
Floris Bruynooghe authored
The order of zmq_bind() and zmq_connect() is no longer important for the inproc transport since libzmq 4.0. This updates this in the zmq_inproc manpage.
-
- 24 Aug, 2015 1 commit
-
-
Constantin Rack authored
Problem: Identity frame from router has no metadata
-
- 22 Aug, 2015 1 commit
-
-
Pieter Hintjens authored
Problem: Private/internal macros defined in public header.
-
- 21 Aug, 2015 7 commits
-
-
Joe Eli McIlvain authored
Solution: Move the macros to a private header.
-
Pieter Hintjens authored
rename ZMQ_UNUSED macro to LIBZMQ_UNUSED
-
reza.ebrahimi authored
-
Constantin Rack authored
Fix zmq crash when calling shutdown with a pending inproc socket connect
-
Richard Newton authored
-
Constantin Rack authored
Set signaler_port to 0 which allows the OS to find a free port
-
Matt Bolger authored
-Set signaler_port to 0 which allows the OS to find a free port, rather than crashing if 5905 is in use (https://github.com/zeromq/libzmq/issues/1542) -Added config.hpp to the source list so it shows up in generated projects -Remove CMAKE_BUILD_TYPE setting for generators that don't use it
-
- 20 Aug, 2015 6 commits
-
-
Constantin Rack authored
Problem: Source files contain mixed tabs and spaces.
-
Joe Eli McIlvain authored
Solution: Convert to spaces and remove trailing whitespace in these files.
-
Richard Newton authored
Fixes failing tests regarding XPUB sockets.
-
David Jelenc authored
Fixes tests that were introduced in a previous pull request. See https://github.com/zeromq/libzmq/pull/1539#issuecomment-132968987
-
Constantin Rack authored
Addresses zeromq/libzmq#1116.
-
David Jelenc authored
This patch adds a new member of type deque to the xpub class that contains pointers to metadata_t. This deque is then used (alongside pending_data and pending_flags) to preserve metadata when copying messages.
-
- 19 Aug, 2015 1 commit
-
-
Kapp Arnaud authored
The routing id (identity) frame return when reading from a router doesn't have the same metadata as the "real" message that follows. For example, The ZAP "User-Id" property is missing. This patch attach the "data message"'s metadata to the "identity message" when it is read from the router.
-
- 17 Aug, 2015 9 commits
-
-
Constantin Rack authored
CI run on OSX needs binutils
-
Constantin Rack authored
problem: trying to support polling on thread safe sockets with zmq_poll failed
-
Luca Boccassi authored
OSX does not ship with binutils, need to install it before the script run via brew in order to be able to use greadelf, needed by the qt-android CI script.
-
somdoron authored
-
Constantin Rack authored
problem: new poller field in zmq_pollitem_t is changing the api
-
somdoron authored
-
Pieter Hintjens authored
Problem: tests fail after PR #1531
-
Constantin Rack authored
-
somdoron authored
-
- 16 Aug, 2015 4 commits
-
-
Constantin Rack authored
apply a change to LIBZMQ_DELETE macro (related to issue #1524)
-
reza.ebrahimi authored
-
Constantin Rack authored
define a macro for heap object deletion in a unified manner (related …
-
reza.ebrahimi authored
-