- 10 Jun, 2015 3 commits
-
-
Pieter Hintjens authored
Fix windows build
-
Richard Newton authored
-
Richard Newton authored
-
- 08 Jun, 2015 2 commits
-
-
Pieter Hintjens authored
test zmq_msg custom free-function
-
Min RK authored
new allocation caused reference counters to lose track on copy
-
- 07 Jun, 2015 5 commits
-
-
Pieter Hintjens authored
don't check POLLOUT for single-socket proxies
-
Min RK authored
-
Min RK authored
-
Thomas Rodgers authored
Fix initialization order.
-
Kapp Arnaud authored
Fixes #1431.
-
- 06 Jun, 2015 2 commits
-
-
KAPP Arnaud authored
Enable install of man pages when BUILD_DOC is not set by shifting INS…
-
Jason Unovitch authored
Enable install of man pages when BUILD_DOC is not set by shifting INSTALL_MAN outside of BUILD_DOC's if/endif
-
- 05 Jun, 2015 13 commits
-
-
Pieter Hintjens authored
Update documentation for zmq_setsockopt.
-
Kapp Arnaud authored
Pull request #1426 now allow for changing the watermark after and connect() or a bind(). This patch reflect the change in the documentation. Also closes #1416.
-
Constantin Rack authored
Allow changing of high water marks after connection is established
-
Richard Newton authored
-
Richard Newton authored
-
KAPP Arnaud authored
Fixed executable name in the usage string
-
Mipa authored
-
Constantin Rack authored
Fix xpub test to set hwm before bind.
-
Richard Newton authored
-
Pieter Hintjens authored
Fail ZMQ_SNDHWM and ZMQ_RCVHWM setsockopt if already connected.
-
Richard Newton authored
-
Richard Newton authored
-
-
- 04 Jun, 2015 4 commits
-
-
Constantin Rack authored
Problem: tests/test_socketopt_hwm fails and breaks CI
-
Pieter Hintjens authored
Solution: mark this as XFAIL
-
-
Pieter Hintjens authored
Introduce a failing test against zmq_setsockpt().
-
- 03 Jun, 2015 4 commits
-
-
Kapp Arnaud authored
Problem: zmq_setsockpt() returns success when changing the HWM after a bind or connect() even though the call has no effect. Solution: Introduce a failing test a reminder we need to patch it.
-
Pieter Hintjens authored
Zero copy message receive in v2_decoder
-
Jens Auer authored
Construct messages from a reference-counted buffer allocated once per receive instead of copying the data.
-
Jens Auer authored
With a msg_t size of 64 bytes, it becomes possible to embedd the content_t's members struct for large messages directly in the msg_t. This saves the dynamic allocation of content_t obejcts when using msg_t::init_data. content_t contains a zmq::atomic_counter_t object which is not a POD in C++98 and thus it cannot be used as a member of the union u. To bypass this, C++11 is used which has relaxed rules for POD and atomic_counter is a C++11-POD. An alternative would have been to make atomic_counter a classical POD by removing constructors and all private member functions, i.e. have a struct and free functions to manipulate it. A new msg_t::init function is added which decides to either to copy the data for size<64 bytes or use msg_t::init_data to do zero-copy initialization.
-
- 02 Jun, 2015 6 commits
-
-
KAPP Arnaud authored
Fixes to README
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Problem: source file headers are somewhat confusing about LGPLv3
-
Pieter Hintjens authored
Of course people still "can" distributed the sources under the LGPLv3. However we provide COPYING.LESSER with additional grants. Solution: specify these grants in the header of each source file.
-
Constantin Rack authored
HPUX build and gmake check issues solution. Fixes #1412
-
ALEKSANDR MELNIKOV authored
-
- 31 May, 2015 1 commit
-
-
Constantin Rack authored
Fixed out-of-bounds access when releasing socket handles.
-