- 02 May, 2018 3 commits
-
-
Lionel Flandrin authored
-
Luca Boccassi authored
Problem: address parsing code is tied to the TCP code
-
Lionel Flandrin authored
Solution: Factor the code into a different file with a well defined API and add unit tests.
-
- 30 Apr, 2018 2 commits
-
-
Simon Giesecke authored
More attempts to speed up Appveyor
-
Luca Boccassi authored
Solution: use 2013 images for all builds bar 2, to test newer versions
-
- 29 Apr, 2018 9 commits
-
-
Luca Boccassi authored
Solution: cache the git repository and build directory
-
Luca Boccassi authored
Solution: add -j flag to run them in paralle, cuts test runtime from ~80 to ~20 seconds
-
Luca Boccassi authored
Solution: set the equivalent flag
-
Luca Boccassi authored
Update android_build_helper.sh
-
Luca Boccassi authored
Update README.md
-
Axel Nennker authored
Minimum platform for arm is android-14
-
Axel Nennker authored
added missing = to export VARIABLE=VALUE
-
Luca Boccassi authored
use HTTPS when downloading a binary before excuting it check hashes
-
Axel Nennker authored
Changed the download URL to use HTTPS. Provided the hashes for version r10e Replaces /home/zmq by $HOME
-
- 28 Apr, 2018 4 commits
-
-
Doron Somech authored
Problem: heartbeat commands break REP session, unclear documentation
-
Luca Boccassi authored
Solution: check more socket type to cover other session managers. Increase timeout as the test now takes ~12 seconds.
-
Luca Boccassi authored
Solution: ignore command messages in the REQ session to avoid disrupting the state machine. Commands are handled by the engine before handing off to the session.
-
Luca Boccassi authored
Solution: mention in manpage that if the timeout is not set and the interval is, the timeout will be equal to the interval
-
- 27 Apr, 2018 2 commits
-
-
Luca Boccassi authored
Fix formatting in CONTRIBUTING
-
Dale Wijnand authored
Avoids the git instructions being all on one line.
-
- 25 Apr, 2018 2 commits
-
-
Luca Boccassi authored
Install relocatable dylibs (MacOS)
-
Dennis Klein authored
Problem: When building libzmq with CMake, the installed libzmq.dylib has a relative install name (otool -D libzmq.dylib) on MacOS. This is a regression against building via autotools which sets an absolute install name. Effectively, the CMake built libzmq.dylib is rendered useless if installed in non-system directories and used in environments without explicit DYLD_LIBRARY_PATH mgmt. For example running any of the installed executables currently fails: $ /some_install_prefix/bin/inproc_lat dyld: Library not loaded: libzmq.5.dylib Referenced from: /some_install_prefix/bin/inproc_lat Reason: image not found Trace/BPT trap: 5 Solution: Best practice is to install relocatable dylibs. On MacOS this means setting an install name with a special prefix, e.g. @rpath/libzmq.dylib, and adding the relevant search paths to the embedded rpath list. In this patch the necessary CMake options are added to generate the desired relocatable dylibs. Find more information on: https://cmake.org/Wiki/CMake_RPATH_handling.
-
- 23 Apr, 2018 2 commits
-
-
Doron Somech authored
Problem: Server-client not marked as DRAFT in manpage
-
Luca Boccassi authored
Solution: add note like for radio-dish Fixes: #3050
-
- 19 Apr, 2018 2 commits
-
-
Luca Boccassi authored
Fix fd_t variable casting on Windows platform
-
Maks Naumov authored
event_accepted() already accepts fd_t type and there is no reason to cast it to int type Moreover, on Windows x64 this leads to truncation memsize -> int
-
- 14 Apr, 2018 2 commits
-
-
Luca Boccassi authored
configure.ac: serach for dladdr only on libunwind
-
Asaf Kahlon authored
The original configure.ac tries to check for dladdr, but it actually needs it only in case we have libunwind (which has a another section and checks for it too). This can fail the build on systems without dynamic linking support. Therefore, the dladdr check has to be preformed only when checking libunwind. Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
-
- 13 Apr, 2018 1 commit
-
-
asafkahlon authored
* Implement the wsa_error_no function with switch-case Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
-
- 04 Apr, 2018 1 commit
-
-
Steffen Wittmeier authored
* Fixes issues with the PDB install rule for VS solutions * Fix for compile PDB and linker PDB under Windows
-
- 03 Apr, 2018 3 commits
-
-
Luca Boccassi authored
Problem: C++ style comments in header file breaks pedantic build
-
Simon Giesecke authored
Problem: C++ style comments in C file breaks pedantic build
-
- 02 Apr, 2018 1 commit
-
-
Luca Boccassi authored
Solution: change comments Fixes: #3036
-
- 28 Mar, 2018 5 commits
-
-
Luca Boccassi authored
Fix assertion failure when calling zmq_poller_destroy after zmq_ctx_term
-
Simon Giesecke authored
Problem: socket_poller destruction after context shutdown is only tested with a non-thread-safe socket Solution: test with both thread-safe and non-thread-safe sockets
-
Simon Giesecke authored
Solution: do not call getsockopt to query thread-safety of a socket
-
Simon Giesecke authored
Solution: Added test case to reproduce, not solving the problem!
-
Simon Giesecke authored
Problem: clang-format Travis job broken
-
- 27 Mar, 2018 1 commit
-
-
Luca Boccassi authored
Solution: don't run configure
-