diff -Nru zeromq3-4.1.2/autogen.sh zeromq3-4.1.3/autogen.sh --- zeromq3-4.1.2/autogen.sh 2014-10-16 04:43:15.000000000 +0000 +++ zeromq3-4.1.3/autogen.sh 2015-08-17 10:48:42.000000000 +0000 @@ -20,10 +20,14 @@ # Script to generate all required files from fresh git checkout. -command -v libtool >/dev/null 2>&1 +# Debian and Ubuntu do not shipt libtool anymore, but OSX does not ship libtoolize. +command -v libtoolize >/dev/null 2>&1 if [ $? -ne 0 ]; then - echo "autogen.sh: error: could not find libtool. libtool is required to run autogen.sh." 1>&2 - exit 1 + command -v libtool >/dev/null 2>&1 + if [ $? -ne 0 ]; then + echo "autogen.sh: error: could not find libtool. libtool is required to run autogen.sh." 1>&2 + exit 1 + fi fi command -v autoreconf >/dev/null 2>&1 diff -Nru zeromq3-4.1.2/builds/redhat/zeromq.spec.in zeromq3-4.1.3/builds/redhat/zeromq.spec.in --- zeromq3-4.1.2/builds/redhat/zeromq.spec.in 2014-11-06 09:57:11.000000000 +0000 +++ zeromq3-4.1.3/builds/redhat/zeromq.spec.in 2015-08-17 10:48:42.000000000 +0000 @@ -112,8 +112,8 @@ %{_bindir}/curve_keygen # libraries -%{_libdir}/libzmq.so.4 -%{_libdir}/libzmq.so.4.0.0 +%{_libdir}/libzmq.so.5 +%{_libdir}/libzmq.so.5.0.0 %{_mandir}/man7/zmq.7.gz @@ -166,7 +166,6 @@ %{_mandir}/man3/zmq_has.3.gz %{_mandir}/man3/zmq_msg_gets.3.gz %{_mandir}/man3/zmq_proxy_steerable.3.gz -%{_mandir}/man7/zmq_epgm.7.gz %{_mandir}/man7/zmq_inproc.7.gz %{_mandir}/man7/zmq_ipc.7.gz %{_mandir}/man7/zmq_pgm.7.gz diff -Nru zeromq3-4.1.2/ChangeLog zeromq3-4.1.3/ChangeLog --- zeromq3-4.1.2/ChangeLog 2015-06-15 09:41:17.000000000 +0000 +++ zeromq3-4.1.3/ChangeLog 2015-08-17 10:51:28.000000000 +0000 @@ -1,5 +1,406 @@ # Generated by Makefile. Do not edit. +commit 765b1f24e31b876bde23eaaf389ca8623822c9bd +Merge: 53db746 a1fcf2f +Author: Pieter Hintjens +Date: Mon Aug 17 12:49:15 2015 +0200 + + Merge pull request #62 from hintjens/master + + Fixed NEWS for release 4.1.3 + +commit a1fcf2f740fe6ac4e1bfdd54d3218eeb8fe3bdc7 +Author: Pieter Hintjens +Date: Mon Aug 17 12:48:04 2015 +0200 + + Fixed NEWS for release 4.1.3 + + NEWS | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +commit 53db7468b64988bad89db39703760515bd59f9ce +Merge: 7f45c05 e39517c +Author: Joe Eli McIlvain +Date: Sun Aug 16 18:28:35 2015 -0700 + + Merge pull request #61 from bluca/ci-container-build + + Enable container-based build + +commit e39517c9f5b14d072fa98308df9aaf576ba1bb95 +Author: Luca Boccassi +Date: Mon Aug 17 01:26:35 2015 +0100 + + Enable container-based build + + Remove use of "sudo", build and install in local directory in order + to enable container-based CI builds + + .travis.yml | 20 +++++++++++++++----- + 1 file changed, 15 insertions(+), 5 deletions(-) + +commit 7f45c052c4d0e1801686906bd6697fea2184294c +Merge: 1cccf94 b1bdec4 +Author: Constantin Rack +Date: Tue Aug 11 04:39:39 2015 +0200 + + Merge pull request #60 from GreatFruitOmsk/master + + Fix documentation of the ZMQ_REQ_CORRELATE option. + +commit b1bdec4404047db7cf2356555c8f8749c2865b2b +Author: Ilya Kulakov +Date: Mon Aug 10 22:32:16 2015 -0400 + + Fix documentation of the ZMQ_REQ_CORRELATE option. + + Full message is actually (request id, identity, 0, + user frames...). + + doc/zmq_setsockopt.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 1cccf94c2e6ae018f1b534a732dcb7892f7ab28a +Merge: 6282d76 92f2b07 +Author: Richard Newton +Date: Sun Aug 2 19:32:43 2015 +0100 + + Merge pull request #59 from bluca/fix-ci-timeout + + Problem: CI may fail due to timeout. Fixes #58 + +commit 92f2b073bedd8d3557fe16b55d574adf41c6afa5 +Author: Luca Boccassi +Date: Sat Aug 1 19:09:19 2015 +0100 + + Problem: CI may fail due to timeout. Fixes #58 + + Solution: cherry-pick Pieter Hintjens commit a7a512ab from libzmq + repository to increase test timeouts to 250 msec. + + tests/test_connect_delay_tipc.cpp | 2 +- + tests/test_filter_ipc.cpp | 4 ++-- + tests/test_immediate.cpp | 2 +- + tests/test_req_relaxed.cpp | 2 +- + tests/test_security_curve.cpp | 2 +- + tests/test_security_null.cpp | 2 +- + tests/test_security_plain.cpp | 2 +- + tests/test_spec_dealer.cpp | 6 +++--- + tests/test_spec_pushpull.cpp | 4 ++-- + tests/test_spec_rep.cpp | 2 +- + tests/test_spec_req.cpp | 6 +++--- + tests/test_spec_router.cpp | 2 +- + tests/testutil.hpp | 2 +- + 13 files changed, 19 insertions(+), 19 deletions(-) + +commit 6282d762685e78d54090bcc46df0d9a8eb636324 +Merge: 0b4dfd8 866b028 +Author: Richard Newton +Date: Sun Aug 2 19:22:07 2015 +0100 + + Merge pull request #57 from bluca/travis-ci-osx + + Travis ci osx + +commit 866b02895febdd1b0fa5e91c426b6fef9912e31d +Author: Luca Boccassi +Date: Sun Aug 2 19:14:52 2015 +0100 + + Increase file limit in travis config + + Test cases occasionally fail, especially on OSX, due to socket limit. + + .travis.yml | 5 +++++ + 1 file changed, 5 insertions(+) + +commit 073807371c5ab164441fdea8e0de23bea81deb45 +Author: Luca Boccassi +Date: Sat Aug 1 19:14:28 2015 +0100 + + Add OSX build to travis config. Fixes #56 + + .travis.yml | 4 ++++ + 1 file changed, 4 insertions(+) + +commit 7849d022143393c82fbec672e07ba559574ac922 +Author: Luca Boccassi +Date: Sat Aug 1 19:13:20 2015 +0100 + + Do not use ldconfig in CI if running on OSX + + ldconfig is not available on OSX, so Travis CI build fails + + .travis.yml | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit 0b4dfd81937b7424dcbbe80e26ad68f4c16f744f +Merge: 74fe8b6 b7226da +Author: Constantin Rack +Date: Sat Aug 1 13:59:55 2015 +0200 + + Merge pull request #55 from bluca/fix-autogen-libtool-detection + + Solution: check for libtoolize in autogen. Fixes #54 + +commit b7226da0d09ebdfb47edb3ffc102898709f0d002 +Author: Luca Boccassi +Date: Sat Aug 1 12:38:19 2015 +0100 + + Solution: check for libtoolize in autogen. Fixes #54 + + Autogen.sh looks for the libtool command as a mean to check if + libtool is available. But distributions like Debian and Ubuntu have + split the libtool package, and the libtool script is now in a + separate package. The solution is to look for the libtoolize command + too before failing, which is what the Autotools chain actually needs + on Linux. Keep checking for libtool to be compatible with OSX, where + the opposite is true. + + autogen.sh | 10 +++++++--- + 1 file changed, 7 insertions(+), 3 deletions(-) + +commit 74fe8b61256fe94efd63cb4cb60cfbc9995542c8 +Merge: 7e7ce77 a9ca068 +Author: Constantin Rack +Date: Sat Aug 1 10:55:15 2015 +0200 + + Merge pull request #53 from rikvdh/master + + Fix issue #52, reset all bits in getsockopt + +commit a9ca06847b2d55c6b1272e8df68ab032f6b8a762 +Author: Rik van der Heijden +Date: Sat Aug 1 10:28:57 2015 +0200 + + Fix issue #52, reset all bits in getsockopt + + Makefile.am | 4 +++ + NEWS | 2 ++ + src/socket_base.cpp | 1 + + tests/CMakeLists.txt | 1 + + tests/test_getsockopt_memset.cpp | 69 ++++++++++++++++++++++++++++++++++++++ + 5 files changed, 77 insertions(+) + +commit 7e7ce778ef02603c4e2bcd654fe004b8d5559588 +Merge: 1d0f7b6 95b3f20 +Author: Joe Eli McIlvain +Date: Wed Jul 15 09:35:45 2015 -0400 + + Merge pull request #50 from leonarf/patch-1 + + THREAD_SCHED_POLICY & THREAD_PRIORITY documentation + +commit 95b3f204a8b6480fe436df98bb194ad0b145be0b +Author: leonarf +Date: Wed Jul 15 15:19:17 2015 +0200 + + THREAD_SCHED_POLICY & THREAD_PRIORITY documentation + + Documentaion of ZMQ_THREAD_SCHED_POLICY and ZMQ_THREAD_PRIORITY context's option. + + doc/zmq_ctx_set.txt | 22 ++++++++++++++++++++++ + 1 file changed, 22 insertions(+) + +commit 1d0f7b6979ad6282f306991288252a4b0f14ddd0 +Merge: 9a63ac7 a3f4b4e +Author: Richard Newton +Date: Fri Jul 3 16:03:01 2015 +0100 + + Merge pull request #49 from blalor/patch-1 + + Fix path to libzmq .so files in RPM spec file + +commit a3f4b4ef78ae536f6d72e4f0efc39c79777988b4 +Author: Brian Lalor +Date: Fri Jul 3 07:57:31 2015 -0400 + + Remove missing man page from spec file + + builds/redhat/zeromq.spec.in | 1 - + 1 file changed, 1 deletion(-) + +commit c78a5fd4432c596587fc7732145c349caf064c28 +Author: Brian Lalor +Date: Fri Jul 3 07:47:48 2015 -0400 + + Fix path to libzmq .so files in RPM spec file + + Fixes a packaging error when building the RPM: + + ``` + $ rpmbuild -tb --with libsodium zeromq-4.1.2.tar.gz + […] + RPM build errors: + File not found: …/zeromq-4.1.2-1.el6.x86_64/usr/lib64/libzmq.so.4 + File not found: …/zeromq-4.1.2-1.el6.x86_64/usr/lib64/libzmq.so.4.0.0 + + $ ls …/zeromq-4.1.2-1.el6.x86_64/usr/lib64/libzmq* + libzmq.a libzmq.la libzmq.so libzmq.so.5 libzmq.so.5.0.0 + ``` + + builds/redhat/zeromq.spec.in | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 9a63ac7c542c86216ea205a77f960ab6655c978c +Merge: 533437a 0684a76 +Author: Pieter Hintjens +Date: Mon Jun 29 08:08:08 2015 +0200 + + Merge pull request #47 from calid/ignore-test_proxy_single_socket + + add test_proxy_single_socket to gitignore + +commit 533437a5c007b0e937a9e4a3316649bb28dcee73 +Merge: b5d8b36 6b8aae0 +Author: Pieter Hintjens +Date: Mon Jun 29 08:04:41 2015 +0200 + + Merge pull request #48 from calid/issue-949-tests + + add tests for zeromq/libzmq#949 + +commit 6b8aae0b54bf083d4e786b39e00a011c822b6350 +Author: Dylan Cali +Date: Sun Jun 28 22:32:55 2015 -0500 + + be pedantic and call zmq_close in tests + + tests/test_unbind_inproc.cpp | 3 +++ + tests/test_unbind_wildcard.cpp | 3 +++ + 2 files changed, 6 insertions(+) + +commit b0023f0ccf3be0abf0e99fe9f05427dc771db55a +Author: Dylan Cali +Date: Sun Jun 28 21:28:49 2015 -0500 + + fix errant comments + + tests/test_unbind_inproc.cpp | 4 ++-- + tests/test_unbind_wildcard.cpp | 4 ++-- + 2 files changed, 4 insertions(+), 4 deletions(-) + +commit 0684a760c9a8c09d2daf5ac31b2ba60dd67a8424 +Author: Dylan Cali +Date: Sun Jun 28 21:04:55 2015 -0500 + + add test_proxy_single_socket to gitignore + + .gitignore | 1 + + 1 file changed, 1 insertion(+) + +commit c8c36f590702a75b2d82e10a6c4365e04627b10c +Author: Dylan Cali +Date: Sun Jun 28 20:53:04 2015 -0500 + + add tests for zeromq/libzmq#949 + + .gitignore | 2 ++ + Makefile.am | 8 +++++++ + tests/CMakeLists.txt | 2 ++ + tests/test_unbind_inproc.cpp | 40 +++++++++++++++++++++++++++++++++++ + tests/test_unbind_wildcard.cpp | 45 ++++++++++++++++++++++++++++++++++++++++ + 5 files changed, 97 insertions(+) + +commit b5d8b360d74c38bd54d5aba75cd88edcaf613f9a +Merge: 97a0b5d 5bd3a0d +Author: Constantin Rack +Date: Tue Jun 23 10:37:58 2015 +0200 + + Merge pull request #46 from dnaeon/typo-fix + + Typo fix + +commit 5bd3a0d4334dc7cce4112734adbeb89678a27aad +Author: Marin Atanasov Nikolov +Date: Tue Jun 23 14:34:33 2015 +0300 + + Typo fix + + src/msg.hpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 97a0b5dc086a99c31ec517c1963765a1e1e64637 +Merge: 3869d7d b178072 +Author: Pieter Hintjens +Date: Tue Jun 23 09:42:10 2015 +0200 + + Merge pull request #45 from c-rack/update-news + + Problem: NEWS was not updated for backported fix on ipv6 addresses + +commit b178072326e1db5e79856ca5e7b188039615d01c +Author: Constantin Rack +Date: Tue Jun 23 09:24:22 2015 +0200 + + Solution: add backported fix to NEWS + + NEWS | 5 +++++ + 1 file changed, 5 insertions(+) + +commit 3869d7d4902ecb41f20045b69750c272f413df0d +Merge: 66d32eb 8146465 +Author: Richard Newton +Date: Tue Jun 23 08:11:03 2015 +0100 + + Merge pull request #44 from c-rack/fix-ipv6-resolve + + Solution: allow brackets in tcp address. Fixes #43 + +commit 81464652d2453c608bbbb52fd59e9e9f20857178 +Author: Constantin Rack +Date: Tue Jun 23 08:29:36 2015 +0200 + + Solution: allow brackets in tcp address. Fixes #43 + + src/socket_base.cpp | 5 +++-- + tests/test_connect_resolve.cpp | 3 +++ + 2 files changed, 6 insertions(+), 2 deletions(-) + +commit 66d32eb04ce8929abbec82dad9af6725bde2772e +Merge: 982f9eb 8a41475 +Author: Constantin Rack +Date: Fri Jun 19 14:13:15 2015 +0200 + + Merge pull request #42 from mindw/vs2008_stdint_fix + + stdint.h is available in VS2008 (1500) + +commit 8a41475b74cc071711a8c8cf060ff451ed466a58 +Author: Gabi Davar +Date: Fri Jun 19 14:49:04 2015 +0300 + + stdint is available in VS2008 (1600) + + src/stdint.hpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 982f9ebfdb040d98a83918ca049070d3178d4b94 +Merge: 575da3e e740796 +Author: Constantin Rack +Date: Mon Jun 15 11:47:09 2015 +0200 + + Merge pull request #41 from hintjens/master + + Update version for next release, 4.1.3 + +commit e74079606587c51ce9dadfb66a656d17a4ebe23a +Author: Pieter Hintjens +Date: Mon Jun 15 11:45:16 2015 +0200 + + Update version for next release, 4.1.3 + + include/zmq.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 575da3ec7ad2cdb85386d7ec2459b550b884c332 +Merge: d62bf33 58d8206 +Author: Pieter Hintjens +Date: Mon Jun 15 11:42:56 2015 +0200 + + Merge pull request #40 from hintjens/master + + Updated NEWS for 4.1.2 + commit 58d8206c0500d0c14c5da94ee6d9e24a9504c9e9 Author: Pieter Hintjens Date: Mon Jun 15 11:39:27 2015 +0200 diff -Nru zeromq3-4.1.2/configure zeromq3-4.1.3/configure --- zeromq3-4.1.2/configure 2015-06-15 09:39:39.000000000 +0000 +++ zeromq3-4.1.3/configure 2015-08-17 10:49:50.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for zeromq 4.1.2. +# Generated by GNU Autoconf 2.68 for zeromq 4.1.3. # # Report bugs to . # @@ -570,8 +570,8 @@ # Identity of this package. PACKAGE_NAME='zeromq' PACKAGE_TARNAME='zeromq' -PACKAGE_VERSION='4.1.2' -PACKAGE_STRING='zeromq 4.1.2' +PACKAGE_VERSION='4.1.3' +PACKAGE_STRING='zeromq 4.1.3' PACKAGE_BUGREPORT='zeromq-dev@lists.zeromq.org' PACKAGE_URL='' @@ -1360,7 +1360,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures zeromq 4.1.2 to adapt to many kinds of systems. +\`configure' configures zeromq 4.1.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1430,7 +1430,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of zeromq 4.1.2:";; + short | recursive ) echo "Configuration of zeromq 4.1.3:";; esac cat <<\_ACEOF @@ -1568,7 +1568,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -zeromq configure 4.1.2 +zeromq configure 4.1.3 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2411,7 +2411,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by zeromq $as_me 4.1.2, which was +It was created by zeromq $as_me 4.1.3, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -3230,7 +3230,7 @@ # Define the identity of the package. PACKAGE='zeromq' - VERSION='4.1.2' + VERSION='4.1.3' cat >>confdefs.h <<_ACEOF @@ -20862,7 +20862,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by zeromq $as_me 4.1.2, which was +This file was extended by zeromq $as_me 4.1.3, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20928,7 +20928,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -zeromq config.status 4.1.2 +zeromq config.status 4.1.3 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff -Nru zeromq3-4.1.2/debian/changelog zeromq3-4.1.3/debian/changelog --- zeromq3-4.1.2/debian/changelog 2015-07-24 02:47:42.000000000 +0000 +++ zeromq3-4.1.3/debian/changelog 2015-08-25 06:05:47.000000000 +0000 @@ -1,6 +1,24 @@ +zeromq3 (4.1.3-1chl1~precise1) precise; urgency=low + + * New upstream release. + + -- Chris Lea Mon, 24 Aug 2015 22:43:34 -0700 + +zeromq3 (4.1.2-3chl1~precise1) precise; urgency=low + + * Re-enable tests, but take out parallel build. + + -- Chris Lea Tue, 11 Aug 2015 15:21:35 -0700 + +zeromq3 (4.1.2-2chl1~precise1) precise; urgency=low + + * Disable tests that for some reason fail on Launchpad. + + -- Chris Lea Thu, 06 Aug 2015 20:08:44 -0700 + zeromq3 (4.1.2-1chl1~precise1) precise; urgency=low - * Backport to precise. + * Backport to precise. -- Chris Lea Thu, 23 Jul 2015 19:46:46 -0700 diff -Nru zeromq3-4.1.2/debian/patches/disable-test_security_curve.patch zeromq3-4.1.3/debian/patches/disable-test_security_curve.patch --- zeromq3-4.1.2/debian/patches/disable-test_security_curve.patch 2015-07-11 11:47:09.000000000 +0000 +++ zeromq3-4.1.3/debian/patches/disable-test_security_curve.patch 2015-08-25 05:59:01.000000000 +0000 @@ -1,29 +1,21 @@ -Description: disable test_security_curve - It hangs in buildds that not x86/x64 based. -Author: Laszlo Boszormenyi (GCS) -Forwarded: no -Last-Update: 2015-07-11 - ---- - ---- zeromq3-4.1.2.orig/Makefile.am -+++ zeromq3-4.1.2/Makefile.am -@@ -307,7 +307,6 @@ test_apps = \ - test_ctx_destroy \ - test_security_null \ - test_security_plain \ -- test_security_curve \ - test_iov \ - test_spec_req \ - test_spec_rep \ ---- zeromq3-4.1.2.orig/Makefile.in -+++ zeromq3-4.1.2/Makefile.in -@@ -1072,7 +1072,7 @@ test_apps = test_system test_pair_inproc - test_router_handover test_probe_router test_stream \ +diff -urN zeromq-4.1.3-orig/Makefile.in zeromq-4.1.3/Makefile.in +--- zeromq-4.1.3-orig/Makefile.in 2015-08-17 03:49:50.000000000 -0700 ++++ zeromq-4.1.3/Makefile.in 2015-08-24 22:58:37.639268677 -0700 +@@ -203,7 +203,7 @@ + test_disconnect_inproc$(EXEEXT) test_unbind_inproc$(EXEEXT) \ + test_unbind_wildcard$(EXEEXT) test_ctx_options$(EXEEXT) \ + test_ctx_destroy$(EXEEXT) test_security_null$(EXEEXT) \ +- test_security_plain$(EXEEXT) test_security_curve$(EXEEXT) \ ++ test_security_plain$(EXEEXT) \ + test_iov$(EXEEXT) test_spec_req$(EXEEXT) \ + test_spec_rep$(EXEEXT) test_spec_dealer$(EXEEXT) \ + test_spec_router$(EXEEXT) test_spec_pushpull$(EXEEXT) \ +@@ -1090,7 +1090,7 @@ test_stream_empty test_stream_disconnect test_stream_timeout \ - test_disconnect_inproc test_ctx_options test_ctx_destroy \ -- test_security_null test_security_plain test_security_curve \ -+ test_security_null test_security_plain \ - test_iov test_spec_req test_spec_rep test_spec_dealer \ - test_spec_router test_spec_pushpull test_req_correlate \ - test_req_relaxed test_conflate test_inproc_connect \ + test_disconnect_inproc test_unbind_inproc test_unbind_wildcard \ + test_ctx_options test_ctx_destroy test_security_null \ +- test_security_plain test_security_curve test_iov test_spec_req \ ++ test_security_plain test_iov test_spec_req \ + test_spec_rep test_spec_dealer test_spec_router \ + test_spec_pushpull test_req_correlate test_req_relaxed \ + test_conflate test_inproc_connect test_issue_566 test_proxy \ diff -Nru zeromq3-4.1.2/debian/patches/series zeromq3-4.1.3/debian/patches/series --- zeromq3-4.1.2/debian/patches/series 2015-07-11 11:48:51.000000000 +0000 +++ zeromq3-4.1.3/debian/patches/series 2015-08-25 06:05:01.000000000 +0000 @@ -1 +1 @@ -disable-test_security_curve.patch +#disable-test_security_curve.patch diff -Nru zeromq3-4.1.2/debian/rules zeromq3-4.1.3/debian/rules --- zeromq3-4.1.2/debian/rules 2015-07-11 12:00:28.000000000 +0000 +++ zeromq3-4.1.3/debian/rules 2015-08-11 22:20:55.000000000 +0000 @@ -24,6 +24,6 @@ dh_strip --dbg-package=libzmq5-dbg %: - dh $@ --with=autoreconf --parallel + dh $@ --with=autoreconf .PHONY: override_dh_auto_configure override_dh_strip diff -Nru zeromq3-4.1.2/doc/zmq.7 zeromq3-4.1.3/doc/zmq.7 --- zeromq3-4.1.2/doc/zmq.7 2014-11-03 16:17:59.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq.7 2015-08-17 10:51:01.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ" "7" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_bind.3 zeromq3-4.1.3/doc/zmq_bind.3 --- zeromq3-4.1.2/doc/zmq_bind.3 2014-11-03 16:17:34.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_bind.3 2015-08-17 10:50:01.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_bind .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_BIND" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_BIND" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_bind.html zeromq3-4.1.3/doc/zmq_bind.html --- zeromq3-4.1.2/doc/zmq_bind.html 2015-06-15 09:40:54.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_bind.html 2014-10-14 08:41:00.000000000 +0000 @@ -946,8 +946,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_close.3 zeromq3-4.1.3/doc/zmq_close.3 --- zeromq3-4.1.2/doc/zmq_close.3 2014-11-03 16:17:36.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_close.3 2015-08-17 10:50:06.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_close .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CLOSE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CLOSE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_close.html zeromq3-4.1.3/doc/zmq_close.html --- zeromq3-4.1.2/doc/zmq_close.html 2015-06-15 09:40:55.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_close.html 2014-10-14 08:41:01.000000000 +0000 @@ -815,8 +815,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_connect.3 zeromq3-4.1.3/doc/zmq_connect.3 --- zeromq3-4.1.2/doc/zmq_connect.3 2014-11-03 16:17:34.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_connect.3 2015-08-17 10:50:03.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_connect .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CONNECT" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CONNECT" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_connect.html zeromq3-4.1.3/doc/zmq_connect.html --- zeromq3-4.1.2/doc/zmq_connect.html 2015-06-15 09:40:54.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_connect.html 2014-10-14 08:41:00.000000000 +0000 @@ -928,8 +928,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_ctx_get.3 zeromq3-4.1.3/doc/zmq_ctx_get.3 --- zeromq3-4.1.2/doc/zmq_ctx_get.3 2014-11-03 16:17:36.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_get.3 2015-08-17 10:50:10.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_ctx_get .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CTX_GET" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CTX_GET" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_ctx_get.html zeromq3-4.1.3/doc/zmq_ctx_get.html --- zeromq3-4.1.2/doc/zmq_ctx_get.html 2015-06-15 09:40:56.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_get.html 2014-10-14 08:41:02.000000000 +0000 @@ -833,8 +833,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_ctx_new.3 zeromq3-4.1.3/doc/zmq_ctx_new.3 --- zeromq3-4.1.2/doc/zmq_ctx_new.3 2014-11-03 16:17:36.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_new.3 2015-08-17 10:50:07.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_ctx_new .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CTX_NEW" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CTX_NEW" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_ctx_new.html zeromq3-4.1.3/doc/zmq_ctx_new.html --- zeromq3-4.1.2/doc/zmq_ctx_new.html 2015-06-15 09:40:55.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_new.html 2014-10-14 08:41:01.000000000 +0000 @@ -796,8 +796,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_ctx_set.3 zeromq3-4.1.3/doc/zmq_ctx_set.3 --- zeromq3-4.1.2/doc/zmq_ctx_set.3 2014-11-03 16:17:39.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_set.3 2015-08-17 10:50:11.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_ctx_set .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual -.\" Source: 0MQ 4.1.0 +.\" Source: 0MQ 4.1.3 .\" Language: English .\" -.TH "ZMQ_CTX_SET" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CTX_SET" "3" "08/17/2015" "0MQ 4\&.1\&.3" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -52,6 +52,36 @@ T} .TE .sp 1 +.SS "ZMQ_THREAD_SCHED_POLICY: Set scheduling policy for I/O threads" +.sp +The \fIZMQ_THREAD_SCHED_POLICY\fR argument sets the scheduling policy for internal context\(cqs thread pool\&. This option is not available on windows\&. Supported values for this option can be found in sched\&.h file, or at \m[blue]\fBhttp://man7\&.org/linux/man\-pages/man2/sched_setscheduler\&.2\&.html\fR\m[]\&. This option only applies before creating any sockets on the context\&. +.TS +tab(:); +lt lt. +T{ +.sp +Default value +T}:T{ +.sp +\-1 +T} +.TE +.sp 1 +.SS "ZMQ_THREAD_PRIORITY: Set scheduling priority for I/O threads" +.sp +The \fIZMQ_THREAD_PRIORITY\fR argument sets scheduling priority for internal context\(cqs thread pool\&. This option is not available on windows\&. Supported values for this option depend on chosen scheduling policy\&. Details can be found in sched\&.h file, or at \m[blue]\fBhttp://man7\&.org/linux/man\-pages/man2/sched_setscheduler\&.2\&.html\fR\m[]\&. This option only applies before creating any sockets on the context\&. +.TS +tab(:); +lt lt. +T{ +.sp +Default value +T}:T{ +.sp +\-1 +T} +.TE +.sp 1 .SS "ZMQ_MAX_SOCKETS: Set maximum number of sockets" .sp The \fIZMQ_MAX_SOCKETS\fR argument sets the maximum number of sockets allowed on the context\&. You can query the maximal allowed value with \fBzmq_ctx_get\fR(3) using the \fIZMQ_SOCKET_LIMIT\fR option\&. diff -Nru zeromq3-4.1.2/doc/zmq_ctx_set.html zeromq3-4.1.3/doc/zmq_ctx_set.html --- zeromq3-4.1.2/doc/zmq_ctx_set.html 2015-06-15 09:40:56.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_set.html 2015-08-17 10:51:22.000000000 +0000 @@ -780,6 +780,48 @@
+

