Luca Boccassi
|
29e304ea5c
|
Problem: unity license not mentioned in debian/copyright
Solution: add it
|
2018-02-11 17:33:13 +00:00 |
|
Luca Boccassi
|
1478fd0022
|
Problem: unittests not built with autotools
Solution: add them to Makefile.am, linking to the static libzmq.a
library and its dependencies
|
2018-02-11 17:33:13 +00:00 |
|
Luca Boccassi
|
f6f67cbf96
|
Problem: no autotools support for building with unity
Solution: add a noinst convenience static library and use it with the
tests that require it
|
2018-02-11 17:25:36 +00:00 |
|
Simon Giesecke
|
7ea924c763
|
Problem: segfault on thread_t::stop if thread was never started
Solution: add started flag
|
2018-02-11 17:25:36 +00:00 |
|
Simon Giesecke
|
56c726d425
|
Problem: no unit tests
Solution: set up initial unit tests
|
2018-02-11 17:25:36 +00:00 |
|
Simon Giesecke
|
f87d3ab294
|
Problem: pollers unnecessarily depend on whole ctx_t, but actually use only start_thread method
Solution: extract thread_ctx_t from ctx_t
|
2018-02-11 17:25:36 +00:00 |
|
sigiesec
|
687f6a694f
|
Problem: license and source information missing
Solution: added MIT license file and github source info
|
2018-02-11 17:25:36 +00:00 |
|
sigiesec
|
5f854a31b7
|
Problem: test_security_curve not using test framework
Solution: use unity in test_security_curve
|
2018-02-11 17:25:36 +00:00 |
|
sigiesec
|
21879abb5b
|
Problem: test_socket_null not using test framework
Solution: rewrite test_socket_null to use unity
|
2018-02-11 17:25:36 +00:00 |
|
sigiesec
|
61a28a26cc
|
Problem: no test framework
Solution: add unity test framework, and integrate into cmake build
|
2018-02-11 17:25:36 +00:00 |
|
Luca Boccassi
|
afd5d9f721
|
Merge pull request #2939 from sigiesec/fix-poll-timer-event-retiring
Fixed a deadlock and an assertion failure in poll_t
|
2018-02-11 17:06:36 +00:00 |
|
Simon Giesecke
|
5873894c83
|
Problem: wrong assertion macro used on Windows
Solution: use wsa_assert instead of errno_assert
|
2018-02-11 13:52:41 +01:00 |
|
Simon Giesecke
|
2f27bcd74b
|
Problem: assertion failure in poll_t::poll if timer_event retired a
pollset entry
Solution: clean up retired entries before poll
|
2018-02-11 13:49:26 +01:00 |
|
Simon Giesecke
|
a2af3d18cc
|
Problem: unittest_poller fails for poll_t
Solution: fixed behaviour in corner cases
|
2018-02-11 13:49:25 +01:00 |
|
Simon Giesecke
|
ac777bad94
|
Merge pull request #2938 from bluca/format_autotools
Problem: make format-check not implemented with autotools
|
2018-02-10 15:26:53 -05:00 |
|
Simon Giesecke
|
504e6d0ecc
|
Merge pull request #2937 from bluca/gcc_4_build
Problem: DRAFT build broken with GCC 4.7
|
2018-02-10 15:25:54 -05:00 |
|
Luca Boccassi
|
d832267e23
|
Problem: make format-check not implemented with autotools
Solution: port implementation from zproject
|
2018-02-10 17:35:12 +00:00 |
|
Luca Boccassi
|
9b1ce59719
|
Problem: DRAFT build broken with GCC 4.7
Solution: change variable type in test_timers to match public API
|
2018-02-10 17:08:01 +00:00 |
|
Luca Boccassi
|
c33cb38af2
|
Merge pull request #2928 from eponsko/master
Add support for ZMQ_XPUB_NODROP on ZMQ_RADIO sockets
|
2018-02-09 17:15:47 +00:00 |
|
Luca Boccassi
|
eded1f8b90
|
Merge pull request #2923 from sigiesec/fastpath
Add support for SIO_LOOPBACK_FAST_PATH on Windows
|
2018-02-09 17:08:51 +00:00 |
|
Pontus Sköldström
|
a57f7e3824
|
Add support for ZMQ_XPUB_NODROP on ZMQ_RADIO sockets
Solves issue #2927
|
2018-02-09 16:20:50 +01:00 |
|
Simon Giesecke
|
a5e763039d
|
Problem: use of TCP loopback fastpath not available for user sockets
Solution: add socket option
|
2018-02-09 14:22:42 +01:00 |
|
sigiesec
|
490d76da2f
|
Problem: SIO_LOOPBACK_FAST_PATH not activated for signaler socket pair
Solution: activate SIO_LOOPBACK_FAST_PATH if available
See #2899
|
2018-02-09 13:50:40 +01:00 |
|
Luca Boccassi
|
9544dade49
|
Merge pull request #2926 from sigiesec/fix-issue-2925
Problem: assertion failure in poller_base.cpp:42
|
2018-02-09 09:49:17 +00:00 |
|
sigiesec
|
50d80d0835
|
Problem: test_timeo frequently fails on travis, probably because of slow
execution
Solution: relax test assertion to what can be guaranteed
|
2018-02-09 09:56:38 +01:00 |
|
sigiesec
|
88d8c768d1
|
Problem: test_timers frequently fails on travis-ci
Solution: relaxed test assertions, based on the actual time passed,
instead of assuming that this equals to the time slept
|
2018-02-09 09:55:40 +01:00 |
|
Simon Giesecke
|
3baefc66ea
|
Problem: incomplete assertions around modifications of fd_entries vs.
load
Solution: add assertions, partially in debug build only, improved naming
|
2018-02-09 09:53:02 +01:00 |
|
Simon Giesecke
|
a1d55d0506
|
Problem: race conditions for options.linger (#2910)
* Problem: race conditions for options.linger
Solution: make options.linger atomic
|
2018-02-08 22:10:45 +00:00 |
|
Simon Giesecke
|
de0c669323
|
Problem: std::atomic not used on Visual C++ although it is available (#2930)
* Problem: std::atomic not used on Visual C++ although it is available
Solution: change conditional compilation to recognize _MSC_VER
|
2018-02-08 22:01:02 +00:00 |
|
Luca Boccassi
|
52d64e1d5d
|
Merge pull request #2929 from sigiesec/add-windows-poll-build
Add windows poll build on Appveyor
|
2018-02-08 22:00:30 +00:00 |
|
Luca Boccassi
|
cdfc6bb8b3
|
Merge pull request #2924 from sigiesec/tcp-cleanup
Problem: duplicated code, redundant member handle_valid, asymmetry between tcp_connecter and tcp_listener
|
2018-02-08 21:57:46 +00:00 |
|
Luca Boccassi
|
9fbd125b41
|
Merge pull request #2917 from ZMQers/thread-safe-simplification
Problem: code duplication and unnecessary nesting around ZMQ_THREAD_SAFE querying
|
2018-02-08 21:57:06 +00:00 |
|
sigiesec
|
147fe9ed77
|
Problem: code duplication and unnecessary nesting around ZMQ_THREAD_SAFE
querying
Solution: remove code duplication and rearrange conditions
|
2018-02-08 22:54:30 +01:00 |
|
Luca Boccassi
|
cb9ccfa154
|
Merge pull request #2921 from sigiesec/mechanism-cleanup
Problem: code style issues in mechanism_t and socket_base_t
|
2018-02-08 21:53:14 +00:00 |
|
Luca Boccassi
|
2e849a4d60
|
Merge pull request #2913 from ZMQers/add-const
Problem: several fields are non-const without need
|
2018-02-08 21:47:21 +00:00 |
|
Luca Boccassi
|
9872daa293
|
Merge pull request #2912 from ZMQers/socket-base-signaler-unreachable-code
Problem: unreachable code around socket_base_t::add/remove_signaler
|
2018-02-08 21:46:02 +00:00 |
|
Luca Boccassi
|
3491fd0421
|
Merge pull request #2932 from sigiesec/reapply-2920
fix Windows Intel compiler build failure
|
2018-02-08 21:44:07 +00:00 |
|
Tetsuya Hayashi
|
fdcb4520ca
|
fix Windows Intel compiler build failure
|
2018-02-08 22:41:43 +01:00 |
|
Simon Giesecke
|
0b509c3d5b
|
Problem: no CI build on Windows with POLLER=poll
Solution: add appveyor job
|
2018-02-08 22:20:13 +01:00 |
|
Simon Giesecke
|
2c2ea82789
|
Problem: duplicated code, redundant member handle_valid, asymmetry between
tcp_connecter and tcp_listener
Solution: remove duplication and redundant member, align handling of
handle in tcp_connecter and tcp_listener
|
2018-02-08 22:20:01 +01:00 |
|
sigiesec
|
06d805ff82
|
Problem: unnecessary complex operations in socket_base_t::term_endpoint
Solution: use simpler operations, construct std::string only once
|
2018-02-08 22:19:54 +01:00 |
|
sigiesec
|
9a6993adce
|
Problem: several code style issues in mechanism_t: code and data duplication,
unnecessary construction of temporary std::string
Solution: removed duplication, removed construction of std::string
|
2018-02-08 22:19:54 +01:00 |
|
sigiesec
|
368eff9ecb
|
Problem: several fields are non-const without need
Solution: add const where easily possible
|
2018-02-08 22:17:03 +01:00 |
|
sigiesec
|
5b510656d0
|
Problem: unreachable code around socket_base_t::add/remove_signaler
Solution: replaced by assertion
|
2018-02-08 22:16:30 +01:00 |
|
Luca Boccassi
|
b77d7610cd
|
Merge pull request #2908 from ZMQers/clang-format
Problem: inconsistent formatting
|
2018-02-08 17:59:24 +00:00 |
|
Luca Boccassi
|
3bcbd6544b
|
Merge pull request #2922 from zeromq/revert-2920-work/fix-icl-build
Revert "Problem: Windows Intel compiler build broken"
|
2018-02-04 23:34:41 +01:00 |
|
Luca Boccassi
|
08cc22a52b
|
Revert "Problem: Windows Intel compiler build broken"
|
2018-02-04 23:33:40 +01:00 |
|
Luca Boccassi
|
c43c8795ca
|
Merge pull request #2920 from tetsuh/work/fix-icl-build
Problem: Windows Intel compiler build broken
|
2018-02-04 22:52:10 +01:00 |
|
Tetsuya Hayashi
|
fee3884b5d
|
fix Windows Intel compiler build failure
|
2018-02-03 22:56:29 +09:00 |
|
sigiesec
|
43c11d0a61
|
Problem: cmake broken under Windows
Solution: fix CMAKE_MODULES_PATH
|
2018-02-02 15:47:43 +01:00 |
|