- 11 Jun, 2019 3 commits
-
-
Luca Boccassi authored
Solution: apply clang-format-diff
-
Luca Boccassi authored
pthread_equal to compare thread ids
-
Philippe Bernardino Leite authored
I am trying to port ZeroMQ to z/OS USS and I faced several problems. One of them is this function "is_current_thread" trying to compare two thread ids with operator "==". I've changed the code to use the official function "pthread_equal" to compare thread ids and now it's working fine.
-
- 10 Jun, 2019 5 commits
-
-
Luca Boccassi authored
Implement SOCKS5 basic authentication
-
Christophe Guillon authored
-
Luca Boccassi authored
Fix issues with SOCKS5 proxy connection
-
Christophe Guillon authored
Two issues where introduced by commit 12c4b55a: - the proxy connection was done to the target address instead of the proxy address - on error the proxy connection status was not reset to unplugged
-
Christophe Guillon authored
-
- 31 May, 2019 2 commits
-
-
Luca Boccassi authored
Problem: Unclear `zmq_msg_send` failure semantics
-
Andreas Rottmann authored
Solution: Explicitly explain message ownership semantics when the call fails. Fixes #3526.
-
- 24 May, 2019 3 commits
-
-
Luca Boccassi authored
Add missing information on multicasting with high data rates to PGM docs
-
jackpimbert authored
Solution: Include a new section on configuring both ZMQ and the host OS tx/rx buffers to facilitate sending large messages at a high data rate with the PGM protocol.
-
jackpimbert authored
Solution: Added relicense agreement
-
- 23 May, 2019 2 commits
-
-
Luca Boccassi authored
acinclude.m4, configure.ac: Fix several non-portable uses of `test`
-
Alain Kalker authored
-
- 21 May, 2019 5 commits
-
-
Alain Kalker authored
Fixes #3517
-
Luca Boccassi authored
Fix Fedora 30 build
-
Romain Moret authored
-
Luca Boccassi authored
Implement thread_t::setThreadName() on windows
-
Romain Moret authored
-
- 18 May, 2019 9 commits
-
-
Doron Somech authored
Problem: clang-format 5 has issues with comments
-
Doron Somech authored
Problems: typos in docs, unnecessary ifdefs, duplicated APIs
-
Luca Boccassi authored
Solution: now that clang-format 6+ is used in the CI, fix it
-
Luca Boccassi authored
Solution: bump CI to version 7
-
Luca Boccassi authored
Solution: unify the two APIs, as they are both still in DRAFT state and thus can be changed.
-
Luca Boccassi authored
Solution: fix them
-
Luca Boccassi authored
Solution: use unlikely to optimize for the most common case
-
Luca Boccassi authored
Solution: remove them, only public headers have to be ifdef'd
-
Luca Boccassi authored
Solution: list it
-
- 17 May, 2019 1 commit
-
-
imkcy9 authored
Support XPub socket send last value caching to last subscription pipe with ZMQ_XPUB_MANUAL_LAST_VALUE. (#3511) * Add ZMQ_XPUB_MANUAL_LAST_VALUE * Surpport xpub send last value caching to one pipe with ZMQ_XPUB_MANUAL_LAST_VALUE * Add test_xpubub_manual_last_value * Add relicense and doc
-
- 15 May, 2019 5 commits
-
-
Luca Boccassi authored
Problem: Potentially unitialized variable in #3508
-
jean-airoldie authored
Solution: Create a unique endpoint for each fcn call.
-
jean-airoldie authored
Solution: Initialized it
-
Simon Giesecke authored
Problem: Socket monitoring only allows ZMQ_PAIR
-
jean-airoldie authored
Solution: Allow ZMQ_PUB and ZMQ_PUSH sockets types for the monitoring. This way someone could create a ZMQ_PULL socket connected to multiple monitoring sockets at the same time.
-
- 10 May, 2019 2 commits
-
-
Doron Somech authored
Problem: PLAIN HELLO message incorrectly uses WELCOME literal
-
Simon Giesecke authored
Solution: change to HELLO
-
- 09 May, 2019 3 commits
-
-
Doron Somech authored
Problem: signature of zmq_poller_fd does is incompatible with regular…
-
Simon Giesecke authored
Solution: change return type to int (again) and return fd via an output parameter
-
Doron Somech authored
Problem: syntax error on Windows related to socket descriptor type
-