- 30 Jan, 2015 3 commits
-
-
Telford Berkey authored
-
taotetek authored
Problem: test cases are failing on slower PCs (eee PC)
-
Pieter Hintjens authored
Solution: raise timeouts from 100-150 msec to 250 msec
-
- 29 Jan, 2015 3 commits
-
-
Telford Berkey authored
-
Constantin Rack authored
Problem: qt-android build script out of date
-
Joe Eli McIlvain authored
Solution: copy changes from latest zproject
-
- 28 Jan, 2015 4 commits
-
-
Joe Eli McIlvain authored
Use GCC/Clang compiler intrinsics for atomic operations
-
Thomas Rodgers authored
-
-
Thomas Rodgers authored
Works with GCC and most likely clang
-
- 27 Jan, 2015 6 commits
-
-
Pieter Hintjens authored
Code cleanup - removing unused local
-
Thomas Rodgers authored
-
Pieter Hintjens authored
Clean up of metadata_t
-
Pieter Hintjens authored
resolve #1325 Alignment issue with zmq_msg_t on SPARC CPU
-
Thomas Rodgers authored
* There is no clear reason why the map should hold const std::strings * This class is never derived, there doesn't seem to be a compelling reason to ever do so, so no need to make virtual members * In general const member data is an anti-pattern, the *only* reason is to prevent assignability, and the accepted idiom for that is to to declare the assigment operator private. This change does so, and also prevents copy construction.
-
Thomas Rodgers authored
should be backported probably
-
- 26 Jan, 2015 4 commits
-
-
Pieter Hintjens authored
Added socket option ZMQ_INVERT_MATCHING.
-
Julien Ruffin authored
ZMQ_INVERT_MATCHING reverses the PUB/SUB prefix matching. The subscription list becomes a rejection list. The PUB socket sends messages to all connected (X)SUB sockets that do not have any matching subscription. Whenever the option is used on a PUB/XPUB socket, any connecting SUB sockets must also set it or they will reject everything the publisher sends them. XSUB sockets are unaffected because they do not filter out incoming messages.
-
Constantin Rack authored
Fix Windows build
-
Richard Newton authored
-
- 23 Jan, 2015 2 commits
-
-
Constantin Rack authored
Problem: commit afb24b53 broke ZMQ_STREAM contract
-
Pieter Hintjens authored
Symptom is that ZMQ_STREAM sockets in 4.1.0 and 4.1.1 generate zero sized messages on each new connection, unlike 4.0.x which did not do this. Person who made this commit also changed test cases so that contract breakage did not show. Same person was later banned for persistently poor form in CZMQ contributions. Solution: enable connect notifications on ZMQ_STREAM sockets using a new ZMQ_STREAM_NOTIFY setting. By default, socket does not deliver notifications, and behaves as in 4.0.x. Fixes #1316
-
- 22 Jan, 2015 2 commits
-
-
Constantin Rack authored
Problem: copyright statements are out of date
-
Pieter Hintjens authored
Solution: update for 2015 Fixes #1320
-
- 21 Jan, 2015 2 commits
-
-
Joe Eli McIlvain authored
Remove more test_id2fd cruft
-
Thomas Rodgers authored
-
- 20 Jan, 2015 4 commits
-
-
Constantin Rack authored
documentation clarification on pipe::write failure
-
Topher Brown authored
When pipe::write succeeds, it takes control of the message's data buffer. When it fails, it has not taken control. The caller should clean up the message appropriately (msg::close).
-
Joe Eli McIlvain authored
Close messages that failed to send
-
Topher Brown authored
pipe_t.write only takes control of the underlying message memory when it succeeds. When it returns failure, we must close the message ourselves to clean up that memory. This patch is sponsored by FarSounder, Inc (farsounder.com)
-
- 19 Jan, 2015 1 commit
-
-
Telford Berkey authored
-
- 18 Jan, 2015 2 commits
-
-
KAPP Arnaud authored
fix typo in zmq_msg_gets documentation
-
Thomas Rodgers authored
-
- 16 Jan, 2015 7 commits
-
-
Constantin Rack authored
Fix typo in zmq_msg_gets documentation
-
Thomas Rodgers authored
-
KAPP Arnaud authored
Add 'Peer-Address' property to connection metadata
-
Thomas Rodgers authored
-
Thomas Rodgers authored
-
Thomas Rodgers authored
std::map::insert() has always had range based insertion, removed explicit loops.
-
Thomas Rodgers authored
Allows non-C/C++ based clients easy access to the peer's IP address via zmq_msg_gets(&msg, "Peer-Address") instead of zmq_msg_get(&msg, ZMQ_SRCFD) followed by calls to getpeername and getnameinfo
-