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,181 @@
|
|
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_WINDOWS_HPP_INCLUDED__
|
23
|
+
#define __ZMQ_WINDOWS_HPP_INCLUDED__
|
24
|
+
|
25
|
+
// The purpose of this header file is to turn on only the items actually
|
26
|
+
// needed on the windows platform.
|
27
|
+
|
28
|
+
#ifndef _CRT_SECURE_NO_WARNINGS
|
29
|
+
#define _CRT_SECURE_NO_WARNINGS
|
30
|
+
#endif
|
31
|
+
#ifndef WIN32_LEAN_AND_MEAN
|
32
|
+
#define WIN32_LEAN_AND_MEAN
|
33
|
+
#endif
|
34
|
+
#ifndef NOGDICAPMASKS
|
35
|
+
#define NOGDICAPMASKS // CC_*, LC_*, PC_*, CP_*, TC_*, RC_
|
36
|
+
#endif
|
37
|
+
#ifndef NOVIRTUALKEYCODES
|
38
|
+
#define NOVIRTUALKEYCODES // VK_*
|
39
|
+
#endif
|
40
|
+
#ifndef NOWINMESSAGES
|
41
|
+
#define NOWINMESSAGES // WM_*, EM_*, LB_*, CB_*
|
42
|
+
#endif
|
43
|
+
#ifndef NOWINSTYLES
|
44
|
+
#define NOWINSTYLES // WS_*, CS_*, ES_*, LBS_*, SBS_*, CBS_*
|
45
|
+
#endif
|
46
|
+
#ifndef NOSYSMETRICS
|
47
|
+
#define NOSYSMETRICS // SM_*
|
48
|
+
#endif
|
49
|
+
#ifndef NOMENUS
|
50
|
+
#define NOMENUS // MF_*
|
51
|
+
#endif
|
52
|
+
#ifndef NOICONS
|
53
|
+
#define NOICONS // IDI_*
|
54
|
+
#endif
|
55
|
+
#ifndef NOKEYSTATES
|
56
|
+
#define NOKEYSTATES // MK_*
|
57
|
+
#endif
|
58
|
+
#ifndef NOSYSCOMMANDS
|
59
|
+
#define NOSYSCOMMANDS // SC_*
|
60
|
+
#endif
|
61
|
+
#ifndef NORASTEROPS
|
62
|
+
#define NORASTEROPS // Binary and Tertiary raster ops
|
63
|
+
#endif
|
64
|
+
#ifndef NOSHOWWINDOW
|
65
|
+
#define NOSHOWWINDOW // SW_*
|
66
|
+
#endif
|
67
|
+
#ifndef OEMRESOURCE
|
68
|
+
#define OEMRESOURCE // OEM Resource values
|
69
|
+
#endif
|
70
|
+
#ifndef NOATOM
|
71
|
+
#define NOATOM // Atom Manager routines
|
72
|
+
#endif
|
73
|
+
#ifndef NOCLIPBOARD
|
74
|
+
#define NOCLIPBOARD // Clipboard routines
|
75
|
+
#endif
|
76
|
+
#ifndef NOCOLOR
|
77
|
+
#define NOCOLOR // Screen colors
|
78
|
+
#endif
|
79
|
+
#ifndef NOCTLMGR
|
80
|
+
#define NOCTLMGR // Control and Dialog routines
|
81
|
+
#endif
|
82
|
+
#ifndef NODRAWTEXT
|
83
|
+
#define NODRAWTEXT // DrawText() and DT_*
|
84
|
+
#endif
|
85
|
+
#ifndef NOGDI
|
86
|
+
#define NOGDI // All GDI defines and routines
|
87
|
+
#endif
|
88
|
+
#ifndef NOKERNEL
|
89
|
+
#define NOKERNEL // All KERNEL defines and routines
|
90
|
+
#endif
|
91
|
+
#ifndef NOUSER
|
92
|
+
#define NOUSER // All USER defines and routines
|
93
|
+
#endif
|
94
|
+
#ifndef NONLS
|
95
|
+
#define NONLS // All NLS defines and routines
|
96
|
+
#endif
|
97
|
+
#ifndef NOMB
|
98
|
+
#define NOMB // MB_* and MessageBox()
|
99
|
+
#endif
|
100
|
+
#ifndef NOMEMMGR
|
101
|
+
#define NOMEMMGR // GMEM_*, LMEM_*, GHND, LHND, associated routines
|
102
|
+
#endif
|
103
|
+
#ifndef NOMETAFILE
|
104
|
+
#define NOMETAFILE // typedef METAFILEPICT
|
105
|
+
#endif
|
106
|
+
#ifndef NOMINMAX
|
107
|
+
#define NOMINMAX // Macros min(a,b) and max(a,b)
|
108
|
+
#endif
|
109
|
+
#ifndef NOMSG
|
110
|
+
#define NOMSG // typedef MSG and associated routines
|
111
|
+
#endif
|
112
|
+
#ifndef NOOPENFILE
|
113
|
+
#define NOOPENFILE // OpenFile(), OemToAnsi, AnsiToOem, and OF_*
|
114
|
+
#endif
|
115
|
+
#ifndef NOSCROLL
|
116
|
+
#define NOSCROLL // SB_* and scrolling routines
|
117
|
+
#endif
|
118
|
+
#ifndef NOSERVICE
|
119
|
+
#define NOSERVICE // All Service Controller routines, SERVICE_ equates, etc.
|
120
|
+
#endif
|
121
|
+
#ifndef NOSOUND
|
122
|
+
#define NOSOUND // Sound driver routines
|
123
|
+
#endif
|
124
|
+
#ifndef NOTEXTMETRIC
|
125
|
+
#define NOTEXTMETRIC // typedef TEXTMETRIC and associated routines
|
126
|
+
#endif
|
127
|
+
#ifndef NOWH
|
128
|
+
#define NOWH // SetWindowsHook and WH_*
|
129
|
+
#endif
|
130
|
+
#ifndef NOWINOFFSETS
|
131
|
+
#define NOWINOFFSETS // GWL_*, GCL_*, associated routines
|
132
|
+
#endif
|
133
|
+
#ifndef NOCOMM
|
134
|
+
#define NOCOMM // COMM driver routines
|
135
|
+
#endif
|
136
|
+
#ifndef NOKANJI
|
137
|
+
#define NOKANJI // Kanji support stuff.
|
138
|
+
#endif
|
139
|
+
#ifndef NOHELP
|
140
|
+
#define NOHELP // Help engine interface.
|
141
|
+
#endif
|
142
|
+
#ifndef NOPROFILER
|
143
|
+
#define NOPROFILER // Profiler interface.
|
144
|
+
#endif
|
145
|
+
#ifndef NODEFERWINDOWPOS
|
146
|
+
#define NODEFERWINDOWPOS // DeferWindowPos routines
|
147
|
+
#endif
|
148
|
+
#ifndef NOMCX
|
149
|
+
#define NOMCX // Modem Configuration ExtensionsA
|
150
|
+
#endif
|
151
|
+
|
152
|
+
// Set target version to Windows Server 2003, Windows XP/SP1 or higher.
|
153
|
+
#ifndef _WIN32_WINNT
|
154
|
+
#define _WIN32_WINNT 0x0501
|
155
|
+
#endif
|
156
|
+
|
157
|
+
#include <windows.h>
|
158
|
+
|
159
|
+
#ifdef __MINGW32__
|
160
|
+
// Require Windows XP or higher with MinGW for getaddrinfo().
|
161
|
+
#if(_WIN32_WINNT >= 0x0501)
|
162
|
+
#else
|
163
|
+
#undef _WIN32_WINNT
|
164
|
+
#define _WIN32_WINNT 0x0501
|
165
|
+
#endif
|
166
|
+
#endif
|
167
|
+
|
168
|
+
#include <winsock2.h>
|
169
|
+
#include <mswsock.h>
|
170
|
+
|
171
|
+
#include <ws2tcpip.h>
|
172
|
+
#include <ipexport.h>
|
173
|
+
#if !defined WINCE
|
174
|
+
#include <process.h>
|
175
|
+
#endif
|
176
|
+
|
177
|
+
// In MinGW environment AI_NUMERICSERV is not defined.
|
178
|
+
#ifndef AI_NUMERICSERV
|
179
|
+
#define AI_NUMERICSERV 0x0400
|
180
|
+
#endif
|
181
|
+
#endif
|
@@ -0,0 +1,99 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2007-2009 iMatix Corporation
|
3
|
+
Copyright (c) 2007-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_WIRE_HPP_INCLUDED__
|
22
|
+
#define __ZMQ_WIRE_HPP_INCLUDED__
|
23
|
+
|
24
|
+
#include "stdint.hpp"
|
25
|
+
|
26
|
+
namespace zmq
|
27
|
+
{
|
28
|
+
|
29
|
+
// Helper functions to convert different integer types to/from network
|
30
|
+
// byte order.
|
31
|
+
|
32
|
+
inline void put_uint8 (unsigned char *buffer_, uint8_t value)
|
33
|
+
{
|
34
|
+
*buffer_ = value;
|
35
|
+
}
|
36
|
+
|
37
|
+
inline uint8_t get_uint8 (unsigned char *buffer_)
|
38
|
+
{
|
39
|
+
return *buffer_;
|
40
|
+
}
|
41
|
+
|
42
|
+
inline void put_uint16 (unsigned char *buffer_, uint16_t value)
|
43
|
+
{
|
44
|
+
buffer_ [0] = (unsigned char) (((value) >> 8) & 0xff);
|
45
|
+
buffer_ [1] = (unsigned char) (value & 0xff);
|
46
|
+
}
|
47
|
+
|
48
|
+
inline uint16_t get_uint16 (unsigned char *buffer_)
|
49
|
+
{
|
50
|
+
return
|
51
|
+
(((uint16_t) buffer_ [0]) << 8) |
|
52
|
+
((uint16_t) buffer_ [1]);
|
53
|
+
}
|
54
|
+
|
55
|
+
inline void put_uint32 (unsigned char *buffer_, uint32_t value)
|
56
|
+
{
|
57
|
+
buffer_ [0] = (unsigned char) (((value) >> 24) & 0xff);
|
58
|
+
buffer_ [1] = (unsigned char) (((value) >> 16) & 0xff);
|
59
|
+
buffer_ [2] = (unsigned char) (((value) >> 8) & 0xff);
|
60
|
+
buffer_ [3] = (unsigned char) (value & 0xff);
|
61
|
+
}
|
62
|
+
|
63
|
+
inline uint32_t get_uint32 (unsigned char *buffer_)
|
64
|
+
{
|
65
|
+
return
|
66
|
+
(((uint32_t) buffer_ [0]) << 24) |
|
67
|
+
(((uint32_t) buffer_ [1]) << 16) |
|
68
|
+
(((uint32_t) buffer_ [2]) << 8) |
|
69
|
+
((uint32_t) buffer_ [3]);
|
70
|
+
}
|
71
|
+
|
72
|
+
inline void put_uint64 (unsigned char *buffer_, uint64_t value)
|
73
|
+
{
|
74
|
+
buffer_ [0] = (unsigned char) (((value) >> 56) & 0xff);
|
75
|
+
buffer_ [1] = (unsigned char) (((value) >> 48) & 0xff);
|
76
|
+
buffer_ [2] = (unsigned char) (((value) >> 40) & 0xff);
|
77
|
+
buffer_ [3] = (unsigned char) (((value) >> 32) & 0xff);
|
78
|
+
buffer_ [4] = (unsigned char) (((value) >> 24) & 0xff);
|
79
|
+
buffer_ [5] = (unsigned char) (((value) >> 16) & 0xff);
|
80
|
+
buffer_ [6] = (unsigned char) (((value) >> 8) & 0xff);
|
81
|
+
buffer_ [7] = (unsigned char) (value & 0xff);
|
82
|
+
}
|
83
|
+
|
84
|
+
inline uint64_t get_uint64 (unsigned char *buffer_)
|
85
|
+
{
|
86
|
+
return
|
87
|
+
(((uint64_t) buffer_ [0]) << 56) |
|
88
|
+
(((uint64_t) buffer_ [1]) << 48) |
|
89
|
+
(((uint64_t) buffer_ [2]) << 40) |
|
90
|
+
(((uint64_t) buffer_ [3]) << 32) |
|
91
|
+
(((uint64_t) buffer_ [4]) << 24) |
|
92
|
+
(((uint64_t) buffer_ [5]) << 16) |
|
93
|
+
(((uint64_t) buffer_ [6]) << 8) |
|
94
|
+
((uint64_t) buffer_ [7]);
|
95
|
+
}
|
96
|
+
|
97
|
+
}
|
98
|
+
|
99
|
+
#endif
|
@@ -0,0 +1,200 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2010-2011 250bpm s.r.o.
|
3
|
+
Copyright (c) 2011 VMware, Inc.
|
4
|
+
Copyright (c) 2010-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
|
+
#include <string.h>
|
23
|
+
|
24
|
+
#include "xpub.hpp"
|
25
|
+
#include "pipe.hpp"
|
26
|
+
#include "err.hpp"
|
27
|
+
#include "msg.hpp"
|
28
|
+
|
29
|
+
zmq::xpub_t::xpub_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
|
30
|
+
socket_base_t (parent_, tid_, sid_),
|
31
|
+
verbose(false),
|
32
|
+
more (false)
|
33
|
+
{
|
34
|
+
options.type = ZMQ_XPUB;
|
35
|
+
}
|
36
|
+
|
37
|
+
zmq::xpub_t::~xpub_t ()
|
38
|
+
{
|
39
|
+
}
|
40
|
+
|
41
|
+
void zmq::xpub_t::xattach_pipe (pipe_t *pipe_, bool icanhasall_)
|
42
|
+
{
|
43
|
+
zmq_assert (pipe_);
|
44
|
+
dist.attach (pipe_);
|
45
|
+
|
46
|
+
// If icanhasall_ is specified, the caller would like to subscribe
|
47
|
+
// to all data on this pipe, implicitly.
|
48
|
+
if (icanhasall_)
|
49
|
+
subscriptions.add (NULL, 0, pipe_);
|
50
|
+
|
51
|
+
// The pipe is active when attached. Let's read the subscriptions from
|
52
|
+
// it, if any.
|
53
|
+
xread_activated (pipe_);
|
54
|
+
}
|
55
|
+
|
56
|
+
void zmq::xpub_t::xread_activated (pipe_t *pipe_)
|
57
|
+
{
|
58
|
+
// There are some subscriptions waiting. Let's process them.
|
59
|
+
msg_t sub;
|
60
|
+
while (pipe_->read (&sub)) {
|
61
|
+
|
62
|
+
// Apply the subscription to the trie.
|
63
|
+
unsigned char *const data = (unsigned char*) sub.data ();
|
64
|
+
const size_t size = sub.size ();
|
65
|
+
if (size > 0 && (*data == 0 || *data == 1)) {
|
66
|
+
bool unique;
|
67
|
+
if (*data == 0)
|
68
|
+
unique = subscriptions.rm (data + 1, size - 1, pipe_);
|
69
|
+
else
|
70
|
+
unique = subscriptions.add (data + 1, size - 1, pipe_);
|
71
|
+
|
72
|
+
// If the subscription is not a duplicate store it so that it can be
|
73
|
+
// passed to used on next recv call. (Unsubscribe is not verbose.)
|
74
|
+
if (options.type == ZMQ_XPUB && (unique || (*data && verbose)))
|
75
|
+
pending.push_back (blob_t (data, size));
|
76
|
+
}
|
77
|
+
|
78
|
+
sub.close ();
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
void zmq::xpub_t::xwrite_activated (pipe_t *pipe_)
|
83
|
+
{
|
84
|
+
dist.activated (pipe_);
|
85
|
+
}
|
86
|
+
|
87
|
+
int zmq::xpub_t::xsetsockopt (int option_, const void *optval_,
|
88
|
+
size_t optvallen_)
|
89
|
+
{
|
90
|
+
if (option_ != ZMQ_XPUB_VERBOSE) {
|
91
|
+
errno = EINVAL;
|
92
|
+
return -1;
|
93
|
+
}
|
94
|
+
if (optvallen_ != sizeof (int) || *static_cast <const int*> (optval_) < 0) {
|
95
|
+
errno = EINVAL;
|
96
|
+
return -1;
|
97
|
+
}
|
98
|
+
verbose = *static_cast <const int*> (optval_);
|
99
|
+
return 0;
|
100
|
+
}
|
101
|
+
|
102
|
+
void zmq::xpub_t::xterminated (pipe_t *pipe_)
|
103
|
+
{
|
104
|
+
// Remove the pipe from the trie. If there are topics that nobody
|
105
|
+
// is interested in anymore, send corresponding unsubscriptions
|
106
|
+
// upstream.
|
107
|
+
subscriptions.rm (pipe_, send_unsubscription, this);
|
108
|
+
|
109
|
+
dist.terminated (pipe_);
|
110
|
+
}
|
111
|
+
|
112
|
+
void zmq::xpub_t::mark_as_matching (pipe_t *pipe_, void *arg_)
|
113
|
+
{
|
114
|
+
xpub_t *self = (xpub_t*) arg_;
|
115
|
+
self->dist.match (pipe_);
|
116
|
+
}
|
117
|
+
|
118
|
+
int zmq::xpub_t::xsend (msg_t *msg_, int flags_)
|
119
|
+
{
|
120
|
+
bool msg_more = msg_->flags () & msg_t::more ? true : false;
|
121
|
+
|
122
|
+
// For the first part of multi-part message, find the matching pipes.
|
123
|
+
if (!more)
|
124
|
+
subscriptions.match ((unsigned char*) msg_->data (), msg_->size (),
|
125
|
+
mark_as_matching, this);
|
126
|
+
|
127
|
+
// Send the message to all the pipes that were marked as matching
|
128
|
+
// in the previous step.
|
129
|
+
int rc = dist.send_to_matching (msg_, flags_);
|
130
|
+
if (rc != 0)
|
131
|
+
return rc;
|
132
|
+
|
133
|
+
// If we are at the end of multi-part message we can mark all the pipes
|
134
|
+
// as non-matching.
|
135
|
+
if (!msg_more)
|
136
|
+
dist.unmatch ();
|
137
|
+
|
138
|
+
more = msg_more;
|
139
|
+
|
140
|
+
return 0;
|
141
|
+
}
|
142
|
+
|
143
|
+
bool zmq::xpub_t::xhas_out ()
|
144
|
+
{
|
145
|
+
return dist.has_out ();
|
146
|
+
}
|
147
|
+
|
148
|
+
int zmq::xpub_t::xrecv (msg_t *msg_, int flags_)
|
149
|
+
{
|
150
|
+
// flags_ is unused
|
151
|
+
(void)flags_;
|
152
|
+
|
153
|
+
// If there is at least one
|
154
|
+
if (pending.empty ()) {
|
155
|
+
errno = EAGAIN;
|
156
|
+
return -1;
|
157
|
+
}
|
158
|
+
|
159
|
+
int rc = msg_->close ();
|
160
|
+
errno_assert (rc == 0);
|
161
|
+
rc = msg_->init_size (pending.front ().size ());
|
162
|
+
errno_assert (rc == 0);
|
163
|
+
memcpy (msg_->data (), pending.front ().data (),
|
164
|
+
pending.front ().size ());
|
165
|
+
pending.pop_front ();
|
166
|
+
return 0;
|
167
|
+
}
|
168
|
+
|
169
|
+
bool zmq::xpub_t::xhas_in ()
|
170
|
+
{
|
171
|
+
return !pending.empty ();
|
172
|
+
}
|
173
|
+
|
174
|
+
void zmq::xpub_t::send_unsubscription (unsigned char *data_, size_t size_,
|
175
|
+
void *arg_)
|
176
|
+
{
|
177
|
+
xpub_t *self = (xpub_t*) arg_;
|
178
|
+
|
179
|
+
if (self->options.type != ZMQ_PUB) {
|
180
|
+
|
181
|
+
// Place the unsubscription to the queue of pending (un)sunscriptions
|
182
|
+
// to be retrived by the user later on.
|
183
|
+
blob_t unsub (size_ + 1, 0);
|
184
|
+
unsub [0] = 0;
|
185
|
+
memcpy (&unsub [1], data_, size_);
|
186
|
+
self->pending.push_back (unsub);
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
zmq::xpub_session_t::xpub_session_t (io_thread_t *io_thread_, bool connect_,
|
191
|
+
socket_base_t *socket_, const options_t &options_,
|
192
|
+
const address_t *addr_) :
|
193
|
+
session_base_t (io_thread_, connect_, socket_, options_, addr_)
|
194
|
+
{
|
195
|
+
}
|
196
|
+
|
197
|
+
zmq::xpub_session_t::~xpub_session_t ()
|
198
|
+
{
|
199
|
+
}
|
200
|
+
|