ZMQ_THREAD_SCHED_POLICY: Set scheduling policy for I/O threads

+

The ZMQ_THREAD_SCHED_POLICY argument sets the scheduling policy for +internal context’s thread pool. This option is not available on windows. +Supported values for this option can be found in sched.h file, +or at http://man7.org/linux/man-pages/man2/sched_setscheduler.2.html. +This option only applies before creating any sockets on the context.

+
+ + + + +
+Default value +
+
+

+-1 +

+
+
+
+

ZMQ_THREAD_PRIORITY: Set scheduling priority for I/O threads

+

The ZMQ_THREAD_PRIORITY argument sets scheduling priority for +internal context’s thread pool. This option is not available on windows. +Supported values for this option depend on chosen scheduling policy. +Details can be found in sched.h file, or at http://man7.org/linux/man-pages/man2/sched_setscheduler.2.html. +This option only applies before creating any sockets on the context.

+
+ + + + +
+Default value +
+
+

+-1 +

+
+
+

ZMQ_MAX_SOCKETS: Set maximum number of sockets

The ZMQ_MAX_SOCKETS argument sets the maximum number of sockets allowed on the context. You can query the maximal allowed value with @@ -874,8 +916,8 @@


diff -Nru zeromq3-4.1.2/doc/zmq_ctx_set.txt zeromq3-4.1.3/doc/zmq_ctx_set.txt --- zeromq3-4.1.2/doc/zmq_ctx_set.txt 2014-10-16 04:43:15.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_set.txt 2015-08-17 10:48:42.000000000 +0000 @@ -32,6 +32,28 @@ [horizontal] Default value:: 1 +ZMQ_THREAD_SCHED_POLICY: Set scheduling policy for I/O threads +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The 'ZMQ_THREAD_SCHED_POLICY' argument sets the scheduling policy for +internal context's thread pool. This option is not available on windows. +Supported values for this option can be found in sched.h file, +or at http://man7.org/linux/man-pages/man2/sched_setscheduler.2.html. +This option only applies before creating any sockets on the context. + +[horizontal] +Default value:: -1 + +ZMQ_THREAD_PRIORITY: Set scheduling priority for I/O threads +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The 'ZMQ_THREAD_PRIORITY' argument sets scheduling priority for +internal context's thread pool. This option is not available on windows. +Supported values for this option depend on chosen scheduling policy. +Details can be found in sched.h file, or at http://man7.org/linux/man-pages/man2/sched_setscheduler.2.html. +This option only applies before creating any sockets on the context. + +[horizontal] +Default value:: -1 + ZMQ_MAX_SOCKETS: Set maximum number of sockets ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The 'ZMQ_MAX_SOCKETS' argument sets the maximum number of sockets allowed diff -Nru zeromq3-4.1.2/doc/zmq_ctx_shutdown.3 zeromq3-4.1.3/doc/zmq_ctx_shutdown.3 --- zeromq3-4.1.2/doc/zmq_ctx_shutdown.3 2014-11-03 16:17:39.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_shutdown.3 2015-08-17 10:50:13.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_ctx_shutdown .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CTX_SHUTDOWN" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CTX_SHUTDOWN" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_ctx_shutdown.html zeromq3-4.1.3/doc/zmq_ctx_shutdown.html --- zeromq3-4.1.2/doc/zmq_ctx_shutdown.html 2015-06-15 09:40:56.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_shutdown.html 2014-10-14 08:41:02.000000000 +0000 @@ -807,8 +807,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_ctx_term.3 zeromq3-4.1.3/doc/zmq_ctx_term.3 --- zeromq3-4.1.2/doc/zmq_ctx_term.3 2014-12-04 12:42:50.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_term.3 2015-08-17 10:50:09.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_ctx_term .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 12/04/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CTX_TERM" "3" "12/04/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CTX_TERM" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_ctx_term.html zeromq3-4.1.3/doc/zmq_ctx_term.html --- zeromq3-4.1.2/doc/zmq_ctx_term.html 2015-06-15 09:40:55.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ctx_term.html 2015-08-17 10:51:21.000000000 +0000 @@ -852,8 +852,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_curve.7 zeromq3-4.1.3/doc/zmq_curve.7 --- zeromq3-4.1.2/doc/zmq_curve.7 2014-11-03 16:18:04.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_curve.7 2015-08-17 10:51:10.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_curve .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CURVE" "7" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CURVE" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_curve.html zeromq3-4.1.3/doc/zmq_curve.html --- zeromq3-4.1.2/doc/zmq_curve.html 2015-06-15 09:41:15.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_curve.html 2014-10-14 08:41:19.000000000 +0000 @@ -837,8 +837,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_curve_keypair.3 zeromq3-4.1.3/doc/zmq_curve_keypair.3 --- zeromq3-4.1.2/doc/zmq_curve_keypair.3 2014-11-03 16:17:59.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_curve_keypair.3 2015-08-17 10:50:58.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_curve_keypair .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_CURVE_KEYPAIR" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_CURVE_KEYPAIR" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_curve_keypair.html zeromq3-4.1.3/doc/zmq_curve_keypair.html --- zeromq3-4.1.2/doc/zmq_curve_keypair.html 2015-06-15 09:41:12.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_curve_keypair.html 2014-10-14 08:41:16.000000000 +0000 @@ -815,8 +815,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_disconnect.3 zeromq3-4.1.3/doc/zmq_disconnect.3 --- zeromq3-4.1.2/doc/zmq_disconnect.3 2014-11-03 16:17:34.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_disconnect.3 2015-08-17 10:50:05.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_disconnect .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_DISCONNECT" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_DISCONNECT" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_disconnect.html zeromq3-4.1.3/doc/zmq_disconnect.html --- zeromq3-4.1.2/doc/zmq_disconnect.html 2015-06-15 09:40:55.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_disconnect.html 2014-10-14 08:41:01.000000000 +0000 @@ -858,8 +858,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_errno.3 zeromq3-4.1.3/doc/zmq_errno.3 --- zeromq3-4.1.2/doc/zmq_errno.3 2014-11-03 16:17:54.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_errno.3 2015-08-17 10:50:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_errno .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_ERRNO" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_ERRNO" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_errno.html zeromq3-4.1.3/doc/zmq_errno.html --- zeromq3-4.1.2/doc/zmq_errno.html 2015-06-15 09:41:10.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_errno.html 2014-10-14 08:41:13.000000000 +0000 @@ -804,8 +804,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_getsockopt.3 zeromq3-4.1.3/doc/zmq_getsockopt.3 --- zeromq3-4.1.2/doc/zmq_getsockopt.3 2015-05-01 09:26:39.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_getsockopt.3 2015-08-17 10:50:38.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_getsockopt .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 05/01/2015 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual -.\" Source: 0MQ 4.1.0 +.\" Source: 0MQ 4.1.3 .\" Language: English .\" -.TH "ZMQ_GETSOCKOPT" "3" "05/01/2015" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_GETSOCKOPT" "3" "08/17/2015" "0MQ 4\&.1\&.3" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_getsockopt.html zeromq3-4.1.3/doc/zmq_getsockopt.html --- zeromq3-4.1.2/doc/zmq_getsockopt.html 2015-06-15 09:41:06.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_getsockopt.html 2015-08-17 10:51:24.000000000 +0000 @@ -3178,8 +3178,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_has.3 zeromq3-4.1.3/doc/zmq_has.3 --- zeromq3-4.1.2/doc/zmq_has.3 2014-11-03 16:17:59.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_has.3 2015-08-17 10:51:00.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_has .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_HAS" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_HAS" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_has.html zeromq3-4.1.3/doc/zmq_has.html --- zeromq3-4.1.2/doc/zmq_has.html 2015-06-15 09:41:13.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_has.html 2014-10-14 08:41:16.000000000 +0000 @@ -814,8 +814,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq.html zeromq3-4.1.3/doc/zmq.html --- zeromq3-4.1.2/doc/zmq.html 2015-06-15 09:41:13.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq.html 2014-10-14 08:41:17.000000000 +0000 @@ -1102,8 +1102,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_inproc.7 zeromq3-4.1.3/doc/zmq_inproc.7 --- zeromq3-4.1.2/doc/zmq_inproc.7 2014-11-03 16:18:02.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_inproc.7 2015-08-17 10:51:05.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_inproc .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_INPROC" "7" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_INPROC" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_inproc.html zeromq3-4.1.3/doc/zmq_inproc.html --- zeromq3-4.1.2/doc/zmq_inproc.html 2015-06-15 09:41:14.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_inproc.html 2014-10-14 08:41:18.000000000 +0000 @@ -837,8 +837,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_ipc.7 zeromq3-4.1.3/doc/zmq_ipc.7 --- zeromq3-4.1.2/doc/zmq_ipc.7 2014-12-04 12:42:50.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ipc.7 2015-08-17 10:51:06.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_ipc .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 12/04/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_IPC" "7" "12/04/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_IPC" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_ipc.html zeromq3-4.1.3/doc/zmq_ipc.html --- zeromq3-4.1.2/doc/zmq_ipc.html 2015-06-15 09:41:14.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_ipc.html 2015-08-17 10:51:26.000000000 +0000 @@ -882,8 +882,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_close.3 zeromq3-4.1.3/doc/zmq_msg_close.3 --- zeromq3-4.1.2/doc/zmq_msg_close.3 2014-11-03 16:17:44.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_close.3 2015-08-17 10:50:23.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_close .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_CLOSE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_CLOSE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_close.html zeromq3-4.1.3/doc/zmq_msg_close.html --- zeromq3-4.1.2/doc/zmq_msg_close.html 2015-06-15 09:40:59.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_close.html 2014-10-14 08:41:06.000000000 +0000 @@ -818,8 +818,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_copy.3 zeromq3-4.1.3/doc/zmq_msg_copy.3 --- zeromq3-4.1.2/doc/zmq_msg_copy.3 2014-11-03 16:17:41.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_copy.3 2015-08-17 10:50:19.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_copy .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_COPY" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_COPY" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_copy.html zeromq3-4.1.3/doc/zmq_msg_copy.html --- zeromq3-4.1.2/doc/zmq_msg_copy.html 2015-06-15 09:40:58.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_copy.html 2014-10-14 08:41:04.000000000 +0000 @@ -844,8 +844,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_data.3 zeromq3-4.1.3/doc/zmq_msg_data.3 --- zeromq3-4.1.2/doc/zmq_msg_data.3 2014-11-03 16:17:43.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_data.3 2015-08-17 10:50:22.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_data .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_DATA" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_DATA" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_data.html zeromq3-4.1.3/doc/zmq_msg_data.html --- zeromq3-4.1.2/doc/zmq_msg_data.html 2015-06-15 09:40:58.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_data.html 2014-10-14 08:41:05.000000000 +0000 @@ -803,8 +803,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_get.3 zeromq3-4.1.3/doc/zmq_msg_get.3 --- zeromq3-4.1.2/doc/zmq_msg_get.3 2014-11-03 16:17:46.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_get.3 2015-08-17 10:50:31.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_get .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_GET" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_GET" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_get.html zeromq3-4.1.3/doc/zmq_msg_get.html --- zeromq3-4.1.2/doc/zmq_msg_get.html 2015-06-15 09:41:01.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_get.html 2014-10-14 08:41:08.000000000 +0000 @@ -859,8 +859,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_gets.3 zeromq3-4.1.3/doc/zmq_msg_gets.3 --- zeromq3-4.1.2/doc/zmq_msg_gets.3 2015-05-01 09:26:38.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_gets.3 2015-08-17 10:50:35.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_gets .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 05/01/2015 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual -.\" Source: 0MQ 4.1.0 +.\" Source: 0MQ 4.1.3 .\" Language: English .\" -.TH "ZMQ_MSG_GETS" "3" "05/01/2015" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_GETS" "3" "08/17/2015" "0MQ 4\&.1\&.3" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_gets.html zeromq3-4.1.3/doc/zmq_msg_gets.html --- zeromq3-4.1.2/doc/zmq_msg_gets.html 2015-06-15 09:41:05.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_gets.html 2015-08-17 10:51:22.000000000 +0000 @@ -833,8 +833,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_init.3 zeromq3-4.1.3/doc/zmq_msg_init.3 --- zeromq3-4.1.2/doc/zmq_msg_init.3 2015-06-02 20:41:49.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_init.3 2015-08-17 10:50:14.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_init .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 06/02/2015 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual -.\" Source: 0MQ 4.1.0 +.\" Source: 0MQ 4.1.3 .\" Language: English .\" -.TH "ZMQ_MSG_INIT" "3" "06/02/2015" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_INIT" "3" "08/17/2015" "0MQ 4\&.1\&.3" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_init_data.3 zeromq3-4.1.3/doc/zmq_msg_init_data.3 --- zeromq3-4.1.2/doc/zmq_msg_init_data.3 2014-11-03 16:17:39.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_init_data.3 2015-08-17 10:50:16.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_init_data .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_INIT_DATA" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_INIT_DATA" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_init_data.html zeromq3-4.1.3/doc/zmq_msg_init_data.html --- zeromq3-4.1.2/doc/zmq_msg_init_data.html 2015-06-15 09:40:57.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_init_data.html 2014-10-14 08:41:03.000000000 +0000 @@ -868,8 +868,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_init.html zeromq3-4.1.3/doc/zmq_msg_init.html --- zeromq3-4.1.2/doc/zmq_msg_init.html 2015-06-15 09:40:57.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_init.html 2015-08-17 10:51:22.000000000 +0000 @@ -827,8 +827,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_init_size.3 zeromq3-4.1.3/doc/zmq_msg_init_size.3 --- zeromq3-4.1.2/doc/zmq_msg_init_size.3 2014-11-03 16:17:41.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_init_size.3 2015-08-17 10:50:17.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_init_size .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_INIT_SIZE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_INIT_SIZE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_init_size.html zeromq3-4.1.3/doc/zmq_msg_init_size.html --- zeromq3-4.1.2/doc/zmq_msg_init_size.html 2015-06-15 09:40:57.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_init_size.html 2014-10-14 08:41:04.000000000 +0000 @@ -826,8 +826,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_more.3 zeromq3-4.1.3/doc/zmq_msg_more.3 --- zeromq3-4.1.2/doc/zmq_msg_more.3 2014-11-03 16:17:49.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_more.3 2015-08-17 10:50:33.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_more .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_MORE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_MORE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_more.html zeromq3-4.1.3/doc/zmq_msg_more.html --- zeromq3-4.1.2/doc/zmq_msg_more.html 2015-06-15 09:41:05.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_more.html 2014-10-14 08:41:08.000000000 +0000 @@ -815,8 +815,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_move.3 zeromq3-4.1.3/doc/zmq_msg_move.3 --- zeromq3-4.1.2/doc/zmq_msg_move.3 2014-11-03 16:17:41.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_move.3 2015-08-17 10:50:18.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_move .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_MOVE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_MOVE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_move.html zeromq3-4.1.3/doc/zmq_msg_move.html --- zeromq3-4.1.2/doc/zmq_msg_move.html 2015-06-15 09:40:58.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_move.html 2014-10-14 08:41:04.000000000 +0000 @@ -815,8 +815,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_recv.3 zeromq3-4.1.3/doc/zmq_msg_recv.3 --- zeromq3-4.1.2/doc/zmq_msg_recv.3 2014-11-03 16:17:44.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_recv.3 2015-08-17 10:50:26.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_recv .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_RECV" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_RECV" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_recv.html zeromq3-4.1.3/doc/zmq_msg_recv.html --- zeromq3-4.1.2/doc/zmq_msg_recv.html 2015-06-15 09:40:59.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_recv.html 2014-10-14 08:41:06.000000000 +0000 @@ -923,8 +923,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_send.3 zeromq3-4.1.3/doc/zmq_msg_send.3 --- zeromq3-4.1.2/doc/zmq_msg_send.3 2014-11-03 16:17:44.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_send.3 2015-08-17 10:50:25.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_send .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_SEND" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_SEND" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_send.html zeromq3-4.1.3/doc/zmq_msg_send.html --- zeromq3-4.1.2/doc/zmq_msg_send.html 2015-06-15 09:40:59.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_send.html 2014-10-14 08:41:06.000000000 +0000 @@ -941,8 +941,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_set.3 zeromq3-4.1.3/doc/zmq_msg_set.3 --- zeromq3-4.1.2/doc/zmq_msg_set.3 2014-11-03 16:17:49.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_set.3 2015-08-17 10:50:32.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_set .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_SET" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_SET" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_set.html zeromq3-4.1.3/doc/zmq_msg_set.html --- zeromq3-4.1.2/doc/zmq_msg_set.html 2015-06-15 09:41:01.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_set.html 2014-10-14 08:41:08.000000000 +0000 @@ -801,8 +801,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_msg_size.3 zeromq3-4.1.3/doc/zmq_msg_size.3 --- zeromq3-4.1.2/doc/zmq_msg_size.3 2014-11-03 16:17:41.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_size.3 2015-08-17 10:50:21.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_msg_size .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_MSG_SIZE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_MSG_SIZE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_msg_size.html zeromq3-4.1.3/doc/zmq_msg_size.html --- zeromq3-4.1.2/doc/zmq_msg_size.html 2015-06-15 09:40:58.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_msg_size.html 2014-10-14 08:41:05.000000000 +0000 @@ -803,8 +803,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_null.7 zeromq3-4.1.3/doc/zmq_null.7 --- zeromq3-4.1.2/doc/zmq_null.7 2014-11-03 16:18:03.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_null.7 2015-08-17 10:51:07.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_null .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_NULL" "7" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_NULL" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_null.html zeromq3-4.1.3/doc/zmq_null.html --- zeromq3-4.1.2/doc/zmq_null.html 2015-06-15 09:41:15.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_null.html 2014-10-14 08:41:19.000000000 +0000 @@ -773,8 +773,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_pgm.7 zeromq3-4.1.3/doc/zmq_pgm.7 --- zeromq3-4.1.2/doc/zmq_pgm.7 2014-11-03 16:18:01.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_pgm.7 2015-08-17 10:51:04.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_pgm .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_PGM" "7" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_PGM" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_pgm.html zeromq3-4.1.3/doc/zmq_pgm.html --- zeromq3-4.1.2/doc/zmq_pgm.html 2015-06-15 09:41:14.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_pgm.html 2014-10-14 08:41:17.000000000 +0000 @@ -924,8 +924,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_plain.7 zeromq3-4.1.3/doc/zmq_plain.7 --- zeromq3-4.1.2/doc/zmq_plain.7 2014-11-03 16:18:04.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_plain.7 2015-08-17 10:51:09.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_plain .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_PLAIN" "7" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_PLAIN" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_plain.html zeromq3-4.1.3/doc/zmq_plain.html --- zeromq3-4.1.2/doc/zmq_plain.html 2015-06-15 09:41:15.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_plain.html 2014-10-14 08:41:19.000000000 +0000 @@ -784,8 +784,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_poll.3 zeromq3-4.1.3/doc/zmq_poll.3 --- zeromq3-4.1.2/doc/zmq_poll.3 2014-11-03 16:17:52.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_poll.3 2015-08-17 10:50:45.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_poll .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_POLL" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_POLL" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_poll.html zeromq3-4.1.3/doc/zmq_poll.html --- zeromq3-4.1.2/doc/zmq_poll.html 2015-06-15 09:41:09.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_poll.html 2014-10-14 08:41:13.000000000 +0000 @@ -918,8 +918,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_proxy.3 zeromq3-4.1.3/doc/zmq_proxy.3 --- zeromq3-4.1.2/doc/zmq_proxy.3 2014-11-03 16:17:57.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_proxy.3 2015-08-17 10:50:53.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_proxy .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_PROXY" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_PROXY" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_proxy.html zeromq3-4.1.3/doc/zmq_proxy.html --- zeromq3-4.1.2/doc/zmq_proxy.html 2015-06-15 09:41:11.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_proxy.html 2014-10-14 08:41:15.000000000 +0000 @@ -844,8 +844,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_proxy_steerable.3 zeromq3-4.1.3/doc/zmq_proxy_steerable.3 --- zeromq3-4.1.2/doc/zmq_proxy_steerable.3 2014-11-03 16:17:57.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_proxy_steerable.3 2015-08-17 10:50:54.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_proxy_steerable .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_PROXY_STEERABLE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_PROXY_STEERABLE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_proxy_steerable.html zeromq3-4.1.3/doc/zmq_proxy_steerable.html --- zeromq3-4.1.2/doc/zmq_proxy_steerable.html 2015-06-15 09:41:11.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_proxy_steerable.html 2014-10-14 08:41:15.000000000 +0000 @@ -848,8 +848,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_recv.3 zeromq3-4.1.3/doc/zmq_recv.3 --- zeromq3-4.1.2/doc/zmq_recv.3 2014-11-03 16:17:47.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_recv.3 2015-08-17 10:50:28.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_recv .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_RECV" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_RECV" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_recv.html zeromq3-4.1.3/doc/zmq_recv.html --- zeromq3-4.1.2/doc/zmq_recv.html 2015-06-15 09:41:00.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_recv.html 2014-10-14 08:41:07.000000000 +0000 @@ -885,8 +885,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_recvmsg.3 zeromq3-4.1.3/doc/zmq_recvmsg.3 --- zeromq3-4.1.2/doc/zmq_recvmsg.3 2014-11-03 16:17:56.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_recvmsg.3 2015-08-17 10:50:52.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_recvmsg .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_RECVMSG" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_RECVMSG" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_recvmsg.html zeromq3-4.1.3/doc/zmq_recvmsg.html --- zeromq3-4.1.2/doc/zmq_recvmsg.html 2015-06-15 09:41:11.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_recvmsg.html 2014-10-14 08:41:14.000000000 +0000 @@ -927,8 +927,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_send.3 zeromq3-4.1.3/doc/zmq_send.3 --- zeromq3-4.1.2/doc/zmq_send.3 2014-11-03 16:17:46.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_send.3 2015-08-17 10:50:27.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_send .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_SEND" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_SEND" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_send_const.3 zeromq3-4.1.3/doc/zmq_send_const.3 --- zeromq3-4.1.2/doc/zmq_send_const.3 2014-11-03 16:17:46.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_send_const.3 2015-08-17 10:50:30.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_send_const .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_SEND_CONST" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_SEND_CONST" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_send_const.html zeromq3-4.1.3/doc/zmq_send_const.html --- zeromq3-4.1.2/doc/zmq_send_const.html 2015-06-15 09:41:00.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_send_const.html 2014-10-14 08:41:07.000000000 +0000 @@ -915,8 +915,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_send.html zeromq3-4.1.3/doc/zmq_send.html --- zeromq3-4.1.2/doc/zmq_send.html 2015-06-15 09:41:00.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_send.html 2014-10-14 08:41:07.000000000 +0000 @@ -914,8 +914,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_sendmsg.3 zeromq3-4.1.3/doc/zmq_sendmsg.3 --- zeromq3-4.1.2/doc/zmq_sendmsg.3 2014-11-03 16:17:55.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_sendmsg.3 2015-08-17 10:50:51.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_sendmsg .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_SENDMSG" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_SENDMSG" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_sendmsg.html zeromq3-4.1.3/doc/zmq_sendmsg.html --- zeromq3-4.1.2/doc/zmq_sendmsg.html 2015-06-15 09:41:11.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_sendmsg.html 2014-10-14 08:41:14.000000000 +0000 @@ -943,8 +943,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_setsockopt.3 zeromq3-4.1.3/doc/zmq_setsockopt.3 --- zeromq3-4.1.2/doc/zmq_setsockopt.3 2014-11-03 16:17:52.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_setsockopt.3 2015-08-17 10:50:41.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_setsockopt .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual -.\" Source: 0MQ 4.1.0 +.\" Source: 0MQ 4.1.3 .\" Language: English .\" -.TH "ZMQ_SETSOCKOPT" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_SETSOCKOPT" "3" "08/17/2015" "0MQ 4\&.1\&.3" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -1381,7 +1381,7 @@ .sp 1 .SS "ZMQ_REQ_CORRELATE: match replies with requests" .sp -The default behavior of REQ sockets is to rely on the ordering of messages to match requests and responses and that is usually sufficient\&. When this option is set to 1, the REQ socket will prefix outgoing messages with an extra frame containing a request id\&. That means the full message is (request id, 0, user frames\&...)\&. The REQ socket will discard all incoming messages that don\(cqt begin with these two frames\&. +The default behavior of REQ sockets is to rely on the ordering of messages to match requests and responses and that is usually sufficient\&. When this option is set to 1, the REQ socket will prefix outgoing messages with an extra frame containing a request id\&. That means the full message is (request id, identity, 0, user frames\&...)\&. The REQ socket will discard all incoming messages that don\(cqt begin with these two frames\&. .TS tab(:); lt lt diff -Nru zeromq3-4.1.2/doc/zmq_setsockopt.html zeromq3-4.1.3/doc/zmq_setsockopt.html --- zeromq3-4.1.2/doc/zmq_setsockopt.html 2015-06-15 09:41:08.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_setsockopt.html 2015-08-17 10:51:25.000000000 +0000 @@ -2485,7 +2485,7 @@

