- 16 Oct, 2017 3 commits
-
-
Luca Boccassi authored
Solution: mention that it is used on Linux when SCHED_OTHER is selected
-
Luca Boccassi authored
Solution: this will break once the tested APIs move from DRAFT to STABLE so instead check for the specific macros.
-
f18m authored
* Background thread scheduling - add ZMQ_THREAD_AFFINITY ctx option; set all thread scheduling options from the context of the secondary thread instead of using the main process thread context! - change ZMQ_THREAD_PRIORITY to support setting NICE of the background thread when using SCHED_OTHER
-
- 13 Oct, 2017 2 commits
-
-
Constantin Rack authored
Add my RELICENSE
-
Matt Arsenault authored
-
- 09 Oct, 2017 5 commits
-
-
Constantin Rack authored
Problems: strict ZAP protocol adherence is backward incompatible, minor static analysis warnings
-
Luca Boccassi authored
Solution: add ZMQ_ZAP_ENFORCE_DOMAIN to hide backward incompatible change and make it disabled by default. In a future release that breaks API compatibility we can then switch the default to enabled in order to achieve full RFC compatibility. Fixes #2762
-
Luca Boccassi authored
Solution: remove unused zap_ipc_creds boolean variable
-
Luca Boccassi authored
Solution: fix it
-
Luca Boccassi authored
Solution: wrap bitwise ANDs in brackets as the static analyzer suggests
-
- 07 Oct, 2017 1 commit
-
-
Constantin Rack authored
-
- 06 Oct, 2017 6 commits
-
-
Constantin Rack authored
Problem: lcov autoconf macro out of date
-
Luca Boccassi authored
Solution: update it
-
Luca Boccassi authored
Solution: pre-create the second socket to save a few cycles between closing the old one and binding the new one
-
Luca Boccassi authored
Solution: name it after the test to avoid possible clashes when running tests in parallel.
-
Luca Boccassi authored
Solution: take a copy of the file descriptor before setting it to retired_fd.
-
Luca Boccassi authored
Problem: Race condition in IPC sockets
-
- 05 Oct, 2017 4 commits
-
-
Ilya Kulakov authored
Solution: Don't unlink file on close File may not belong to the socket at that point.
-
Luca Boccassi authored
fix build for msvc2017
-
Alexander Dubovik authored
-
Luca Boccassi authored
add __FreeBSD__ to ifdefs
-
- 03 Oct, 2017 1 commit
-
-
Christopher Hall authored
On FreeBSD the sysmbol __FreeBSD_kernel__ is only defines if a specific param.h file is included, unlike Debian/kFreeBSD where this symbol is always defined. So also compile the FreeBSD specific code if __FreeBSD__ is defined for FreeBSD 11 & 12 compatibility. Signed-off-by: Christopher Hall <hsw@ms2.hinet.net>
-
- 20 Sep, 2017 2 commits
-
-
Luca Boccassi authored
Problem: term "identity" is confusing
-
Constantin Rack authored
Problem: zmq_connect fails after disconnect due to RECONNECT_IVL == -1
-
- 19 Sep, 2017 16 commits
-
-
sigiesec authored
Solution: replaced by "routing id"
-
sigiesec authored
Solution: differentiate propertly between ZMTP property names and ZeroMQ API property names
-
sigiesec authored
Solution: fix zmq_draft.h
-
sigiesec authored
Solution: replaced by "routing id"
-
sigiesec authored
Solution: use "routing_id" instead
-
sigiesec authored
Solution: Replaced by "routing id"
-
sigiesec authored
Solution: change docs to refer to "Routing id"
-
sigiesec authored
Solution: Renamed, but support querying the property by its old name
-
sigiesec authored
Solution: Replaced by "routing_id"
-
sigiesec authored
Solution: renamed routing_id fields in pipe_t, renamed ZMQ_CONNECT_RID to ZMQ_CONNECT_ROUTING_ID
-
sigiesec authored
Solution: replace by "routing id"
-
Luca Boccassi authored
Problem: tests where client should receive an ERROR sometimes do not
-
Luca Boccassi authored
Solution: when a connection breaks and ZMQ_RECONNECT_IVL is set to -1, which means a reconnection will not be attempted, send a message from the I/O thread to the application thread to make the socket call term_endpoint, which is the equivalent of manually calling zmq_disconnect. This way subsequent zmq_connect call to the same endpoint will attempt again to do a connection. Otherwise, for some socket types like SUBs, those new connects will fail as the endpoint is recorded, despite the connection having been permanently closed. Add test cases to exercise this corner case with TCP and IPC.
-
sigiesec authored
receive an ERROR (probably because the connection is closed before) Solution: wait for client-side monitor events before closing the client socket Fixes #2705
-
Luca Boccassi authored
Problem: documentation of ZMQ_ZAP_DOMAIN is wrong
-
sigiesec authored
Solution: fix documentation
-