- 18 Jan, 2016 2 commits
-
-
Pieter Hintjens authored
restore check for MSC 1600 before including stdint.h
-
Min RK authored
-
- 16 Jan, 2016 2 commits
-
-
Pieter Hintjens authored
GNU/Hurd support
-
Laszlo Boszormenyi (GCS) authored
-
- 15 Jan, 2016 7 commits
-
-
Constantin Rack authored
include tweetnacl in dists
-
Min RK authored
-
Constantin Rack authored
Problem: OpenWRT Makefile still uses tarballs, now using GIT HEAD master
-
Benjamin Henrion authored
-
Constantin Rack authored
Problem: no support for OpenWRT
-
Pieter Hintjens authored
Specifically, the RedHat tools. Solution: move this into packaging/
-
Pieter Hintjens authored
Solution: copy ZeroMQ packaging script from https://github.com/vperron/openwrt-zmq-packages Note: this is not usable as-such, needs fixing.
-
- 14 Jan, 2016 5 commits
-
-
Pieter Hintjens authored
Add support for the RelWithDebInfo CMake configuration.
-
Ilya Kulakov authored
It's now possible to build Release version with pdb file.
-
Constantin Rack authored
Problem: On Windows CI, in tests/test_timers.c, "Windows.hpp" could not be found.
-
Anonymous Maarten authored
found. Solution: Include the source directory Problem: _sleep is a library function of Windows. Solution: use sleep_
-
Constantin Rack authored
Problem: Windows CI fails due to libsodium build failure
-
- 13 Jan, 2016 3 commits
-
-
Anonymous Maarten authored
Solution: Use stable branch of libsodium
-
Pieter Hintjens authored
problem: when socket is destroyed before zmq_poller is the zmq_poller is accessing a dead socket
-
somdoron authored
-
- 05 Jan, 2016 2 commits
-
-
KAPP Arnaud authored
Problem: Android build is too slow
-
Pieter Hintjens authored
Solution: use parallel make (-j 4) and don't build man pages.
-
- 03 Jan, 2016 2 commits
-
-
Constantin Rack authored
Test for issue #1690 (ZMQ_REQ_RELAXED)
-
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.
-
- 01 Jan, 2016 2 commits
-
-
Constantin Rack authored
Fixed issue #1690 (ZMQ_REQ_RELAXED)
-
Frederic Tregon authored
When using ZMQ_REQ_RELAXED and a 'send' is executed after another 'send' the previous code would terminate the 'reply_pipe' if any. This is incorrect as terminating the reply pipe also terminates the send pipe as they are the same (a pipe associated with a socket is bidirectional). Doing a terminate on the pipe sets an internal flag called out_active to false and the pipe can no longer send messages. Removing the 'terminate' solves the problem. Removing this call is not an issue as the incorrect ordering of messages that could be incurred is taken care of by the ZMQ_REQ_CORRELATE option if needed.
-
- 29 Dec, 2015 2 commits
-
-
Constantin Rack authored
-
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 12 commits
-
-
Constantin Rack authored
Problem: still one error in vcxproj files
-
Pieter Hintjens authored
Solution: fix and try again. (We could start to think of using zproject to generate these build scripts as the only difference is C/C++)
-
Constantin Rack authored
Problem: includes timer.cpp/hpp instead of timers.cpp/hpp
-
Pieter Hintjens authored
Solution: fix it.
-
Constantin Rack authored
Problem: performance tests don't link on Windows/MSVC
-
Pieter Hintjens authored
Solution: add Iphlpapi.lib to libraries to link against
-
Constantin Rack authored
Problem: MSVC projects don't include timers.cpp/hpp
-
Constantin Rack authored
Fixes for Windows, and poller API
-
Pieter Hintjens authored
Solution: add these
-
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)
-
Pieter Hintjens authored
Solution: add to project dependencies
-
- 20 Dec, 2015 1 commit
-
-
Pieter Hintjens authored
Problem: build scripts don't need full git history
-