The default behavior of REQ sockets is to rely on the ordering of messages to match requests and responses and that is usually sufficient. When this option is set to 1, the REQ socket will prefix outgoing messages with an extra frame -containing a request id. That means the full message is (request id, 0, +containing a request id. That means the full message is (request id, identity, 0, user frames…). The REQ socket will discard all incoming messages that don’t begin with these two frames.

@@ -3857,8 +3857,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_setsockopt.txt zeromq3-4.1.3/doc/zmq_setsockopt.txt --- zeromq3-4.1.2/doc/zmq_setsockopt.txt 2014-10-16 04:45:11.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_setsockopt.txt 2015-08-17 10:48:42.000000000 +0000 @@ -533,7 +533,7 @@ The default behavior of REQ sockets is to rely on the ordering of messages to match requests and responses and that is usually sufficient. When this option is set to 1, the REQ socket will prefix outgoing messages with an extra frame -containing a request id. That means the full message is (request id, 0, +containing a request id. That means the full message is (request id, identity, 0, user frames...). The REQ socket will discard all incoming messages that don't begin with these two frames. diff -Nru zeromq3-4.1.2/doc/zmq_socket.3 zeromq3-4.1.3/doc/zmq_socket.3 --- zeromq3-4.1.2/doc/zmq_socket.3 2014-11-03 16:17:52.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_socket.3 2015-08-17 10:50:43.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_socket .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_SOCKET" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_SOCKET" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_socket.html zeromq3-4.1.3/doc/zmq_socket.html --- zeromq3-4.1.2/doc/zmq_socket.html 2015-06-15 09:41:09.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_socket.html 2014-10-14 08:41:12.000000000 +0000 @@ -1886,8 +1886,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_socket_monitor.3 zeromq3-4.1.3/doc/zmq_socket_monitor.3 --- zeromq3-4.1.2/doc/zmq_socket_monitor.3 2014-11-03 16:17:52.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_socket_monitor.3 2015-08-17 10:50:44.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_socket_monitor .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_SOCKET_MONITOR" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_SOCKET_MONITOR" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_socket_monitor.html zeromq3-4.1.3/doc/zmq_socket_monitor.html --- zeromq3-4.1.2/doc/zmq_socket_monitor.html 2015-06-15 09:41:09.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_socket_monitor.html 2014-10-14 08:41:12.000000000 +0000 @@ -1008,8 +1008,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_strerror.3 zeromq3-4.1.3/doc/zmq_strerror.3 --- zeromq3-4.1.2/doc/zmq_strerror.3 2014-11-03 16:17:54.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_strerror.3 2015-08-17 10:50:48.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_strerror .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_STRERROR" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_STRERROR" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_strerror.html zeromq3-4.1.3/doc/zmq_strerror.html --- zeromq3-4.1.2/doc/zmq_strerror.html 2015-06-15 09:41:10.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_strerror.html 2014-10-14 08:41:13.000000000 +0000 @@ -806,8 +806,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_tcp.7 zeromq3-4.1.3/doc/zmq_tcp.7 --- zeromq3-4.1.2/doc/zmq_tcp.7 2014-12-04 12:42:51.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_tcp.7 2015-08-17 10:51:02.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_tcp .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 12/04/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_TCP" "7" "12/04/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_TCP" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_tcp.html zeromq3-4.1.3/doc/zmq_tcp.html --- zeromq3-4.1.2/doc/zmq_tcp.html 2015-06-15 09:41:13.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_tcp.html 2015-08-17 10:51:26.000000000 +0000 @@ -891,8 +891,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_tipc.7 zeromq3-4.1.3/doc/zmq_tipc.7 --- zeromq3-4.1.2/doc/zmq_tipc.7 2014-11-03 16:18:04.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_tipc.7 2015-08-17 10:51:16.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_tipc .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_TIPC" "7" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_TIPC" "7" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_tipc.html zeromq3-4.1.3/doc/zmq_tipc.html --- zeromq3-4.1.2/doc/zmq_tipc.html 2015-06-15 09:41:16.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_tipc.html 2014-10-14 08:41:19.000000000 +0000 @@ -829,8 +829,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_unbind.3 zeromq3-4.1.3/doc/zmq_unbind.3 --- zeromq3-4.1.2/doc/zmq_unbind.3 2014-12-04 12:42:50.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_unbind.3 2015-08-17 10:50:02.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_unbind .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 12/04/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_UNBIND" "3" "12/04/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_UNBIND" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_unbind.html zeromq3-4.1.3/doc/zmq_unbind.html --- zeromq3-4.1.2/doc/zmq_unbind.html 2015-06-15 09:40:54.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_unbind.html 2015-08-17 10:51:21.000000000 +0000 @@ -861,8 +861,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_version.3 zeromq3-4.1.3/doc/zmq_version.3 --- zeromq3-4.1.2/doc/zmq_version.3 2014-11-03 16:17:55.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_version.3 2015-08-17 10:50:49.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_version .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_VERSION" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_VERSION" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_version.html zeromq3-4.1.3/doc/zmq_version.html --- zeromq3-4.1.2/doc/zmq_version.html 2015-06-15 09:41:10.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_version.html 2014-10-14 08:41:14.000000000 +0000 @@ -804,8 +804,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_z85_decode.3 zeromq3-4.1.3/doc/zmq_z85_decode.3 --- zeromq3-4.1.2/doc/zmq_z85_decode.3 2014-11-03 16:17:59.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_z85_decode.3 2015-08-17 10:50:57.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_z85_decode .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_Z85_DECODE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_Z85_DECODE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_z85_decode.html zeromq3-4.1.3/doc/zmq_z85_decode.html --- zeromq3-4.1.2/doc/zmq_z85_decode.html 2015-06-15 09:41:12.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_z85_decode.html 2014-10-14 08:41:16.000000000 +0000 @@ -799,8 +799,8 @@

diff -Nru zeromq3-4.1.2/doc/zmq_z85_encode.3 zeromq3-4.1.3/doc/zmq_z85_encode.3 --- zeromq3-4.1.2/doc/zmq_z85_encode.3 2014-11-03 16:17:57.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_z85_encode.3 2015-08-17 10:50:56.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: zmq_z85_encode .\" Author: [see the "AUTHORS" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 11/03/2014 +.\" Date: 08/17/2015 .\" Manual: 0MQ Manual .\" Source: 0MQ 4.1.0 .\" Language: English .\" -.TH "ZMQ_Z85_ENCODE" "3" "11/03/2014" "0MQ 4\&.1\&.0" "0MQ Manual" +.TH "ZMQ_Z85_ENCODE" "3" "08/17/2015" "0MQ 4\&.1\&.0" "0MQ Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru zeromq3-4.1.2/doc/zmq_z85_encode.html zeromq3-4.1.3/doc/zmq_z85_encode.html --- zeromq3-4.1.2/doc/zmq_z85_encode.html 2015-06-15 09:41:12.000000000 +0000 +++ zeromq3-4.1.3/doc/zmq_z85_encode.html 2014-10-14 08:41:15.000000000 +0000 @@ -806,8 +806,8 @@

diff -Nru zeromq3-4.1.2/include/zmq.h zeromq3-4.1.3/include/zmq.h --- zeromq3-4.1.2/include/zmq.h 2015-06-15 09:30:02.000000000 +0000 +++ zeromq3-4.1.3/include/zmq.h 2015-08-17 10:48:42.000000000 +0000 @@ -31,7 +31,7 @@ /* Version macros for compile-time API version detection */ #define ZMQ_VERSION_MAJOR 4 #define ZMQ_VERSION_MINOR 1 -#define ZMQ_VERSION_PATCH 2 +#define ZMQ_VERSION_PATCH 3 #define ZMQ_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch)) diff -Nru zeromq3-4.1.2/Makefile.am zeromq3-4.1.3/Makefile.am --- zeromq3-4.1.2/Makefile.am 2015-06-15 09:30:02.000000000 +0000 +++ zeromq3-4.1.3/Makefile.am 2015-08-17 10:48:42.000000000 +0000 @@ -303,6 +303,8 @@ test_stream_disconnect \ test_stream_timeout \ test_disconnect_inproc \ + test_unbind_inproc \ + test_unbind_wildcard \ test_ctx_options \ test_ctx_destroy \ test_security_null \ @@ -322,6 +324,7 @@ test_proxy \ test_proxy_single_socket \ test_proxy_terminate \ + test_getsockopt_memset \ test_many_sockets \ test_ipc_wildcard \ test_diffserv \ @@ -417,6 +420,12 @@ test_disconnect_inproc_SOURCES = tests/test_disconnect_inproc.cpp test_disconnect_inproc_LDADD = libzmq.la +test_unbind_inproc_SOURCES = tests/test_unbind_inproc.cpp +test_unbind_inproc_LDADD = libzmq.la + +test_unbind_wildcard_SOURCES = tests/test_unbind_wildcard.cpp +test_unbind_wildcard_LDADD = libzmq.la + test_ctx_options_SOURCES = tests/test_ctx_options.cpp test_ctx_options_LDADD = libzmq.la @@ -474,6 +483,9 @@ test_proxy_terminate_SOURCES = tests/test_proxy_terminate.cpp test_proxy_terminate_LDADD = libzmq.la +test_getsockopt_memset_SOURCES = tests/test_getsockopt_memset.cpp +test_getsockopt_memset_LDADD = libzmq.la + test_many_sockets_SOURCES = tests/test_many_sockets.cpp test_many_sockets_LDADD = libzmq.la diff -Nru zeromq3-4.1.2/Makefile.in zeromq3-4.1.3/Makefile.in --- zeromq3-4.1.2/Makefile.in 2015-06-15 09:39:39.000000000 +0000 +++ zeromq3-4.1.3/Makefile.in 2015-08-17 10:49:50.000000000 +0000 @@ -200,7 +200,8 @@ test_router_handover$(EXEEXT) test_probe_router$(EXEEXT) \ test_stream$(EXEEXT) test_stream_empty$(EXEEXT) \ test_stream_disconnect$(EXEEXT) test_stream_timeout$(EXEEXT) \ - test_disconnect_inproc$(EXEEXT) test_ctx_options$(EXEEXT) \ + test_disconnect_inproc$(EXEEXT) test_unbind_inproc$(EXEEXT) \ + test_unbind_wildcard$(EXEEXT) test_ctx_options$(EXEEXT) \ test_ctx_destroy$(EXEEXT) test_security_null$(EXEEXT) \ test_security_plain$(EXEEXT) test_security_curve$(EXEEXT) \ test_iov$(EXEEXT) test_spec_req$(EXEEXT) \ @@ -210,12 +211,13 @@ test_conflate$(EXEEXT) test_inproc_connect$(EXEEXT) \ test_issue_566$(EXEEXT) test_proxy$(EXEEXT) \ test_proxy_single_socket$(EXEEXT) \ - test_proxy_terminate$(EXEEXT) test_many_sockets$(EXEEXT) \ - test_ipc_wildcard$(EXEEXT) test_diffserv$(EXEEXT) \ - test_connect_rid$(EXEEXT) test_bind_src_address$(EXEEXT) \ - test_metadata$(EXEEXT) test_capabilities$(EXEEXT) \ - test_xpub_nodrop$(EXEEXT) $(am__EXEEXT_1) $(am__EXEEXT_2) \ - $(am__EXEEXT_3) $(am__EXEEXT_4) + test_proxy_terminate$(EXEEXT) test_getsockopt_memset$(EXEEXT) \ + test_many_sockets$(EXEEXT) test_ipc_wildcard$(EXEEXT) \ + test_diffserv$(EXEEXT) test_connect_rid$(EXEEXT) \ + test_bind_src_address$(EXEEXT) test_metadata$(EXEEXT) \ + test_capabilities$(EXEEXT) test_xpub_nodrop$(EXEEXT) \ + $(am__EXEEXT_1) $(am__EXEEXT_2) $(am__EXEEXT_3) \ + $(am__EXEEXT_4) PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) am_curve_keygen_OBJECTS = tools/curve_keygen.$(OBJEXT) curve_keygen_OBJECTS = $(am_curve_keygen_OBJECTS) @@ -290,6 +292,10 @@ @HAVE_FORK_TRUE@@ON_MINGW_FALSE@ tests/test_fork.$(OBJEXT) test_fork_OBJECTS = $(am_test_fork_OBJECTS) @HAVE_FORK_TRUE@@ON_MINGW_FALSE@test_fork_DEPENDENCIES = libzmq.la +am_test_getsockopt_memset_OBJECTS = \ + tests/test_getsockopt_memset.$(OBJEXT) +test_getsockopt_memset_OBJECTS = $(am_test_getsockopt_memset_OBJECTS) +test_getsockopt_memset_DEPENDENCIES = libzmq.la am_test_hwm_OBJECTS = tests/test_hwm.$(OBJEXT) test_hwm_OBJECTS = $(am_test_hwm_OBJECTS) test_hwm_DEPENDENCIES = libzmq.la @@ -493,6 +499,13 @@ @ON_MINGW_FALSE@am_test_timeo_OBJECTS = tests/test_timeo.$(OBJEXT) test_timeo_OBJECTS = $(am_test_timeo_OBJECTS) @ON_MINGW_FALSE@test_timeo_DEPENDENCIES = libzmq.la +am_test_unbind_inproc_OBJECTS = tests/test_unbind_inproc.$(OBJEXT) +test_unbind_inproc_OBJECTS = $(am_test_unbind_inproc_OBJECTS) +test_unbind_inproc_DEPENDENCIES = libzmq.la +am_test_unbind_wildcard_OBJECTS = \ + tests/test_unbind_wildcard.$(OBJEXT) +test_unbind_wildcard_OBJECTS = $(am_test_unbind_wildcard_OBJECTS) +test_unbind_wildcard_DEPENDENCIES = libzmq.la am_test_xpub_nodrop_OBJECTS = tests/test_xpub_nodrop.$(OBJEXT) test_xpub_nodrop_OBJECTS = $(am_test_xpub_nodrop_OBJECTS) test_xpub_nodrop_DEPENDENCIES = libzmq.la @@ -549,16 +562,17 @@ $(test_ctx_destroy_SOURCES) $(test_ctx_options_SOURCES) \ $(test_diffserv_SOURCES) $(test_disconnect_inproc_SOURCES) \ $(test_filter_ipc_SOURCES) $(test_fork_SOURCES) \ - $(test_hwm_SOURCES) $(test_hwm_pubsub_SOURCES) \ - $(test_immediate_SOURCES) $(test_inproc_connect_SOURCES) \ - $(test_invalid_rep_SOURCES) $(test_iov_SOURCES) \ - $(test_ipc_wildcard_SOURCES) $(test_issue_566_SOURCES) \ - $(test_last_endpoint_SOURCES) $(test_many_sockets_SOURCES) \ - $(test_metadata_SOURCES) $(test_monitor_SOURCES) \ - $(test_msg_flags_SOURCES) $(test_pair_inproc_SOURCES) \ - $(test_pair_ipc_SOURCES) $(test_pair_tcp_SOURCES) \ - $(test_pair_tipc_SOURCES) $(test_probe_router_SOURCES) \ - $(test_proxy_SOURCES) $(test_proxy_single_socket_SOURCES) \ + $(test_getsockopt_memset_SOURCES) $(test_hwm_SOURCES) \ + $(test_hwm_pubsub_SOURCES) $(test_immediate_SOURCES) \ + $(test_inproc_connect_SOURCES) $(test_invalid_rep_SOURCES) \ + $(test_iov_SOURCES) $(test_ipc_wildcard_SOURCES) \ + $(test_issue_566_SOURCES) $(test_last_endpoint_SOURCES) \ + $(test_many_sockets_SOURCES) $(test_metadata_SOURCES) \ + $(test_monitor_SOURCES) $(test_msg_flags_SOURCES) \ + $(test_pair_inproc_SOURCES) $(test_pair_ipc_SOURCES) \ + $(test_pair_tcp_SOURCES) $(test_pair_tipc_SOURCES) \ + $(test_probe_router_SOURCES) $(test_proxy_SOURCES) \ + $(test_proxy_single_socket_SOURCES) \ $(test_proxy_terminate_SOURCES) $(test_req_correlate_SOURCES) \ $(test_req_relaxed_SOURCES) $(test_reqrep_device_SOURCES) \ $(test_reqrep_device_tipc_SOURCES) \ @@ -579,6 +593,7 @@ $(test_sub_forward_SOURCES) $(test_sub_forward_tipc_SOURCES) \ $(test_system_SOURCES) $(test_term_endpoint_SOURCES) \ $(test_term_endpoint_tipc_SOURCES) $(test_timeo_SOURCES) \ + $(test_unbind_inproc_SOURCES) $(test_unbind_wildcard_SOURCES) \ $(test_xpub_nodrop_SOURCES) DIST_SOURCES = $(libzmq_la_SOURCES) $(curve_keygen_SOURCES) \ $(inproc_lat_SOURCES) $(inproc_thr_SOURCES) \ @@ -592,7 +607,8 @@ $(test_ctx_destroy_SOURCES) $(test_ctx_options_SOURCES) \ $(test_diffserv_SOURCES) $(test_disconnect_inproc_SOURCES) \ $(am__test_filter_ipc_SOURCES_DIST) \ - $(am__test_fork_SOURCES_DIST) $(test_hwm_SOURCES) \ + $(am__test_fork_SOURCES_DIST) \ + $(test_getsockopt_memset_SOURCES) $(test_hwm_SOURCES) \ $(test_hwm_pubsub_SOURCES) $(test_immediate_SOURCES) \ $(test_inproc_connect_SOURCES) $(test_invalid_rep_SOURCES) \ $(test_iov_SOURCES) $(test_ipc_wildcard_SOURCES) \ @@ -626,7 +642,8 @@ $(am__test_sub_forward_tipc_SOURCES_DIST) \ $(test_system_SOURCES) $(test_term_endpoint_SOURCES) \ $(am__test_term_endpoint_tipc_SOURCES_DIST) \ - $(am__test_timeo_SOURCES_DIST) $(test_xpub_nodrop_SOURCES) + $(am__test_timeo_SOURCES_DIST) $(test_unbind_inproc_SOURCES) \ + $(test_unbind_wildcard_SOURCES) $(test_xpub_nodrop_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ @@ -1071,13 +1088,14 @@ test_router_mandatory test_router_mandatory_hwm \ test_router_handover test_probe_router test_stream \ test_stream_empty test_stream_disconnect test_stream_timeout \ - test_disconnect_inproc test_ctx_options test_ctx_destroy \ - test_security_null test_security_plain test_security_curve \ - test_iov test_spec_req test_spec_rep test_spec_dealer \ - test_spec_router test_spec_pushpull test_req_correlate \ - test_req_relaxed test_conflate test_inproc_connect \ - test_issue_566 test_proxy test_proxy_single_socket \ - test_proxy_terminate test_many_sockets test_ipc_wildcard \ + test_disconnect_inproc test_unbind_inproc test_unbind_wildcard \ + test_ctx_options test_ctx_destroy test_security_null \ + test_security_plain test_security_curve test_iov test_spec_req \ + test_spec_rep test_spec_dealer test_spec_router \ + test_spec_pushpull test_req_correlate test_req_relaxed \ + test_conflate test_inproc_connect test_issue_566 test_proxy \ + test_proxy_single_socket test_proxy_terminate \ + test_getsockopt_memset test_many_sockets test_ipc_wildcard \ test_diffserv test_connect_rid test_bind_src_address \ test_metadata test_capabilities test_xpub_nodrop \ $(am__append_5) $(am__append_6) $(am__append_7) \ @@ -1146,6 +1164,10 @@ test_stream_disconnect_LDADD = libzmq.la test_disconnect_inproc_SOURCES = tests/test_disconnect_inproc.cpp test_disconnect_inproc_LDADD = libzmq.la +test_unbind_inproc_SOURCES = tests/test_unbind_inproc.cpp +test_unbind_inproc_LDADD = libzmq.la +test_unbind_wildcard_SOURCES = tests/test_unbind_wildcard.cpp +test_unbind_wildcard_LDADD = libzmq.la test_ctx_options_SOURCES = tests/test_ctx_options.cpp test_ctx_options_LDADD = libzmq.la test_iov_SOURCES = tests/test_iov.cpp @@ -1184,6 +1206,8 @@ test_proxy_single_socket_LDADD = libzmq.la test_proxy_terminate_SOURCES = tests/test_proxy_terminate.cpp test_proxy_terminate_LDADD = libzmq.la +test_getsockopt_memset_SOURCES = tests/test_getsockopt_memset.cpp +test_getsockopt_memset_LDADD = libzmq.la test_many_sockets_SOURCES = tests/test_many_sockets.cpp test_many_sockets_LDADD = libzmq.la test_ipc_wildcard_SOURCES = tests/test_ipc_wildcard.cpp @@ -1679,6 +1703,11 @@ test_fork$(EXEEXT): $(test_fork_OBJECTS) $(test_fork_DEPENDENCIES) $(EXTRA_test_fork_DEPENDENCIES) @rm -f test_fork$(EXEEXT) $(AM_V_CXXLD)$(CXXLINK) $(test_fork_OBJECTS) $(test_fork_LDADD) $(LIBS) +tests/test_getsockopt_memset.$(OBJEXT): tests/$(am__dirstamp) \ + tests/$(DEPDIR)/$(am__dirstamp) +test_getsockopt_memset$(EXEEXT): $(test_getsockopt_memset_OBJECTS) $(test_getsockopt_memset_DEPENDENCIES) $(EXTRA_test_getsockopt_memset_DEPENDENCIES) + @rm -f test_getsockopt_memset$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(test_getsockopt_memset_OBJECTS) $(test_getsockopt_memset_LDADD) $(LIBS) tests/test_hwm.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) test_hwm$(EXEEXT): $(test_hwm_OBJECTS) $(test_hwm_DEPENDENCIES) $(EXTRA_test_hwm_DEPENDENCIES) @@ -1949,6 +1978,16 @@ test_timeo$(EXEEXT): $(test_timeo_OBJECTS) $(test_timeo_DEPENDENCIES) $(EXTRA_test_timeo_DEPENDENCIES) @rm -f test_timeo$(EXEEXT) $(AM_V_CXXLD)$(CXXLINK) $(test_timeo_OBJECTS) $(test_timeo_LDADD) $(LIBS) +tests/test_unbind_inproc.$(OBJEXT): tests/$(am__dirstamp) \ + tests/$(DEPDIR)/$(am__dirstamp) +test_unbind_inproc$(EXEEXT): $(test_unbind_inproc_OBJECTS) $(test_unbind_inproc_DEPENDENCIES) $(EXTRA_test_unbind_inproc_DEPENDENCIES) + @rm -f test_unbind_inproc$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(test_unbind_inproc_OBJECTS) $(test_unbind_inproc_LDADD) $(LIBS) +tests/test_unbind_wildcard.$(OBJEXT): tests/$(am__dirstamp) \ + tests/$(DEPDIR)/$(am__dirstamp) +test_unbind_wildcard$(EXEEXT): $(test_unbind_wildcard_OBJECTS) $(test_unbind_wildcard_DEPENDENCIES) $(EXTRA_test_unbind_wildcard_DEPENDENCIES) + @rm -f test_unbind_wildcard$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(test_unbind_wildcard_OBJECTS) $(test_unbind_wildcard_LDADD) $(LIBS) tests/test_xpub_nodrop.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) test_xpub_nodrop$(EXEEXT): $(test_xpub_nodrop_OBJECTS) $(test_xpub_nodrop_DEPENDENCIES) $(EXTRA_test_xpub_nodrop_DEPENDENCIES) @@ -2132,6 +2171,7 @@ -rm -f tests/test_disconnect_inproc.$(OBJEXT) -rm -f tests/test_filter_ipc.$(OBJEXT) -rm -f tests/test_fork.$(OBJEXT) + -rm -f tests/test_getsockopt_memset.$(OBJEXT) -rm -f tests/test_hwm.$(OBJEXT) -rm -f tests/test_hwm_pubsub.$(OBJEXT) -rm -f tests/test_immediate.$(OBJEXT) @@ -2186,6 +2226,8 @@ -rm -f tests/test_term_endpoint.$(OBJEXT) -rm -f tests/test_term_endpoint_tipc.$(OBJEXT) -rm -f tests/test_timeo.$(OBJEXT) + -rm -f tests/test_unbind_inproc.$(OBJEXT) + -rm -f tests/test_unbind_wildcard.$(OBJEXT) -rm -f tests/test_xpub_nodrop.$(OBJEXT) -rm -f tools/curve_keygen.$(OBJEXT) @@ -2289,6 +2331,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_disconnect_inproc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_filter_ipc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_fork.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_getsockopt_memset.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_hwm.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_hwm_pubsub.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_immediate.Po@am__quote@ @@ -2343,6 +2386,8 @@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_term_endpoint.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_term_endpoint_tipc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_timeo.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_unbind_inproc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_unbind_wildcard.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test_xpub_nodrop.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/curve_keygen.Po@am__quote@ diff -Nru zeromq3-4.1.2/NEWS zeromq3-4.1.3/NEWS --- zeromq3-4.1.2/NEWS 2015-06-15 09:39:02.000000000 +0000 +++ zeromq3-4.1.3/NEWS 2015-08-17 10:49:26.000000000 +0000 @@ -1,3 +1,11 @@ +0MQ version 4.1.3 stable, released on 2015/08/17 +================================================ + +* Fixed #1532 - getsockopt ZMQ_RCVMORE now resets all bits instead of only 32 + +* Fixed #1445 - zmq::socket_base_t::connect fails on tcp ipv6 address + + 0MQ version 4.1.2 stable, released on 2015/06/15 ================================================ diff -Nru zeromq3-4.1.2/src/msg.hpp zeromq3-4.1.3/src/msg.hpp --- zeromq3-4.1.2/src/msg.hpp 2015-06-02 20:41:21.000000000 +0000 +++ zeromq3-4.1.3/src/msg.hpp 2015-08-17 10:48:42.000000000 +0000 @@ -140,7 +140,7 @@ int64_t file_desc; // Note that fields shared between different message types are not - // moved to tha parent class (msg_t). This way we get tighter packing + // moved to the parent class (msg_t). This way we get tighter packing // of the data. Shared fields can be accessed via 'base' member of // the union. union { diff -Nru zeromq3-4.1.2/src/socket_base.cpp zeromq3-4.1.3/src/socket_base.cpp --- zeromq3-4.1.2/src/socket_base.cpp 2015-06-02 20:41:22.000000000 +0000 +++ zeromq3-4.1.3/src/socket_base.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -304,6 +304,7 @@ errno = EINVAL; return -1; } + memset(optval_, 0, *optvallen_); *((int*) optval_) = rcvmore ? 1 : 0; *optvallen_ = sizeof (int); return 0; @@ -603,11 +604,12 @@ // Following code is quick and dirty check to catch obvious errors, // without trying to be fully accurate. const char *check = address.c_str (); - if (isalnum (*check) || isxdigit (*check)) { + if (isalnum (*check) || isxdigit (*check) || *check == '[') { check++; while (isalnum (*check) || isxdigit (*check) - || *check == '.' || *check == '-' || *check == ':'|| *check == ';') + || *check == '.' || *check == '-' || *check == ':'|| *check == ';' + || *check == ']') check++; } // Assume the worst, now look for success diff -Nru zeromq3-4.1.2/src/stdint.hpp zeromq3-4.1.3/src/stdint.hpp --- zeromq3-4.1.2/src/stdint.hpp 2015-06-02 20:41:22.000000000 +0000 +++ zeromq3-4.1.3/src/stdint.hpp 2015-08-17 10:48:42.000000000 +0000 @@ -36,7 +36,7 @@ #include -#elif defined _MSC_VER && _MSC_VER < 1600 +#elif defined _MSC_VER && _MSC_VER < 1500 #ifndef int8_t typedef __int8 int8_t; diff -Nru zeromq3-4.1.2/tests/test_connect_delay_tipc.cpp zeromq3-4.1.3/tests/test_connect_delay_tipc.cpp --- zeromq3-4.1.2/tests/test_connect_delay_tipc.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_connect_delay_tipc.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -85,7 +85,7 @@ // We now consume from the connected pipe // - we should see just 5 - int timeout = 100; + int timeout = 250; rc = zmq_setsockopt (to, ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_connect_resolve.cpp zeromq3-4.1.3/tests/test_connect_resolve.cpp --- zeromq3-4.1.2/tests/test_connect_resolve.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_connect_resolve.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -41,6 +41,9 @@ int rc = zmq_connect (sock, "tcp://localhost:1234"); assert (rc == 0); + rc = zmq_connect (sock, "tcp://[::1]:4506"); + assert (rc == 0); + rc = zmq_connect (sock, "tcp://localhost:invalid"); assert (rc == -1); diff -Nru zeromq3-4.1.2/tests/test_filter_ipc.cpp zeromq3-4.1.3/tests/test_filter_ipc.cpp --- zeromq3-4.1.2/tests/test_filter_ipc.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_filter_ipc.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -47,7 +47,7 @@ assert (rc == 32); // Receive message at server side (should not succeed) - int timeout = 150; + int timeout = 250; rc = zmq_setsockopt (server, ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); rc = zmq_recv (server, buffer, 32, 0); @@ -87,7 +87,7 @@ assert (sc); // If a test fails, don't hang for too long - int timeout = 1500; + int timeout = 2500; rc = zmq_setsockopt (sb, ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); rc = zmq_setsockopt (sb, ZMQ_SNDTIMEO, &timeout, sizeof (int)); diff -Nru zeromq3-4.1.2/tests/test_getsockopt_memset.cpp zeromq3-4.1.3/tests/test_getsockopt_memset.cpp --- zeromq3-4.1.2/tests/test_getsockopt_memset.cpp 1970-01-01 00:00:00.000000000 +0000 +++ zeromq3-4.1.3/tests/test_getsockopt_memset.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -0,0 +1,69 @@ +/* + Copyright (c) 2007-2015 Contributors as noted in the AUTHORS file + + This file is part of libzmq, the ZeroMQ core engine in C++. + + libzmq is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License (LGPL) as published + by the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + As a special exception, the Contributors give you permission to link + this library with independent modules to produce an executable, + regardless of the license terms of these independent modules, and to + copy and distribute the resulting executable under terms of your choice, + provided that you also meet, for each linked independent module, the + terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. + If you modify this library, you must extend this exception to your + version of the library. + + libzmq is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ + +#include "testutil.hpp" + +int main (void) +{ + int64_t more; + size_t more_size = sizeof(more); + + setup_test_environment(); + void *ctx = zmq_ctx_new (); + assert (ctx); + + void *sb = zmq_socket (ctx, ZMQ_PUB); + assert (sb); + int rc = zmq_bind (sb, "inproc://a"); + assert (rc == 0); + + void *sc = zmq_socket (ctx, ZMQ_SUB); + assert (sc); + rc = zmq_connect (sc, "inproc://a"); + assert (rc == 0); + + memset(&more, 0xFF, sizeof(int64_t)); + zmq_getsockopt(sc, ZMQ_RCVMORE, &more, &more_size); + assert (more_size == sizeof(int)); + assert (more == 0); + + + // Cleanup + + rc = zmq_close (sc); + assert (rc == 0); + + rc = zmq_close (sb); + assert (rc == 0); + + rc = zmq_ctx_term (ctx); + assert (rc == 0); + + return 0 ; +} diff -Nru zeromq3-4.1.2/tests/test_immediate.cpp zeromq3-4.1.3/tests/test_immediate.cpp --- zeromq3-4.1.2/tests/test_immediate.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_immediate.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -76,7 +76,7 @@ // We now consume from the connected pipe // - we should see just 5 - int timeout = 100; + int timeout = 250; rc = zmq_setsockopt (to, ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_req_relaxed.cpp zeromq3-4.1.3/tests/test_req_relaxed.cpp --- zeromq3-4.1.2/tests/test_req_relaxed.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_req_relaxed.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -54,7 +54,7 @@ rep [peer] = zmq_socket (ctx, ZMQ_REP); assert (rep [peer]); - int timeout = 100; + int timeout = 250; rc = zmq_setsockopt (rep [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_security_curve.cpp zeromq3-4.1.3/tests/test_security_curve.cpp --- zeromq3-4.1.2/tests/test_security_curve.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_security_curve.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -254,7 +254,7 @@ send (s, "\x01\x00", 2, 0); // send sneaky message that shouldn't be received send (s, "\x08\x00sneaky\0", 9, 0); - int timeout = 150; + int timeout = 250; zmq_setsockopt (server, ZMQ_RCVTIMEO, &timeout, sizeof (timeout)); char *buf = s_recv (server); if (buf != NULL) { diff -Nru zeromq3-4.1.2/tests/test_security_null.cpp zeromq3-4.1.3/tests/test_security_null.cpp --- zeromq3-4.1.2/tests/test_security_null.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_security_null.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -167,7 +167,7 @@ send (s, "\x01\x00", 2, 0); // send sneaky message that shouldn't be received send (s, "\x08\x00sneaky\0", 9, 0); - int timeout = 150; + int timeout = 250; zmq_setsockopt (server, ZMQ_RCVTIMEO, &timeout, sizeof (timeout)); char *buf = s_recv (server); if (buf != NULL) { diff -Nru zeromq3-4.1.2/tests/test_security_plain.cpp zeromq3-4.1.3/tests/test_security_plain.cpp --- zeromq3-4.1.2/tests/test_security_plain.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_security_plain.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -173,7 +173,7 @@ send (s, "\x01\x00", 2, 0); // send sneaky message that shouldn't be received send (s, "\x08\x00sneaky\0", 9, 0); - int timeout = 150; + int timeout = 250; zmq_setsockopt (server, ZMQ_RCVTIMEO, &timeout, sizeof (timeout)); char *buf = s_recv (server); if (buf != NULL) { diff -Nru zeromq3-4.1.2/tests/test_spec_dealer.cpp zeromq3-4.1.3/tests/test_spec_dealer.cpp --- zeromq3-4.1.2/tests/test_spec_dealer.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_spec_dealer.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -46,7 +46,7 @@ rep [peer] = zmq_socket (ctx, ZMQ_REP); assert (rep [peer]); - int timeout = 100; + int timeout = 250; rc = zmq_setsockopt (rep [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); @@ -87,7 +87,7 @@ void *receiver = zmq_socket (ctx, ZMQ_DEALER); assert (receiver); - int timeout = 100; + int timeout = 250; int rc = zmq_setsockopt (receiver, ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); @@ -210,7 +210,7 @@ void *sc = zmq_socket (ctx, ZMQ_DEALER); assert (sc); - int timeout = 100; + int timeout = 250; int rc = zmq_setsockopt (sc, ZMQ_SNDTIMEO, &timeout, sizeof (timeout)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_spec_pushpull.cpp zeromq3-4.1.3/tests/test_spec_pushpull.cpp --- zeromq3-4.1.2/tests/test_spec_pushpull.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_spec_pushpull.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -46,7 +46,7 @@ pulls [peer] = zmq_socket (ctx, ZMQ_PULL); assert (pulls [peer]); - int timeout = 100; + int timeout = 250; rc = zmq_setsockopt (pulls [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); @@ -165,7 +165,7 @@ void *sc = zmq_socket (ctx, ZMQ_PUSH); assert (sc); - int timeout = 100; + int timeout = 250; int rc = zmq_setsockopt (sc, ZMQ_SNDTIMEO, &timeout, sizeof (timeout)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_spec_rep.cpp zeromq3-4.1.3/tests/test_spec_rep.cpp --- zeromq3-4.1.2/tests/test_spec_rep.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_spec_rep.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -37,7 +37,7 @@ void *rep = zmq_socket (ctx, ZMQ_REP); assert (rep); - int timeout = 100; + int timeout = 250; int rc = zmq_setsockopt (rep, ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_spec_req.cpp zeromq3-4.1.3/tests/test_spec_req.cpp --- zeromq3-4.1.2/tests/test_spec_req.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_spec_req.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -46,7 +46,7 @@ rep [peer] = zmq_socket (ctx, ZMQ_REP); assert (rep [peer]); - int timeout = 100; + int timeout = 250; rc = zmq_setsockopt (rep [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); @@ -93,7 +93,7 @@ router [i] = zmq_socket (ctx, ZMQ_ROUTER); assert (router [i]); - int timeout = 100; + int timeout = 250; rc = zmq_setsockopt (router [i], ZMQ_RCVTIMEO, &timeout, sizeof (timeout)); assert (rc == 0); @@ -205,7 +205,7 @@ void *sc = zmq_socket (ctx, ZMQ_REQ); assert (sc); - int timeout = 100; + int timeout = 250; int rc = zmq_setsockopt (sc, ZMQ_SNDTIMEO, &timeout, sizeof (timeout)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_spec_router.cpp zeromq3-4.1.3/tests/test_spec_router.cpp --- zeromq3-4.1.2/tests/test_spec_router.cpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/test_spec_router.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -37,7 +37,7 @@ void *receiver = zmq_socket (ctx, ZMQ_ROUTER); assert (receiver); - int timeout = 100; + int timeout = 250; int rc = zmq_setsockopt (receiver, ZMQ_RCVTIMEO, &timeout, sizeof (int)); assert (rc == 0); diff -Nru zeromq3-4.1.2/tests/test_unbind_inproc.cpp zeromq3-4.1.3/tests/test_unbind_inproc.cpp --- zeromq3-4.1.2/tests/test_unbind_inproc.cpp 1970-01-01 00:00:00.000000000 +0000 +++ zeromq3-4.1.3/tests/test_unbind_inproc.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -0,0 +1,43 @@ +/* + Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file + + This file is part of 0MQ. + + 0MQ is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + 0MQ is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ + +#include "testutil.hpp" + +int main (void) +{ + setup_test_environment(); + void *ctx = zmq_ctx_new (); + assert (ctx); + + void *sb = zmq_socket (ctx, ZMQ_REP); + assert (sb); + int rc = zmq_bind (sb, "inproc://a"); + assert (rc == 0); + + rc = zmq_unbind (sb, "inproc://a"); + assert (rc == 0); + + rc = zmq_close (sb); + assert (rc == 0); + + rc = zmq_ctx_term (ctx); + assert (rc == 0); + + return 0; +} diff -Nru zeromq3-4.1.2/tests/test_unbind_wildcard.cpp zeromq3-4.1.3/tests/test_unbind_wildcard.cpp --- zeromq3-4.1.2/tests/test_unbind_wildcard.cpp 1970-01-01 00:00:00.000000000 +0000 +++ zeromq3-4.1.3/tests/test_unbind_wildcard.cpp 2015-08-17 10:48:42.000000000 +0000 @@ -0,0 +1,48 @@ +/* + Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file + + This file is part of 0MQ. + + 0MQ is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + 0MQ is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ + +#include "testutil.hpp" + +int main (void) +{ + setup_test_environment(); + void *ctx = zmq_ctx_new (); + assert (ctx); + + void *sb = zmq_socket (ctx, ZMQ_REP); + assert (sb); + int rc = zmq_bind (sb, "tcp://*:5555"); + assert (rc == 0); + + char endpoint[256]; + size_t endpoint_len = sizeof (endpoint); + rc = zmq_getsockopt (sb, ZMQ_LAST_ENDPOINT, endpoint, &endpoint_len); + assert (rc == 0); + + rc = zmq_unbind (sb, endpoint); + assert (rc == 0); + + rc = zmq_close (sb); + assert (rc == 0); + + rc = zmq_ctx_term (ctx); + assert (rc == 0); + + return 0; +} diff -Nru zeromq3-4.1.2/tests/testutil.hpp zeromq3-4.1.3/tests/testutil.hpp --- zeromq3-4.1.2/tests/testutil.hpp 2015-06-02 20:41:23.000000000 +0000 +++ zeromq3-4.1.3/tests/testutil.hpp 2015-08-17 10:48:42.000000000 +0000 @@ -122,7 +122,7 @@ { const char *content = "12345678ABCDEFGH12345678abcdefgh"; char buffer [32]; - int timeout = 150; + int timeout = 250; // Send message from client to server int rc = zmq_setsockopt (client, ZMQ_SNDTIMEO, &timeout, sizeof (int)); diff -Nru zeromq3-4.1.2/zeromq.spec zeromq3-4.1.3/zeromq.spec --- zeromq3-4.1.2/zeromq.spec 2015-06-15 09:41:17.000000000 +0000 +++ zeromq3-4.1.3/zeromq.spec 2015-08-17 10:51:28.000000000 +0000 @@ -1,5 +1,5 @@ Name: zeromq -Version: 4.1.2 +Version: 4.1.3 Release: 1%{?dist} Summary: The ZeroMQ messaging library Group: Applications/Internet @@ -112,8 +112,8 @@ %{_bindir}/curve_keygen # libraries -%{_libdir}/libzmq.so.4 -%{_libdir}/libzmq.so.4.0.0 +%{_libdir}/libzmq.so.5 +%{_libdir}/libzmq.so.5.0.0 %{_mandir}/man7/zmq.7.gz @@ -166,7 +166,6 @@ %{_mandir}/man3/zmq_has.3.gz %{_mandir}/man3/zmq_msg_gets.3.gz %{_mandir}/man3/zmq_proxy_steerable.3.gz -%{_mandir}/man7/zmq_epgm.7.gz %{_mandir}/man7/zmq_inproc.7.gz %{_mandir}/man7/zmq_ipc.7.gz %{_mandir}/man7/zmq_pgm.7.gz