- 16 Aug, 2015 13 commits
-
-
Luca Boccassi authored
-
Luca Boccassi authored
-
Luca Boccassi authored
-
Constantin Rack authored
CI build does not fail when tests fail. Fix #1527
-
Luca Boccassi authored
-
taotetek authored
problem: new field is breaking existing code
-
somdoron authored
-
Constantin Rack authored
problem: user cannot poll on thread safe sockets
-
somdoron authored
-
somdoron authored
-
somdoron authored
-
somdoron authored
-
somdoron authored
-
- 14 Aug, 2015 8 commits
-
-
Constantin Rack authored
fixed issue with ticket #1517 (wrong lib output name in MSVC CMake bu…
-
reza.ebrahimi authored
fixed issue with ticket #1517 (wrong lib output name in MSVC CMake build) and apply some improvements in CMake build system
-
Constantin Rack authored
changing some camelCase variable names to snake_case in previous commit
-
reza.ebrahimi authored
-
Constantin Rack authored
remove unnecessary multiple WSAGetLastError() calls
-
reza.ebrahimi authored
-
Constantin Rack authored
place a ZMQ_UNUSED macro and replace all unused variables with ZMQ_UNUSED macro
-
reza.ebrahimi authored
-
- 13 Aug, 2015 2 commits
-
-
Constantin Rack authored
Problem: Missing src/ prefix for libzmq library in Makefile.am ...
-
sappo authored
Solution: Add prefix to fix test compilation
-
- 12 Aug, 2015 1 commit
-
-
Constantin Rack authored
Problem: lack test case for large stream messages
-
- 11 Aug, 2015 9 commits
-
-
Constantin Rack authored
Merge fix for zeromq/zeromq4-1#52, getsockopt ZMQ_RCVMORE now resets all bits
-
Constantin Rack authored
Check proxy return values in tests
-
Rik van der Heijden authored
-
Rik van der Heijden authored
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Solution: specify the necessary EXTRA_DIST I added a Makefile.am in builds that covers all systems except msvc, which already has a Makefile.am that does this. Fixes #1505
-
Pieter Hintjens authored
Solution: fix it. Default is true, not false.
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Solution: added to test_stream.cpp
-
- 07 Aug, 2015 1 commit
-
-
Constantin Rack authored
fix: ZMQ_TCP_RETRANSMIT_TIMEOUT not applied to bind socket
-
- 06 Aug, 2015 6 commits
-
-
KIU Shueng Chuan authored
-
Constantin Rack authored
Avoid terminating connections prematurely
-
Soren Hansen authored
While sending very large messages (far beyond what fits in a the tcp buffer, so it takes multiple sendto system calls for it to finish), zmq_close will close the connection regardless of ZMQ_LINGER. In case no engine is attached, a pipe->check_read() is needed to look for the delimiter in the pipe and ultimately trigger the pipe termination. However, if there *is* an engine attached, the check_read() looks ahead and finds the delimiter and terminates the connection even though the engine might actually still be in the middle of sending a message. This happens because while the io_thread is still busy sending the data, the pipe can get terminated and the io thread ends up being terminated.
-
Richard Newton authored
add ZMQ_TCP_RETRANSMIT_TIMEOUT socket option
-
KIU Shueng Chuan authored
-
KIU Shueng Chuan authored
-