- 28 Oct, 2016 1 commit
-
-
Luca Boccassi authored
Solution: use compiler's alignment attributes instead which is clearer and less of a hack. Pointer alignment violations causing crashes on architectures such as sparc64 and aarch64. This also avoid triggering ABI checkers as the change is compatible even though applications that suffer from the bug should rebuild to take advantage of the fix.
-
- 27 Oct, 2016 2 commits
-
-
Constantin Rack authored
Problem: build API incompatible with 4.1
-
Luca Boccassi authored
Solution: keep the new --without-docs option, but also keep the old --without-documentation with an added deprecation warning. We can then remove it in the next major release, to leave enough time for users and maintainers to change it without disruptions.
-
- 23 Oct, 2016 4 commits
-
-
Doron Somech authored
Problem: 2 connects with same sourceip:port to different destip:port fail
-
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.
-
Luca Boccassi authored
Update INSTALL to note issues with 'make -j check'
-
Edward Vielmetti authored
Some of the tests cannot be run in parallel; until the Makefile is fixed, note this in INSTALL.
-
- 21 Oct, 2016 2 commits
-
-
Luca Boccassi authored
Problem: Does not build in Visual Studio 2013 / Win32
-
Juha Reunanen authored
Solution: #include <netioapi.h> and change some IP_ADAPTER_UNICAST_ADDRESS data types
-
- 18 Oct, 2016 2 commits
-
-
Luca Boccassi authored
Add EHOSTUNREACH to errno_to_string
-
Juha Reunanen authored
-
- 14 Oct, 2016 2 commits
-
-
Luca Boccassi authored
performance enhancement
-
Laughing authored
use clock_gettime if there is no instruction to get cpu tick. It will take about 10% performance enhancement in AIX 7.1.
-
- 12 Oct, 2016 1 commit
-
-
Jens Auer authored
* - Fixed windows build errors - Extended monitor lock scope to prevent race-condition between process_stop and monitor * - Fixed windows build errors - Extended monitor lock scope to prevent race-condition between process_stop and monitor
-
- 11 Oct, 2016 3 commits
-
-
Luca Boccassi authored
#2158: Add mutex for monitor socket
-
Jens Auer authored
-
Constantin Rack authored
Fixed issue #2155
-
- 10 Oct, 2016 3 commits
-
-
Akhil Thampy authored
-
Mário Kašuba authored
Added fallback mechanism for specific socket binding on Windows platform with IPv6 enabled
-
Mário Kašuba authored
# Conflicts: # builds/msvc/vs2012/libsodium.import.props
-
- 09 Oct, 2016 2 commits
-
-
Doron Somech authored
Patch for compatibility with Windows subsystem for linux
-
yasirs authored
-
- 07 Oct, 2016 2 commits
-
-
Doron Somech authored
Problem: Invalid markup in zmq_socket.txt
-
Thomas Braun authored
Solution: Fix it.
-
- 04 Oct, 2016 2 commits
-
-
Doron Somech authored
Problem: a request
-
Luca Boccassi authored
Solution: honor it
-
- 03 Oct, 2016 2 commits
-
-
Luca Boccassi authored
doc/zmq_socket.txt: clarify that ROUTER can be blocking
-
WGH authored
-
- 01 Oct, 2016 5 commits
-
-
Luca Boccassi authored
Fix zmq poller poll return
-
Nick Guiffrida authored
-
Nick Guiffrida authored
-
Nick Guiffrida authored
* Doing so was zmq_poller_poll to always return 0.
-
Nick Guiffrida authored
-
- 29 Sep, 2016 7 commits
-
-
Luca Boccassi authored
allow duplicate entries in zmq_poller_poll
-
Min RK authored
This should restore full compatibility with earlier zmq_poll behavior. It complicates things a little bit, as collisions must be detected, and when collisions are found: - event masks must be merged - pollitems, events arrays are no longer co-ordered Reverts the recent zmq_proxy patch to workaround the lack of repeat-item support in zmq_poll that is now fixed.
-
Luca Boccassi authored
Resolve issues with zmq_poll and zmq_poller working together
-
Min RK authored
not -1, ETIMEDOUT like zmq_poller
-
Min RK authored
Return value is the number of events found. This also propagates to the return value of zmq_poller_wait_all. zmq_poller_wait was only returning events on the first-registered socket.
-
Constantin Rack authored
avoid passing duplicate entries to zmq_poll
-
Min RK authored
zmq_poller doesn't allow a socket to appear twice
-