rbczmq 1.6.2 → 1.6.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -3
- data/.gitmodules +6 -0
- data/.travis.yml +5 -1
- data/CHANGELOG.rdoc +15 -0
- data/Gemfile.lock +2 -2
- data/README.rdoc +5 -2
- data/Rakefile +8 -3
- data/ext/czmq/.gitignore +52 -0
- data/ext/czmq/.travis.yml +18 -0
- data/ext/czmq/AUTHORS +9 -0
- data/ext/czmq/COPYING +674 -0
- data/ext/czmq/COPYING.LESSER +178 -0
- data/ext/czmq/ChangeLog +0 -0
- data/ext/czmq/Makefile.am +22 -0
- data/ext/czmq/NEWS +263 -0
- data/ext/czmq/README +0 -0
- data/ext/czmq/README.md +1122 -0
- data/ext/czmq/README.txt +327 -0
- data/ext/czmq/autogen.sh +46 -0
- data/ext/czmq/builds/android/Android.mk +35 -0
- data/ext/czmq/builds/android/Application.mk +1 -0
- data/ext/czmq/builds/android/build.sh +59 -0
- data/ext/czmq/builds/android/clean.sh +26 -0
- data/ext/czmq/builds/mingw32/Makefile.mingw32 +38 -0
- data/ext/czmq/builds/mingw32/platform.h +0 -0
- data/ext/czmq/builds/msvc/.gitignore +18 -0
- data/ext/czmq/builds/msvc/README.txt +17 -0
- data/ext/czmq/builds/msvc/czmq.sln +69 -0
- data/ext/czmq/builds/msvc/czmq.vcproj +2246 -0
- data/ext/czmq/builds/msvc/czmq.vcxproj +329 -0
- data/ext/czmq/builds/msvc/czmq.vcxproj.filters +117 -0
- data/ext/czmq/builds/msvc/czmq11.sln +36 -0
- data/ext/czmq/builds/msvc/czmq_selftest.vcproj +840 -0
- data/ext/czmq/builds/msvc/czmq_selftest.vcxproj +189 -0
- data/ext/czmq/builds/msvc/czmq_selftest.vcxproj.filters +14 -0
- data/ext/czmq/c +520 -0
- data/ext/czmq/configure.ac +229 -0
- data/ext/czmq/doc/Makefile.am +49 -0
- data/ext/czmq/doc/asciidoc.conf +57 -0
- data/ext/czmq/doc/czmq.txt +334 -0
- data/ext/czmq/doc/mkman +100 -0
- data/ext/czmq/doc/mksite +65 -0
- data/ext/czmq/doc/wdput +43 -0
- data/ext/czmq/doc/xml2wd.pl +242 -0
- data/ext/czmq/doc/zbeacon.txt +173 -0
- data/ext/czmq/doc/zclock.txt +51 -0
- data/ext/czmq/doc/zconfig.txt +92 -0
- data/ext/czmq/doc/zctx.txt +111 -0
- data/ext/czmq/doc/zfile.txt +77 -0
- data/ext/czmq/doc/zframe.txt +222 -0
- data/ext/czmq/doc/zhash.txt +225 -0
- data/ext/czmq/doc/zlist.txt +176 -0
- data/ext/czmq/doc/zloop.txt +106 -0
- data/ext/czmq/doc/zmsg.txt +315 -0
- data/ext/czmq/doc/zmutex.txt +54 -0
- data/ext/czmq/doc/zsocket.txt +110 -0
- data/ext/czmq/doc/zsockopt.txt +528 -0
- data/ext/czmq/doc/zstr.txt +80 -0
- data/ext/czmq/doc/zsys.txt +44 -0
- data/ext/czmq/doc/zthread.txt +126 -0
- data/ext/czmq/doc/ztree.txt +236 -0
- data/ext/czmq/images/README_1.png +0 -0
- data/ext/czmq/images/README_2.png +0 -0
- data/ext/czmq/include/czmq.h +64 -0
- data/ext/czmq/include/czmq_prelude.h +504 -0
- data/ext/czmq/include/zbeacon.h +91 -0
- data/ext/czmq/include/zclock.h +56 -0
- data/ext/czmq/include/zconfig.h +117 -0
- data/ext/czmq/include/zctx.h +96 -0
- data/ext/czmq/include/zfile.h +82 -0
- data/ext/czmq/include/zframe.h +145 -0
- data/ext/czmq/include/zhash.h +127 -0
- data/ext/czmq/include/zlist.h +113 -0
- data/ext/czmq/include/zloop.h +98 -0
- data/ext/czmq/include/zmsg.h +165 -0
- data/ext/czmq/include/zmutex.h +62 -0
- data/ext/czmq/include/zsocket.h +104 -0
- data/ext/czmq/include/zsockopt.h +249 -0
- data/ext/czmq/include/zstr.h +69 -0
- data/ext/czmq/include/zsys.h +66 -0
- data/ext/czmq/include/zthread.h +62 -0
- data/ext/czmq/include/ztree.h +133 -0
- data/ext/czmq/mkdoc +14 -0
- data/ext/czmq/model/generate +2 -0
- data/ext/czmq/model/sockopts.xml +101 -0
- data/ext/czmq/notes.txt +21 -0
- data/ext/czmq/scripts/sockopts.gsl +325 -0
- data/ext/czmq/src/Makefile.am +61 -0
- data/ext/czmq/src/czmq_selftest.c +60 -0
- data/ext/czmq/src/libczmq.pc.in +11 -0
- data/ext/czmq/src/selftest +7 -0
- data/ext/czmq/src/selftest.cfg +5 -0
- data/ext/czmq/src/valgrind.supp +14 -0
- data/ext/czmq/src/vg +2 -0
- data/ext/czmq/src/zbeacon.c +787 -0
- data/ext/czmq/src/zclock.c +143 -0
- data/ext/czmq/src/zconfig.c +691 -0
- data/ext/czmq/src/zctx.c +287 -0
- data/ext/czmq/src/zfile.c +237 -0
- data/ext/czmq/src/zframe.c +551 -0
- data/ext/czmq/src/zhash.c +664 -0
- data/ext/czmq/src/zlist.c +459 -0
- data/ext/czmq/src/zloop.c +496 -0
- data/ext/czmq/src/zmsg.c +854 -0
- data/ext/czmq/src/zmutex.c +134 -0
- data/ext/czmq/src/zsocket.c +313 -0
- data/ext/czmq/src/zsockopt.c +1756 -0
- data/ext/czmq/src/zstr.c +297 -0
- data/ext/czmq/src/zsys.c +136 -0
- data/ext/czmq/src/zthread.c +269 -0
- data/ext/czmq/src/ztree.c +888 -0
- data/ext/czmq/version.sh +21 -0
- data/ext/rbczmq/extconf.rb +1 -18
- data/ext/rbczmq/poller.c +4 -1
- data/ext/rbczmq/socket.c +28 -5
- data/ext/rbczmq/socket.h +1 -0
- data/ext/zeromq/AUTHORS +110 -0
- data/ext/zeromq/CMakeLists.txt +392 -0
- data/ext/zeromq/COPYING +674 -0
- data/ext/zeromq/COPYING.LESSER +179 -0
- data/ext/zeromq/INSTALL +246 -0
- data/ext/zeromq/MAINTAINERS +56 -0
- data/ext/zeromq/Makefile.am +40 -0
- data/ext/zeromq/NEWS +333 -0
- data/ext/zeromq/README +39 -0
- data/ext/zeromq/acinclude.m4 +930 -0
- data/ext/zeromq/autogen.sh +45 -0
- data/ext/zeromq/branding.bmp +0 -0
- data/ext/zeromq/builds/msvc/Makefile.am +33 -0
- data/ext/zeromq/builds/msvc/c_local_lat/c_local_lat.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_local_lat/c_local_lat.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/c_local_thr/c_local_thr.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_local_thr/c_local_thr.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/c_remote_lat/c_remote_lat.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_remote_lat/c_remote_lat.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/c_remote_thr/c_remote_thr.vcproj +176 -0
- data/ext/zeromq/builds/msvc/c_remote_thr/c_remote_thr.vcxproj +87 -0
- data/ext/zeromq/builds/msvc/errno.cpp +32 -0
- data/ext/zeromq/builds/msvc/errno.hpp +56 -0
- data/ext/zeromq/builds/msvc/inproc_lat/inproc_lat.vcproj +174 -0
- data/ext/zeromq/builds/msvc/inproc_lat/inproc_lat.vcxproj +86 -0
- data/ext/zeromq/builds/msvc/inproc_thr/inproc_thr.vcproj +174 -0
- data/ext/zeromq/builds/msvc/inproc_thr/inproc_thr.vcxproj +86 -0
- data/ext/zeromq/builds/msvc/libzmq/libzmq.vcproj +804 -0
- data/ext/zeromq/builds/msvc/libzmq/libzmq.vcxproj +252 -0
- data/ext/zeromq/builds/msvc/libzmq/libzmq.vcxproj.filters +431 -0
- data/ext/zeromq/builds/msvc/msvc.sln +89 -0
- data/ext/zeromq/builds/msvc/msvc10.sln +116 -0
- data/ext/zeromq/builds/msvc/platform.hpp +32 -0
- data/ext/zeromq/builds/msvc/properties/Common.props +21 -0
- data/ext/zeromq/builds/msvc/properties/Debug.props +19 -0
- data/ext/zeromq/builds/msvc/properties/Dynamic.props +20 -0
- data/ext/zeromq/builds/msvc/properties/Executable.props +19 -0
- data/ext/zeromq/builds/msvc/properties/Precompiled.props +14 -0
- data/ext/zeromq/builds/msvc/properties/Release.props +22 -0
- data/ext/zeromq/builds/msvc/properties/Win32.props +12 -0
- data/ext/zeromq/builds/msvc/properties/Win32_Release.props +17 -0
- data/ext/zeromq/builds/msvc/properties/WithOpenPGM.props +12 -0
- data/ext/zeromq/builds/msvc/properties/ZeroMQ.props +23 -0
- data/ext/zeromq/builds/msvc/properties/x64.props +12 -0
- data/ext/zeromq/builds/redhat/zeromq.spec.in +160 -0
- data/ext/zeromq/builds/valgrind/valgrind.supp +14 -0
- data/ext/zeromq/builds/valgrind/vg +1 -0
- data/ext/zeromq/cmake/Modules/TestZMQVersion.cmake +35 -0
- data/ext/zeromq/cmake/Modules/zmq_version.cpp +31 -0
- data/ext/zeromq/cmake/NSIS.template32.in +952 -0
- data/ext/zeromq/cmake/NSIS.template64.in +960 -0
- data/ext/zeromq/configure.in +428 -0
- data/ext/zeromq/doc/Makefile.am +51 -0
- data/ext/zeromq/doc/asciidoc.conf +56 -0
- data/ext/zeromq/doc/zmq.txt +233 -0
- data/ext/zeromq/doc/zmq_bind.txt +102 -0
- data/ext/zeromq/doc/zmq_close.txt +52 -0
- data/ext/zeromq/doc/zmq_connect.txt +98 -0
- data/ext/zeromq/doc/zmq_ctx_destroy.txt +66 -0
- data/ext/zeromq/doc/zmq_ctx_get.txt +67 -0
- data/ext/zeromq/doc/zmq_ctx_new.txt +49 -0
- data/ext/zeromq/doc/zmq_ctx_set.txt +75 -0
- data/ext/zeromq/doc/zmq_disconnect.txt +67 -0
- data/ext/zeromq/doc/zmq_epgm.txt +162 -0
- data/ext/zeromq/doc/zmq_errno.txt +50 -0
- data/ext/zeromq/doc/zmq_getsockopt.txt +516 -0
- data/ext/zeromq/doc/zmq_init.txt +52 -0
- data/ext/zeromq/doc/zmq_inproc.txt +85 -0
- data/ext/zeromq/doc/zmq_ipc.txt +85 -0
- data/ext/zeromq/doc/zmq_msg_close.txt +55 -0
- data/ext/zeromq/doc/zmq_msg_copy.txt +57 -0
- data/ext/zeromq/doc/zmq_msg_data.txt +48 -0
- data/ext/zeromq/doc/zmq_msg_get.txt +72 -0
- data/ext/zeromq/doc/zmq_msg_init.txt +65 -0
- data/ext/zeromq/doc/zmq_msg_init_data.txt +85 -0
- data/ext/zeromq/doc/zmq_msg_init_size.txt +58 -0
- data/ext/zeromq/doc/zmq_msg_more.txt +63 -0
- data/ext/zeromq/doc/zmq_msg_move.txt +52 -0
- data/ext/zeromq/doc/zmq_msg_recv.txt +125 -0
- data/ext/zeromq/doc/zmq_msg_send.txt +122 -0
- data/ext/zeromq/doc/zmq_msg_set.txt +45 -0
- data/ext/zeromq/doc/zmq_msg_size.txt +48 -0
- data/ext/zeromq/doc/zmq_pgm.txt +162 -0
- data/ext/zeromq/doc/zmq_poll.txt +132 -0
- data/ext/zeromq/doc/zmq_proxy.txt +97 -0
- data/ext/zeromq/doc/zmq_recv.txt +93 -0
- data/ext/zeromq/doc/zmq_recvmsg.txt +123 -0
- data/ext/zeromq/doc/zmq_send.txt +100 -0
- data/ext/zeromq/doc/zmq_sendmsg.txt +119 -0
- data/ext/zeromq/doc/zmq_setsockopt.txt +523 -0
- data/ext/zeromq/doc/zmq_socket.txt +369 -0
- data/ext/zeromq/doc/zmq_socket_monitor.txt +288 -0
- data/ext/zeromq/doc/zmq_strerror.txt +55 -0
- data/ext/zeromq/doc/zmq_tcp.txt +101 -0
- data/ext/zeromq/doc/zmq_term.txt +66 -0
- data/ext/zeromq/doc/zmq_unbind.txt +65 -0
- data/ext/zeromq/doc/zmq_version.txt +53 -0
- data/ext/zeromq/foreign/openpgm/Makefile.am +8 -0
- data/ext/zeromq/foreign/openpgm/libpgm-5.1.118~dfsg.tar.gz +0 -0
- data/ext/zeromq/include/zmq.h +402 -0
- data/ext/zeromq/include/zmq_utils.h +64 -0
- data/ext/zeromq/installer.ico +0 -0
- data/ext/zeromq/perf/Makefile.am +22 -0
- data/ext/zeromq/perf/inproc_lat.cpp +233 -0
- data/ext/zeromq/perf/inproc_thr.cpp +241 -0
- data/ext/zeromq/perf/local_lat.cpp +109 -0
- data/ext/zeromq/perf/local_thr.cpp +133 -0
- data/ext/zeromq/perf/remote_lat.cpp +122 -0
- data/ext/zeromq/perf/remote_thr.cpp +105 -0
- data/ext/zeromq/src/Makefile.am +171 -0
- data/ext/zeromq/src/address.cpp +78 -0
- data/ext/zeromq/src/address.hpp +52 -0
- data/ext/zeromq/src/array.hpp +155 -0
- data/ext/zeromq/src/atomic_counter.hpp +197 -0
- data/ext/zeromq/src/atomic_ptr.hpp +196 -0
- data/ext/zeromq/src/blob.hpp +129 -0
- data/ext/zeromq/src/clock.cpp +147 -0
- data/ext/zeromq/src/clock.hpp +60 -0
- data/ext/zeromq/src/command.hpp +154 -0
- data/ext/zeromq/src/config.hpp +89 -0
- data/ext/zeromq/src/ctx.cpp +352 -0
- data/ext/zeromq/src/ctx.hpp +173 -0
- data/ext/zeromq/src/dealer.cpp +133 -0
- data/ext/zeromq/src/dealer.hpp +92 -0
- data/ext/zeromq/src/decoder.cpp +166 -0
- data/ext/zeromq/src/decoder.hpp +248 -0
- data/ext/zeromq/src/devpoll.cpp +190 -0
- data/ext/zeromq/src/devpoll.hpp +105 -0
- data/ext/zeromq/src/dist.cpp +194 -0
- data/ext/zeromq/src/dist.hpp +105 -0
- data/ext/zeromq/src/encoder.cpp +102 -0
- data/ext/zeromq/src/encoder.hpp +200 -0
- data/ext/zeromq/src/epoll.cpp +178 -0
- data/ext/zeromq/src/epoll.hpp +101 -0
- data/ext/zeromq/src/err.cpp +291 -0
- data/ext/zeromq/src/err.hpp +155 -0
- data/ext/zeromq/src/fd.hpp +45 -0
- data/ext/zeromq/src/fq.cpp +141 -0
- data/ext/zeromq/src/fq.hpp +74 -0
- data/ext/zeromq/src/i_decoder.hpp +49 -0
- data/ext/zeromq/src/i_encoder.hpp +55 -0
- data/ext/zeromq/src/i_engine.hpp +55 -0
- data/ext/zeromq/src/i_msg_sink.hpp +43 -0
- data/ext/zeromq/src/i_msg_source.hpp +44 -0
- data/ext/zeromq/src/i_poll_events.hpp +47 -0
- data/ext/zeromq/src/io_object.cpp +108 -0
- data/ext/zeromq/src/io_object.hpp +81 -0
- data/ext/zeromq/src/io_thread.cpp +104 -0
- data/ext/zeromq/src/io_thread.hpp +91 -0
- data/ext/zeromq/src/ip.cpp +109 -0
- data/ext/zeromq/src/ip.hpp +41 -0
- data/ext/zeromq/src/ipc_address.cpp +84 -0
- data/ext/zeromq/src/ipc_address.hpp +67 -0
- data/ext/zeromq/src/ipc_connecter.cpp +265 -0
- data/ext/zeromq/src/ipc_connecter.hpp +128 -0
- data/ext/zeromq/src/ipc_listener.cpp +206 -0
- data/ext/zeromq/src/ipc_listener.hpp +99 -0
- data/ext/zeromq/src/kqueue.cpp +201 -0
- data/ext/zeromq/src/kqueue.hpp +107 -0
- data/ext/zeromq/src/lb.cpp +148 -0
- data/ext/zeromq/src/lb.hpp +73 -0
- data/ext/zeromq/src/libzmq.pc.in +10 -0
- data/ext/zeromq/src/likely.hpp +33 -0
- data/ext/zeromq/src/mailbox.cpp +87 -0
- data/ext/zeromq/src/mailbox.hpp +75 -0
- data/ext/zeromq/src/msg.cpp +299 -0
- data/ext/zeromq/src/msg.hpp +148 -0
- data/ext/zeromq/src/mtrie.cpp +428 -0
- data/ext/zeromq/src/mtrie.hpp +93 -0
- data/ext/zeromq/src/mutex.hpp +118 -0
- data/ext/zeromq/src/object.cpp +393 -0
- data/ext/zeromq/src/object.hpp +134 -0
- data/ext/zeromq/src/options.cpp +562 -0
- data/ext/zeromq/src/options.hpp +135 -0
- data/ext/zeromq/src/own.cpp +206 -0
- data/ext/zeromq/src/own.hpp +145 -0
- data/ext/zeromq/src/pair.cpp +136 -0
- data/ext/zeromq/src/pair.hpp +79 -0
- data/ext/zeromq/src/pgm_receiver.cpp +283 -0
- data/ext/zeromq/src/pgm_receiver.hpp +141 -0
- data/ext/zeromq/src/pgm_sender.cpp +218 -0
- data/ext/zeromq/src/pgm_sender.hpp +113 -0
- data/ext/zeromq/src/pgm_socket.cpp +706 -0
- data/ext/zeromq/src/pgm_socket.hpp +124 -0
- data/ext/zeromq/src/pipe.cpp +447 -0
- data/ext/zeromq/src/pipe.hpp +207 -0
- data/ext/zeromq/src/poll.cpp +176 -0
- data/ext/zeromq/src/poll.hpp +105 -0
- data/ext/zeromq/src/poller.hpp +82 -0
- data/ext/zeromq/src/poller_base.cpp +99 -0
- data/ext/zeromq/src/poller_base.hpp +86 -0
- data/ext/zeromq/src/precompiled.cpp +21 -0
- data/ext/zeromq/src/precompiled.hpp +47 -0
- data/ext/zeromq/src/proxy.cpp +150 -0
- data/ext/zeromq/src/proxy.hpp +32 -0
- data/ext/zeromq/src/pub.cpp +57 -0
- data/ext/zeromq/src/pub.hpp +69 -0
- data/ext/zeromq/src/pull.cpp +79 -0
- data/ext/zeromq/src/pull.hpp +81 -0
- data/ext/zeromq/src/push.cpp +76 -0
- data/ext/zeromq/src/push.hpp +80 -0
- data/ext/zeromq/src/random.cpp +52 -0
- data/ext/zeromq/src/random.hpp +37 -0
- data/ext/zeromq/src/reaper.cpp +117 -0
- data/ext/zeromq/src/reaper.hpp +80 -0
- data/ext/zeromq/src/rep.cpp +137 -0
- data/ext/zeromq/src/rep.hpp +80 -0
- data/ext/zeromq/src/req.cpp +185 -0
- data/ext/zeromq/src/req.hpp +91 -0
- data/ext/zeromq/src/router.cpp +364 -0
- data/ext/zeromq/src/router.hpp +138 -0
- data/ext/zeromq/src/select.cpp +216 -0
- data/ext/zeromq/src/select.hpp +126 -0
- data/ext/zeromq/src/session_base.cpp +503 -0
- data/ext/zeromq/src/session_base.hpp +156 -0
- data/ext/zeromq/src/signaler.cpp +406 -0
- data/ext/zeromq/src/signaler.hpp +63 -0
- data/ext/zeromq/src/socket_base.cpp +1236 -0
- data/ext/zeromq/src/socket_base.hpp +255 -0
- data/ext/zeromq/src/stdint.hpp +63 -0
- data/ext/zeromq/src/stream_engine.cpp +594 -0
- data/ext/zeromq/src/stream_engine.hpp +149 -0
- data/ext/zeromq/src/sub.cpp +93 -0
- data/ext/zeromq/src/sub.hpp +71 -0
- data/ext/zeromq/src/tcp.cpp +131 -0
- data/ext/zeromq/src/tcp.hpp +38 -0
- data/ext/zeromq/src/tcp_address.cpp +613 -0
- data/ext/zeromq/src/tcp_address.hpp +100 -0
- data/ext/zeromq/src/tcp_connecter.cpp +319 -0
- data/ext/zeromq/src/tcp_connecter.hpp +123 -0
- data/ext/zeromq/src/tcp_listener.cpp +293 -0
- data/ext/zeromq/src/tcp_listener.hpp +91 -0
- data/ext/zeromq/src/thread.cpp +107 -0
- data/ext/zeromq/src/thread.hpp +79 -0
- data/ext/zeromq/src/trie.cpp +337 -0
- data/ext/zeromq/src/trie.hpp +79 -0
- data/ext/zeromq/src/v1_decoder.cpp +162 -0
- data/ext/zeromq/src/v1_decoder.hpp +68 -0
- data/ext/zeromq/src/v1_encoder.cpp +103 -0
- data/ext/zeromq/src/v1_encoder.hpp +60 -0
- data/ext/zeromq/src/v1_protocol.hpp +43 -0
- data/ext/zeromq/src/version.rc.in +93 -0
- data/ext/zeromq/src/windows.hpp +181 -0
- data/ext/zeromq/src/wire.hpp +99 -0
- data/ext/zeromq/src/xpub.cpp +200 -0
- data/ext/zeromq/src/xpub.hpp +110 -0
- data/ext/zeromq/src/xsub.cpp +242 -0
- data/ext/zeromq/src/xsub.hpp +108 -0
- data/ext/zeromq/src/ypipe.hpp +210 -0
- data/ext/zeromq/src/yqueue.hpp +199 -0
- data/ext/zeromq/src/zmq.cpp +1058 -0
- data/ext/zeromq/src/zmq_utils.cpp +61 -0
- data/ext/zeromq/tests/Makefile.am +55 -0
- data/ext/zeromq/tests/test_connect_delay.cpp +260 -0
- data/ext/zeromq/tests/test_connect_resolve.cpp +54 -0
- data/ext/zeromq/tests/test_disconnect_inproc.cpp +120 -0
- data/ext/zeromq/tests/test_hwm.cpp +83 -0
- data/ext/zeromq/tests/test_invalid_rep.cpp +92 -0
- data/ext/zeromq/tests/test_last_endpoint.cpp +60 -0
- data/ext/zeromq/tests/test_monitor.cpp +289 -0
- data/ext/zeromq/tests/test_msg_flags.cpp +78 -0
- data/ext/zeromq/tests/test_pair_inproc.cpp +53 -0
- data/ext/zeromq/tests/test_pair_ipc.cpp +53 -0
- data/ext/zeromq/tests/test_pair_tcp.cpp +54 -0
- data/ext/zeromq/tests/test_reqrep_device.cpp +143 -0
- data/ext/zeromq/tests/test_reqrep_inproc.cpp +53 -0
- data/ext/zeromq/tests/test_reqrep_ipc.cpp +53 -0
- data/ext/zeromq/tests/test_reqrep_tcp.cpp +54 -0
- data/ext/zeromq/tests/test_router_mandatory.cpp +62 -0
- data/ext/zeromq/tests/test_shutdown_stress.cpp +93 -0
- data/ext/zeromq/tests/test_sub_forward.cpp +99 -0
- data/ext/zeromq/tests/test_term_endpoint.cpp +118 -0
- data/ext/zeromq/tests/test_timeo.cpp +119 -0
- data/ext/zeromq/tests/testutil.hpp +77 -0
- data/ext/zeromq/version.sh +21 -0
- data/lib/zmq/version.rb +1 -1
- data/rbczmq.gemspec +16 -3
- data/test/test_socket.rb +13 -1
- metadata +398 -9
- checksums.yaml +0 -15
- data/ext/czmq-1.4.1.tar.gz +0 -0
- data/ext/zeromq-3.2.3.tar.gz +0 -0
@@ -0,0 +1,82 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2010-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
4
|
+
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
5
|
+
|
6
|
+
This file is part of 0MQ.
|
7
|
+
|
8
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
9
|
+
the terms of the GNU Lesser General Public License as published by
|
10
|
+
the Free Software Foundation; either version 3 of the License, or
|
11
|
+
(at your option) any later version.
|
12
|
+
|
13
|
+
0MQ is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef __ZMQ_POLLER_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_POLLER_HPP_INCLUDED__
|
24
|
+
|
25
|
+
#include "platform.hpp"
|
26
|
+
|
27
|
+
#if defined ZMQ_FORCE_SELECT
|
28
|
+
#define ZMQ_USE_SELECT
|
29
|
+
#include "select.hpp"
|
30
|
+
#elif defined ZMQ_FORCE_POLL
|
31
|
+
#define ZMQ_USE_POLL
|
32
|
+
#include "poll.hpp"
|
33
|
+
#elif defined ZMQ_FORCE_EPOLL
|
34
|
+
#define ZMQ_USE_EPOLL
|
35
|
+
#include "epoll.hpp"
|
36
|
+
#elif defined ZMQ_FORCE_DEVPOLL
|
37
|
+
#define ZMQ_USE_DEVPOLL
|
38
|
+
#include "devpoll.hpp"
|
39
|
+
#elif defined ZMQ_FORCE_KQUEUE
|
40
|
+
#define ZMQ_USE_KQUEUE
|
41
|
+
#include "kqueue.hpp"
|
42
|
+
#elif defined ZMQ_HAVE_LINUX
|
43
|
+
#define ZMQ_USE_EPOLL
|
44
|
+
#include "epoll.hpp"
|
45
|
+
#elif defined ZMQ_HAVE_WINDOWS
|
46
|
+
#define ZMQ_USE_SELECT
|
47
|
+
#include "select.hpp"
|
48
|
+
#elif defined ZMQ_HAVE_FREEBSD
|
49
|
+
#define ZMQ_USE_KQUEUE
|
50
|
+
#include "kqueue.hpp"
|
51
|
+
#elif defined ZMQ_HAVE_OPENBSD
|
52
|
+
#define ZMQ_USE_KQUEUE
|
53
|
+
#include "kqueue.hpp"
|
54
|
+
#elif defined ZMQ_HAVE_NETBSD
|
55
|
+
#define ZMQ_USE_KQUEUE
|
56
|
+
#include "kqueue.hpp"
|
57
|
+
#elif defined ZMQ_HAVE_SOLARIS
|
58
|
+
#define ZMQ_USE_DEVPOLL
|
59
|
+
#include "devpoll.hpp"
|
60
|
+
#elif defined ZMQ_HAVE_OSX
|
61
|
+
#define ZMQ_USE_KQUEUE
|
62
|
+
#include "kqueue.hpp"
|
63
|
+
#elif defined ZMQ_HAVE_QNXNTO
|
64
|
+
#define ZMQ_USE_POLL
|
65
|
+
#include "poll.hpp"
|
66
|
+
#elif defined ZMQ_HAVE_AIX
|
67
|
+
#define ZMQ_USE_POLL
|
68
|
+
#include "poll.hpp"
|
69
|
+
#elif defined ZMQ_HAVE_HPUX
|
70
|
+
#define ZMQ_USE_DEVPOLL
|
71
|
+
#include "devpoll.hpp"
|
72
|
+
#elif defined ZMQ_HAVE_OPENVMS
|
73
|
+
#define ZMQ_USE_SELECT
|
74
|
+
#include "select.hpp"
|
75
|
+
#elif defined ZMQ_HAVE_CYGWIN
|
76
|
+
#define ZMQ_USE_SELECT
|
77
|
+
#include "select.hpp"
|
78
|
+
#else
|
79
|
+
#error Unsupported platform
|
80
|
+
#endif
|
81
|
+
|
82
|
+
#endif
|
@@ -0,0 +1,99 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2010-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2010-2011 Other contributors as noted in the AUTHORS file
|
4
|
+
|
5
|
+
This file is part of 0MQ.
|
6
|
+
|
7
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
8
|
+
the terms of the GNU Lesser General Public License as published by
|
9
|
+
the Free Software Foundation; either version 3 of the License, or
|
10
|
+
(at your option) any later version.
|
11
|
+
|
12
|
+
0MQ is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
GNU Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General Public License
|
18
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "poller_base.hpp"
|
22
|
+
#include "i_poll_events.hpp"
|
23
|
+
#include "err.hpp"
|
24
|
+
|
25
|
+
zmq::poller_base_t::poller_base_t ()
|
26
|
+
{
|
27
|
+
}
|
28
|
+
|
29
|
+
zmq::poller_base_t::~poller_base_t ()
|
30
|
+
{
|
31
|
+
// Make sure there is no more load on the shutdown.
|
32
|
+
zmq_assert (get_load () == 0);
|
33
|
+
}
|
34
|
+
|
35
|
+
int zmq::poller_base_t::get_load ()
|
36
|
+
{
|
37
|
+
return load.get ();
|
38
|
+
}
|
39
|
+
|
40
|
+
void zmq::poller_base_t::adjust_load (int amount_)
|
41
|
+
{
|
42
|
+
if (amount_ > 0)
|
43
|
+
load.add (amount_);
|
44
|
+
else if (amount_ < 0)
|
45
|
+
load.sub (-amount_);
|
46
|
+
}
|
47
|
+
|
48
|
+
void zmq::poller_base_t::add_timer (int timeout_, i_poll_events *sink_, int id_)
|
49
|
+
{
|
50
|
+
uint64_t expiration = clock.now_ms () + timeout_;
|
51
|
+
timer_info_t info = {sink_, id_};
|
52
|
+
timers.insert (timers_t::value_type (expiration, info));
|
53
|
+
}
|
54
|
+
|
55
|
+
void zmq::poller_base_t::cancel_timer (i_poll_events *sink_, int id_)
|
56
|
+
{
|
57
|
+
// Complexity of this operation is O(n). We assume it is rarely used.
|
58
|
+
for (timers_t::iterator it = timers.begin (); it != timers.end (); ++it)
|
59
|
+
if (it->second.sink == sink_ && it->second.id == id_) {
|
60
|
+
timers.erase (it);
|
61
|
+
return;
|
62
|
+
}
|
63
|
+
|
64
|
+
// Timer not found.
|
65
|
+
zmq_assert (false);
|
66
|
+
}
|
67
|
+
|
68
|
+
uint64_t zmq::poller_base_t::execute_timers ()
|
69
|
+
{
|
70
|
+
// Fast track.
|
71
|
+
if (timers.empty ())
|
72
|
+
return 0;
|
73
|
+
|
74
|
+
// Get the current time.
|
75
|
+
uint64_t current = clock.now_ms ();
|
76
|
+
|
77
|
+
// Execute the timers that are already due.
|
78
|
+
timers_t::iterator it = timers.begin ();
|
79
|
+
while (it != timers.end ()) {
|
80
|
+
|
81
|
+
// If we have to wait to execute the item, same will be true about
|
82
|
+
// all the following items (multimap is sorted). Thus we can stop
|
83
|
+
// checking the subsequent timers and return the time to wait for
|
84
|
+
// the next timer (at least 1ms).
|
85
|
+
if (it->first > current)
|
86
|
+
return it->first - current;
|
87
|
+
|
88
|
+
// Trigger the timer.
|
89
|
+
it->second.sink->timer_event (it->second.id);
|
90
|
+
|
91
|
+
// Remove it from the list of active timers.
|
92
|
+
timers_t::iterator o = it;
|
93
|
+
++it;
|
94
|
+
timers.erase (o);
|
95
|
+
}
|
96
|
+
|
97
|
+
// There are no more timers.
|
98
|
+
return 0;
|
99
|
+
}
|
@@ -0,0 +1,86 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2010-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2010-2011 Other contributors as noted in the AUTHORS file
|
4
|
+
|
5
|
+
This file is part of 0MQ.
|
6
|
+
|
7
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
8
|
+
the terms of the GNU Lesser General Public License as published by
|
9
|
+
the Free Software Foundation; either version 3 of the License, or
|
10
|
+
(at your option) any later version.
|
11
|
+
|
12
|
+
0MQ is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
GNU Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General Public License
|
18
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef __ZMQ_POLLER_BASE_HPP_INCLUDED__
|
22
|
+
#define __ZMQ_POLLER_BASE_HPP_INCLUDED__
|
23
|
+
|
24
|
+
#include <map>
|
25
|
+
|
26
|
+
#include "clock.hpp"
|
27
|
+
#include "atomic_counter.hpp"
|
28
|
+
|
29
|
+
namespace zmq
|
30
|
+
{
|
31
|
+
|
32
|
+
struct i_poll_events;
|
33
|
+
|
34
|
+
class poller_base_t
|
35
|
+
{
|
36
|
+
public:
|
37
|
+
|
38
|
+
poller_base_t ();
|
39
|
+
virtual ~poller_base_t ();
|
40
|
+
|
41
|
+
// Returns load of the poller. Note that this function can be
|
42
|
+
// invoked from a different thread!
|
43
|
+
int get_load ();
|
44
|
+
|
45
|
+
// Add a timeout to expire in timeout_ milliseconds. After the
|
46
|
+
// expiration timer_event on sink_ object will be called with
|
47
|
+
// argument set to id_.
|
48
|
+
void add_timer (int timeout_, zmq::i_poll_events *sink_, int id_);
|
49
|
+
|
50
|
+
// Cancel the timer created by sink_ object with ID equal to id_.
|
51
|
+
void cancel_timer (zmq::i_poll_events *sink_, int id_);
|
52
|
+
|
53
|
+
protected:
|
54
|
+
|
55
|
+
// Called by individual poller implementations to manage the load.
|
56
|
+
void adjust_load (int amount_);
|
57
|
+
|
58
|
+
// Executes any timers that are due. Returns number of milliseconds
|
59
|
+
// to wait to match the next timer or 0 meaning "no timers".
|
60
|
+
uint64_t execute_timers ();
|
61
|
+
|
62
|
+
private:
|
63
|
+
|
64
|
+
// Clock instance private to this I/O thread.
|
65
|
+
clock_t clock;
|
66
|
+
|
67
|
+
// List of active timers.
|
68
|
+
struct timer_info_t
|
69
|
+
{
|
70
|
+
zmq::i_poll_events *sink;
|
71
|
+
int id;
|
72
|
+
};
|
73
|
+
typedef std::multimap <uint64_t, timer_info_t> timers_t;
|
74
|
+
timers_t timers;
|
75
|
+
|
76
|
+
// Load of the poller. Currently the number of file descriptors
|
77
|
+
// registered.
|
78
|
+
atomic_counter_t load;
|
79
|
+
|
80
|
+
poller_base_t (const poller_base_t&);
|
81
|
+
const poller_base_t &operator = (const poller_base_t&);
|
82
|
+
};
|
83
|
+
|
84
|
+
}
|
85
|
+
|
86
|
+
#endif
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2011 Other contributors as noted in the AUTHORS file
|
4
|
+
|
5
|
+
This file is part of 0MQ.
|
6
|
+
|
7
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
8
|
+
the terms of the GNU Lesser General Public License as published by
|
9
|
+
the Free Software Foundation; either version 3 of the License, or
|
10
|
+
(at your option) any later version.
|
11
|
+
|
12
|
+
0MQ is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
GNU Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General Public License
|
18
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "precompiled.hpp"
|
@@ -0,0 +1,47 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2011 Other contributors as noted in the AUTHORS file
|
4
|
+
|
5
|
+
This file is part of 0MQ.
|
6
|
+
|
7
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
8
|
+
the terms of the GNU Lesser General Public License as published by
|
9
|
+
the Free Software Foundation; either version 3 of the License, or
|
10
|
+
(at your option) any later version.
|
11
|
+
|
12
|
+
0MQ is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
GNU Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General Public License
|
18
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef __ZMQ_PRECOMPILED_HPP_INCLUDED__
|
22
|
+
#define __ZMQ_PRECOMPILED_HPP_INCLUDED__
|
23
|
+
|
24
|
+
#ifdef _MSC_VER
|
25
|
+
|
26
|
+
// Windows headers
|
27
|
+
#include "platform.hpp"
|
28
|
+
#include "windows.hpp"
|
29
|
+
#include <fcntl.h>
|
30
|
+
#include <intrin.h>
|
31
|
+
#include <io.h>
|
32
|
+
#include <rpc.h>
|
33
|
+
#include <sys/stat.h>
|
34
|
+
|
35
|
+
// standard C++ headers
|
36
|
+
#include <algorithm>
|
37
|
+
#include <map>
|
38
|
+
#include <set>
|
39
|
+
#include <string>
|
40
|
+
#include <vector>
|
41
|
+
|
42
|
+
// 0MQ definitions and exported functions
|
43
|
+
#include "../include/zmq.h"
|
44
|
+
|
45
|
+
#endif // _MSC_VER
|
46
|
+
|
47
|
+
#endif
|
@@ -0,0 +1,150 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2007-2012 iMatix Corporation
|
3
|
+
Copyright (c) 2007-2012 Other contributors as noted in the AUTHORS file
|
4
|
+
|
5
|
+
This file is part of 0MQ.
|
6
|
+
|
7
|
+
0MQ is free software; you can redistribute it and/or modify it under
|
8
|
+
the terms of the GNU Lesser General Public License as published by
|
9
|
+
the Free Software Foundation; either version 3 of the License, or
|
10
|
+
(at your option) any later version.
|
11
|
+
|
12
|
+
0MQ is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
GNU Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General Public License
|
18
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include <stddef.h>
|
22
|
+
#include "platform.hpp"
|
23
|
+
#include "proxy.hpp"
|
24
|
+
#include "likely.hpp"
|
25
|
+
|
26
|
+
#if defined ZMQ_FORCE_SELECT
|
27
|
+
#define ZMQ_POLL_BASED_ON_SELECT
|
28
|
+
#elif defined ZMQ_FORCE_POLL
|
29
|
+
#define ZMQ_POLL_BASED_ON_POLL
|
30
|
+
#elif defined ZMQ_HAVE_LINUX || defined ZMQ_HAVE_FREEBSD ||\
|
31
|
+
defined ZMQ_HAVE_OPENBSD || defined ZMQ_HAVE_SOLARIS ||\
|
32
|
+
defined ZMQ_HAVE_OSX || defined ZMQ_HAVE_QNXNTO ||\
|
33
|
+
defined ZMQ_HAVE_HPUX || defined ZMQ_HAVE_AIX ||\
|
34
|
+
defined ZMQ_HAVE_NETBSD
|
35
|
+
#define ZMQ_POLL_BASED_ON_POLL
|
36
|
+
#elif defined ZMQ_HAVE_WINDOWS || defined ZMQ_HAVE_OPENVMS ||\
|
37
|
+
defined ZMQ_HAVE_CYGWIN
|
38
|
+
#define ZMQ_POLL_BASED_ON_SELECT
|
39
|
+
#endif
|
40
|
+
|
41
|
+
// On AIX platform, poll.h has to be included first to get consistent
|
42
|
+
// definition of pollfd structure (AIX uses 'reqevents' and 'retnevents'
|
43
|
+
// instead of 'events' and 'revents' and defines macros to map from POSIX-y
|
44
|
+
// names to AIX-specific names).
|
45
|
+
#if defined ZMQ_POLL_BASED_ON_POLL
|
46
|
+
#include <poll.h>
|
47
|
+
#endif
|
48
|
+
|
49
|
+
// These headers end up pulling in zmq.h somewhere in their include
|
50
|
+
// dependency chain
|
51
|
+
#include "socket_base.hpp"
|
52
|
+
#include "err.hpp"
|
53
|
+
|
54
|
+
// zmq.h must be included *after* poll.h for AIX to build properly
|
55
|
+
#include "../include/zmq.h"
|
56
|
+
|
57
|
+
|
58
|
+
int zmq::proxy (
|
59
|
+
class socket_base_t *frontend_,
|
60
|
+
class socket_base_t *backend_,
|
61
|
+
class socket_base_t *capture_)
|
62
|
+
{
|
63
|
+
msg_t msg;
|
64
|
+
int rc = msg.init ();
|
65
|
+
if (rc != 0)
|
66
|
+
return -1;
|
67
|
+
|
68
|
+
// The algorithm below assumes ratio of requests and replies processed
|
69
|
+
// under full load to be 1:1.
|
70
|
+
|
71
|
+
int more;
|
72
|
+
size_t moresz;
|
73
|
+
zmq_pollitem_t items [] = {
|
74
|
+
{ frontend_, 0, ZMQ_POLLIN, 0 },
|
75
|
+
{ backend_, 0, ZMQ_POLLIN, 0 }
|
76
|
+
};
|
77
|
+
while (true) {
|
78
|
+
// Wait while there are either requests or replies to process.
|
79
|
+
rc = zmq_poll (&items [0], 2, -1);
|
80
|
+
if (unlikely (rc < 0))
|
81
|
+
return -1;
|
82
|
+
|
83
|
+
// Process a request
|
84
|
+
if (items [0].revents & ZMQ_POLLIN) {
|
85
|
+
while (true) {
|
86
|
+
rc = frontend_->recv (&msg, 0);
|
87
|
+
if (unlikely (rc < 0))
|
88
|
+
return -1;
|
89
|
+
|
90
|
+
moresz = sizeof more;
|
91
|
+
rc = frontend_->getsockopt (ZMQ_RCVMORE, &more, &moresz);
|
92
|
+
if (unlikely (rc < 0))
|
93
|
+
return -1;
|
94
|
+
|
95
|
+
// Copy message to capture socket if any
|
96
|
+
if (capture_) {
|
97
|
+
msg_t ctrl;
|
98
|
+
rc = ctrl.init ();
|
99
|
+
if (unlikely (rc < 0))
|
100
|
+
return -1;
|
101
|
+
rc = ctrl.copy (msg);
|
102
|
+
if (unlikely (rc < 0))
|
103
|
+
return -1;
|
104
|
+
rc = capture_->send (&ctrl, more? ZMQ_SNDMORE: 0);
|
105
|
+
if (unlikely (rc < 0))
|
106
|
+
return -1;
|
107
|
+
}
|
108
|
+
rc = backend_->send (&msg, more? ZMQ_SNDMORE: 0);
|
109
|
+
if (unlikely (rc < 0))
|
110
|
+
return -1;
|
111
|
+
if (more == 0)
|
112
|
+
break;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
// Process a reply
|
116
|
+
if (items [1].revents & ZMQ_POLLIN) {
|
117
|
+
while (true) {
|
118
|
+
rc = backend_->recv (&msg, 0);
|
119
|
+
if (unlikely (rc < 0))
|
120
|
+
return -1;
|
121
|
+
|
122
|
+
moresz = sizeof more;
|
123
|
+
rc = backend_->getsockopt (ZMQ_RCVMORE, &more, &moresz);
|
124
|
+
if (unlikely (rc < 0))
|
125
|
+
return -1;
|
126
|
+
|
127
|
+
// Copy message to capture socket if any
|
128
|
+
if (capture_) {
|
129
|
+
msg_t ctrl;
|
130
|
+
rc = ctrl.init ();
|
131
|
+
if (unlikely (rc < 0))
|
132
|
+
return -1;
|
133
|
+
rc = ctrl.copy (msg);
|
134
|
+
if (unlikely (rc < 0))
|
135
|
+
return -1;
|
136
|
+
rc = capture_->send (&ctrl, more? ZMQ_SNDMORE: 0);
|
137
|
+
if (unlikely (rc < 0))
|
138
|
+
return -1;
|
139
|
+
}
|
140
|
+
rc = frontend_->send (&msg, more? ZMQ_SNDMORE: 0);
|
141
|
+
if (unlikely (rc < 0))
|
142
|
+
return -1;
|
143
|
+
if (more == 0)
|
144
|
+
break;
|
145
|
+
}
|
146
|
+
}
|
147
|
+
|
148
|
+
}
|
149
|
+
return 0;
|
150
|
+
}
|