rbczmq 1.6.2 → 1.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (398) hide show
  1. data/.gitignore +4 -3
  2. data/.gitmodules +6 -0
  3. data/.travis.yml +5 -1
  4. data/CHANGELOG.rdoc +15 -0
  5. data/Gemfile.lock +2 -2
  6. data/README.rdoc +5 -2
  7. data/Rakefile +8 -3
  8. data/ext/czmq/.gitignore +52 -0
  9. data/ext/czmq/.travis.yml +18 -0
  10. data/ext/czmq/AUTHORS +9 -0
  11. data/ext/czmq/COPYING +674 -0
  12. data/ext/czmq/COPYING.LESSER +178 -0
  13. data/ext/czmq/ChangeLog +0 -0
  14. data/ext/czmq/Makefile.am +22 -0
  15. data/ext/czmq/NEWS +263 -0
  16. data/ext/czmq/README +0 -0
  17. data/ext/czmq/README.md +1122 -0
  18. data/ext/czmq/README.txt +327 -0
  19. data/ext/czmq/autogen.sh +46 -0
  20. data/ext/czmq/builds/android/Android.mk +35 -0
  21. data/ext/czmq/builds/android/Application.mk +1 -0
  22. data/ext/czmq/builds/android/build.sh +59 -0
  23. data/ext/czmq/builds/android/clean.sh +26 -0
  24. data/ext/czmq/builds/mingw32/Makefile.mingw32 +38 -0
  25. data/ext/czmq/builds/mingw32/platform.h +0 -0
  26. data/ext/czmq/builds/msvc/.gitignore +18 -0
  27. data/ext/czmq/builds/msvc/README.txt +17 -0
  28. data/ext/czmq/builds/msvc/czmq.sln +69 -0
  29. data/ext/czmq/builds/msvc/czmq.vcproj +2246 -0
  30. data/ext/czmq/builds/msvc/czmq.vcxproj +329 -0
  31. data/ext/czmq/builds/msvc/czmq.vcxproj.filters +117 -0
  32. data/ext/czmq/builds/msvc/czmq11.sln +36 -0
  33. data/ext/czmq/builds/msvc/czmq_selftest.vcproj +840 -0
  34. data/ext/czmq/builds/msvc/czmq_selftest.vcxproj +189 -0
  35. data/ext/czmq/builds/msvc/czmq_selftest.vcxproj.filters +14 -0
  36. data/ext/czmq/c +520 -0
  37. data/ext/czmq/configure.ac +229 -0
  38. data/ext/czmq/doc/Makefile.am +49 -0
  39. data/ext/czmq/doc/asciidoc.conf +57 -0
  40. data/ext/czmq/doc/czmq.txt +334 -0
  41. data/ext/czmq/doc/mkman +100 -0
  42. data/ext/czmq/doc/mksite +65 -0
  43. data/ext/czmq/doc/wdput +43 -0
  44. data/ext/czmq/doc/xml2wd.pl +242 -0
  45. data/ext/czmq/doc/zbeacon.txt +173 -0
  46. data/ext/czmq/doc/zclock.txt +51 -0
  47. data/ext/czmq/doc/zconfig.txt +92 -0
  48. data/ext/czmq/doc/zctx.txt +111 -0
  49. data/ext/czmq/doc/zfile.txt +77 -0
  50. data/ext/czmq/doc/zframe.txt +222 -0
  51. data/ext/czmq/doc/zhash.txt +225 -0
  52. data/ext/czmq/doc/zlist.txt +176 -0
  53. data/ext/czmq/doc/zloop.txt +106 -0
  54. data/ext/czmq/doc/zmsg.txt +315 -0
  55. data/ext/czmq/doc/zmutex.txt +54 -0
  56. data/ext/czmq/doc/zsocket.txt +110 -0
  57. data/ext/czmq/doc/zsockopt.txt +528 -0
  58. data/ext/czmq/doc/zstr.txt +80 -0
  59. data/ext/czmq/doc/zsys.txt +44 -0
  60. data/ext/czmq/doc/zthread.txt +126 -0
  61. data/ext/czmq/doc/ztree.txt +236 -0
  62. data/ext/czmq/images/README_1.png +0 -0
  63. data/ext/czmq/images/README_2.png +0 -0
  64. data/ext/czmq/include/czmq.h +64 -0
  65. data/ext/czmq/include/czmq_prelude.h +504 -0
  66. data/ext/czmq/include/zbeacon.h +91 -0
  67. data/ext/czmq/include/zclock.h +56 -0
  68. data/ext/czmq/include/zconfig.h +117 -0
  69. data/ext/czmq/include/zctx.h +96 -0
  70. data/ext/czmq/include/zfile.h +82 -0
  71. data/ext/czmq/include/zframe.h +145 -0
  72. data/ext/czmq/include/zhash.h +127 -0
  73. data/ext/czmq/include/zlist.h +113 -0
  74. data/ext/czmq/include/zloop.h +98 -0
  75. data/ext/czmq/include/zmsg.h +165 -0
  76. data/ext/czmq/include/zmutex.h +62 -0
  77. data/ext/czmq/include/zsocket.h +104 -0
  78. data/ext/czmq/include/zsockopt.h +249 -0
  79. data/ext/czmq/include/zstr.h +69 -0
  80. data/ext/czmq/include/zsys.h +66 -0
  81. data/ext/czmq/include/zthread.h +62 -0
  82. data/ext/czmq/include/ztree.h +133 -0
  83. data/ext/czmq/mkdoc +14 -0
  84. data/ext/czmq/model/generate +2 -0
  85. data/ext/czmq/model/sockopts.xml +101 -0
  86. data/ext/czmq/notes.txt +21 -0
  87. data/ext/czmq/scripts/sockopts.gsl +325 -0
  88. data/ext/czmq/src/Makefile.am +61 -0
  89. data/ext/czmq/src/czmq_selftest.c +60 -0
  90. data/ext/czmq/src/libczmq.pc.in +11 -0
  91. data/ext/czmq/src/selftest +7 -0
  92. data/ext/czmq/src/selftest.cfg +5 -0
  93. data/ext/czmq/src/valgrind.supp +14 -0
  94. data/ext/czmq/src/vg +2 -0
  95. data/ext/czmq/src/zbeacon.c +787 -0
  96. data/ext/czmq/src/zclock.c +143 -0
  97. data/ext/czmq/src/zconfig.c +691 -0
  98. data/ext/czmq/src/zctx.c +287 -0
  99. data/ext/czmq/src/zfile.c +237 -0
  100. data/ext/czmq/src/zframe.c +551 -0
  101. data/ext/czmq/src/zhash.c +664 -0
  102. data/ext/czmq/src/zlist.c +459 -0
  103. data/ext/czmq/src/zloop.c +496 -0
  104. data/ext/czmq/src/zmsg.c +854 -0
  105. data/ext/czmq/src/zmutex.c +134 -0
  106. data/ext/czmq/src/zsocket.c +313 -0
  107. data/ext/czmq/src/zsockopt.c +1756 -0
  108. data/ext/czmq/src/zstr.c +297 -0
  109. data/ext/czmq/src/zsys.c +136 -0
  110. data/ext/czmq/src/zthread.c +269 -0
  111. data/ext/czmq/src/ztree.c +888 -0
  112. data/ext/czmq/version.sh +21 -0
  113. data/ext/rbczmq/extconf.rb +1 -18
  114. data/ext/rbczmq/poller.c +4 -1
  115. data/ext/rbczmq/socket.c +28 -5
  116. data/ext/rbczmq/socket.h +1 -0
  117. data/ext/zeromq/AUTHORS +110 -0
  118. data/ext/zeromq/CMakeLists.txt +392 -0
  119. data/ext/zeromq/COPYING +674 -0
  120. data/ext/zeromq/COPYING.LESSER +179 -0
  121. data/ext/zeromq/INSTALL +246 -0
  122. data/ext/zeromq/MAINTAINERS +56 -0
  123. data/ext/zeromq/Makefile.am +40 -0
  124. data/ext/zeromq/NEWS +333 -0
  125. data/ext/zeromq/README +39 -0
  126. data/ext/zeromq/acinclude.m4 +930 -0
  127. data/ext/zeromq/autogen.sh +45 -0
  128. data/ext/zeromq/branding.bmp +0 -0
  129. data/ext/zeromq/builds/msvc/Makefile.am +33 -0
  130. data/ext/zeromq/builds/msvc/c_local_lat/c_local_lat.vcproj +176 -0
  131. data/ext/zeromq/builds/msvc/c_local_lat/c_local_lat.vcxproj +87 -0
  132. data/ext/zeromq/builds/msvc/c_local_thr/c_local_thr.vcproj +176 -0
  133. data/ext/zeromq/builds/msvc/c_local_thr/c_local_thr.vcxproj +87 -0
  134. data/ext/zeromq/builds/msvc/c_remote_lat/c_remote_lat.vcproj +176 -0
  135. data/ext/zeromq/builds/msvc/c_remote_lat/c_remote_lat.vcxproj +87 -0
  136. data/ext/zeromq/builds/msvc/c_remote_thr/c_remote_thr.vcproj +176 -0
  137. data/ext/zeromq/builds/msvc/c_remote_thr/c_remote_thr.vcxproj +87 -0
  138. data/ext/zeromq/builds/msvc/errno.cpp +32 -0
  139. data/ext/zeromq/builds/msvc/errno.hpp +56 -0
  140. data/ext/zeromq/builds/msvc/inproc_lat/inproc_lat.vcproj +174 -0
  141. data/ext/zeromq/builds/msvc/inproc_lat/inproc_lat.vcxproj +86 -0
  142. data/ext/zeromq/builds/msvc/inproc_thr/inproc_thr.vcproj +174 -0
  143. data/ext/zeromq/builds/msvc/inproc_thr/inproc_thr.vcxproj +86 -0
  144. data/ext/zeromq/builds/msvc/libzmq/libzmq.vcproj +804 -0
  145. data/ext/zeromq/builds/msvc/libzmq/libzmq.vcxproj +252 -0
  146. data/ext/zeromq/builds/msvc/libzmq/libzmq.vcxproj.filters +431 -0
  147. data/ext/zeromq/builds/msvc/msvc.sln +89 -0
  148. data/ext/zeromq/builds/msvc/msvc10.sln +116 -0
  149. data/ext/zeromq/builds/msvc/platform.hpp +32 -0
  150. data/ext/zeromq/builds/msvc/properties/Common.props +21 -0
  151. data/ext/zeromq/builds/msvc/properties/Debug.props +19 -0
  152. data/ext/zeromq/builds/msvc/properties/Dynamic.props +20 -0
  153. data/ext/zeromq/builds/msvc/properties/Executable.props +19 -0
  154. data/ext/zeromq/builds/msvc/properties/Precompiled.props +14 -0
  155. data/ext/zeromq/builds/msvc/properties/Release.props +22 -0
  156. data/ext/zeromq/builds/msvc/properties/Win32.props +12 -0
  157. data/ext/zeromq/builds/msvc/properties/Win32_Release.props +17 -0
  158. data/ext/zeromq/builds/msvc/properties/WithOpenPGM.props +12 -0
  159. data/ext/zeromq/builds/msvc/properties/ZeroMQ.props +23 -0
  160. data/ext/zeromq/builds/msvc/properties/x64.props +12 -0
  161. data/ext/zeromq/builds/redhat/zeromq.spec.in +160 -0
  162. data/ext/zeromq/builds/valgrind/valgrind.supp +14 -0
  163. data/ext/zeromq/builds/valgrind/vg +1 -0
  164. data/ext/zeromq/cmake/Modules/TestZMQVersion.cmake +35 -0
  165. data/ext/zeromq/cmake/Modules/zmq_version.cpp +31 -0
  166. data/ext/zeromq/cmake/NSIS.template32.in +952 -0
  167. data/ext/zeromq/cmake/NSIS.template64.in +960 -0
  168. data/ext/zeromq/configure.in +428 -0
  169. data/ext/zeromq/doc/Makefile.am +51 -0
  170. data/ext/zeromq/doc/asciidoc.conf +56 -0
  171. data/ext/zeromq/doc/zmq.txt +233 -0
  172. data/ext/zeromq/doc/zmq_bind.txt +102 -0
  173. data/ext/zeromq/doc/zmq_close.txt +52 -0
  174. data/ext/zeromq/doc/zmq_connect.txt +98 -0
  175. data/ext/zeromq/doc/zmq_ctx_destroy.txt +66 -0
  176. data/ext/zeromq/doc/zmq_ctx_get.txt +67 -0
  177. data/ext/zeromq/doc/zmq_ctx_new.txt +49 -0
  178. data/ext/zeromq/doc/zmq_ctx_set.txt +75 -0
  179. data/ext/zeromq/doc/zmq_disconnect.txt +67 -0
  180. data/ext/zeromq/doc/zmq_epgm.txt +162 -0
  181. data/ext/zeromq/doc/zmq_errno.txt +50 -0
  182. data/ext/zeromq/doc/zmq_getsockopt.txt +516 -0
  183. data/ext/zeromq/doc/zmq_init.txt +52 -0
  184. data/ext/zeromq/doc/zmq_inproc.txt +85 -0
  185. data/ext/zeromq/doc/zmq_ipc.txt +85 -0
  186. data/ext/zeromq/doc/zmq_msg_close.txt +55 -0
  187. data/ext/zeromq/doc/zmq_msg_copy.txt +57 -0
  188. data/ext/zeromq/doc/zmq_msg_data.txt +48 -0
  189. data/ext/zeromq/doc/zmq_msg_get.txt +72 -0
  190. data/ext/zeromq/doc/zmq_msg_init.txt +65 -0
  191. data/ext/zeromq/doc/zmq_msg_init_data.txt +85 -0
  192. data/ext/zeromq/doc/zmq_msg_init_size.txt +58 -0
  193. data/ext/zeromq/doc/zmq_msg_more.txt +63 -0
  194. data/ext/zeromq/doc/zmq_msg_move.txt +52 -0
  195. data/ext/zeromq/doc/zmq_msg_recv.txt +125 -0
  196. data/ext/zeromq/doc/zmq_msg_send.txt +122 -0
  197. data/ext/zeromq/doc/zmq_msg_set.txt +45 -0
  198. data/ext/zeromq/doc/zmq_msg_size.txt +48 -0
  199. data/ext/zeromq/doc/zmq_pgm.txt +162 -0
  200. data/ext/zeromq/doc/zmq_poll.txt +132 -0
  201. data/ext/zeromq/doc/zmq_proxy.txt +97 -0
  202. data/ext/zeromq/doc/zmq_recv.txt +93 -0
  203. data/ext/zeromq/doc/zmq_recvmsg.txt +123 -0
  204. data/ext/zeromq/doc/zmq_send.txt +100 -0
  205. data/ext/zeromq/doc/zmq_sendmsg.txt +119 -0
  206. data/ext/zeromq/doc/zmq_setsockopt.txt +523 -0
  207. data/ext/zeromq/doc/zmq_socket.txt +369 -0
  208. data/ext/zeromq/doc/zmq_socket_monitor.txt +288 -0
  209. data/ext/zeromq/doc/zmq_strerror.txt +55 -0
  210. data/ext/zeromq/doc/zmq_tcp.txt +101 -0
  211. data/ext/zeromq/doc/zmq_term.txt +66 -0
  212. data/ext/zeromq/doc/zmq_unbind.txt +65 -0
  213. data/ext/zeromq/doc/zmq_version.txt +53 -0
  214. data/ext/zeromq/foreign/openpgm/Makefile.am +8 -0
  215. data/ext/zeromq/foreign/openpgm/libpgm-5.1.118~dfsg.tar.gz +0 -0
  216. data/ext/zeromq/include/zmq.h +402 -0
  217. data/ext/zeromq/include/zmq_utils.h +64 -0
  218. data/ext/zeromq/installer.ico +0 -0
  219. data/ext/zeromq/perf/Makefile.am +22 -0
  220. data/ext/zeromq/perf/inproc_lat.cpp +233 -0
  221. data/ext/zeromq/perf/inproc_thr.cpp +241 -0
  222. data/ext/zeromq/perf/local_lat.cpp +109 -0
  223. data/ext/zeromq/perf/local_thr.cpp +133 -0
  224. data/ext/zeromq/perf/remote_lat.cpp +122 -0
  225. data/ext/zeromq/perf/remote_thr.cpp +105 -0
  226. data/ext/zeromq/src/Makefile.am +171 -0
  227. data/ext/zeromq/src/address.cpp +78 -0
  228. data/ext/zeromq/src/address.hpp +52 -0
  229. data/ext/zeromq/src/array.hpp +155 -0
  230. data/ext/zeromq/src/atomic_counter.hpp +197 -0
  231. data/ext/zeromq/src/atomic_ptr.hpp +196 -0
  232. data/ext/zeromq/src/blob.hpp +129 -0
  233. data/ext/zeromq/src/clock.cpp +147 -0
  234. data/ext/zeromq/src/clock.hpp +60 -0
  235. data/ext/zeromq/src/command.hpp +154 -0
  236. data/ext/zeromq/src/config.hpp +89 -0
  237. data/ext/zeromq/src/ctx.cpp +352 -0
  238. data/ext/zeromq/src/ctx.hpp +173 -0
  239. data/ext/zeromq/src/dealer.cpp +133 -0
  240. data/ext/zeromq/src/dealer.hpp +92 -0
  241. data/ext/zeromq/src/decoder.cpp +166 -0
  242. data/ext/zeromq/src/decoder.hpp +248 -0
  243. data/ext/zeromq/src/devpoll.cpp +190 -0
  244. data/ext/zeromq/src/devpoll.hpp +105 -0
  245. data/ext/zeromq/src/dist.cpp +194 -0
  246. data/ext/zeromq/src/dist.hpp +105 -0
  247. data/ext/zeromq/src/encoder.cpp +102 -0
  248. data/ext/zeromq/src/encoder.hpp +200 -0
  249. data/ext/zeromq/src/epoll.cpp +178 -0
  250. data/ext/zeromq/src/epoll.hpp +101 -0
  251. data/ext/zeromq/src/err.cpp +291 -0
  252. data/ext/zeromq/src/err.hpp +155 -0
  253. data/ext/zeromq/src/fd.hpp +45 -0
  254. data/ext/zeromq/src/fq.cpp +141 -0
  255. data/ext/zeromq/src/fq.hpp +74 -0
  256. data/ext/zeromq/src/i_decoder.hpp +49 -0
  257. data/ext/zeromq/src/i_encoder.hpp +55 -0
  258. data/ext/zeromq/src/i_engine.hpp +55 -0
  259. data/ext/zeromq/src/i_msg_sink.hpp +43 -0
  260. data/ext/zeromq/src/i_msg_source.hpp +44 -0
  261. data/ext/zeromq/src/i_poll_events.hpp +47 -0
  262. data/ext/zeromq/src/io_object.cpp +108 -0
  263. data/ext/zeromq/src/io_object.hpp +81 -0
  264. data/ext/zeromq/src/io_thread.cpp +104 -0
  265. data/ext/zeromq/src/io_thread.hpp +91 -0
  266. data/ext/zeromq/src/ip.cpp +109 -0
  267. data/ext/zeromq/src/ip.hpp +41 -0
  268. data/ext/zeromq/src/ipc_address.cpp +84 -0
  269. data/ext/zeromq/src/ipc_address.hpp +67 -0
  270. data/ext/zeromq/src/ipc_connecter.cpp +265 -0
  271. data/ext/zeromq/src/ipc_connecter.hpp +128 -0
  272. data/ext/zeromq/src/ipc_listener.cpp +206 -0
  273. data/ext/zeromq/src/ipc_listener.hpp +99 -0
  274. data/ext/zeromq/src/kqueue.cpp +201 -0
  275. data/ext/zeromq/src/kqueue.hpp +107 -0
  276. data/ext/zeromq/src/lb.cpp +148 -0
  277. data/ext/zeromq/src/lb.hpp +73 -0
  278. data/ext/zeromq/src/libzmq.pc.in +10 -0
  279. data/ext/zeromq/src/likely.hpp +33 -0
  280. data/ext/zeromq/src/mailbox.cpp +87 -0
  281. data/ext/zeromq/src/mailbox.hpp +75 -0
  282. data/ext/zeromq/src/msg.cpp +299 -0
  283. data/ext/zeromq/src/msg.hpp +148 -0
  284. data/ext/zeromq/src/mtrie.cpp +428 -0
  285. data/ext/zeromq/src/mtrie.hpp +93 -0
  286. data/ext/zeromq/src/mutex.hpp +118 -0
  287. data/ext/zeromq/src/object.cpp +393 -0
  288. data/ext/zeromq/src/object.hpp +134 -0
  289. data/ext/zeromq/src/options.cpp +562 -0
  290. data/ext/zeromq/src/options.hpp +135 -0
  291. data/ext/zeromq/src/own.cpp +206 -0
  292. data/ext/zeromq/src/own.hpp +145 -0
  293. data/ext/zeromq/src/pair.cpp +136 -0
  294. data/ext/zeromq/src/pair.hpp +79 -0
  295. data/ext/zeromq/src/pgm_receiver.cpp +283 -0
  296. data/ext/zeromq/src/pgm_receiver.hpp +141 -0
  297. data/ext/zeromq/src/pgm_sender.cpp +218 -0
  298. data/ext/zeromq/src/pgm_sender.hpp +113 -0
  299. data/ext/zeromq/src/pgm_socket.cpp +706 -0
  300. data/ext/zeromq/src/pgm_socket.hpp +124 -0
  301. data/ext/zeromq/src/pipe.cpp +447 -0
  302. data/ext/zeromq/src/pipe.hpp +207 -0
  303. data/ext/zeromq/src/poll.cpp +176 -0
  304. data/ext/zeromq/src/poll.hpp +105 -0
  305. data/ext/zeromq/src/poller.hpp +82 -0
  306. data/ext/zeromq/src/poller_base.cpp +99 -0
  307. data/ext/zeromq/src/poller_base.hpp +86 -0
  308. data/ext/zeromq/src/precompiled.cpp +21 -0
  309. data/ext/zeromq/src/precompiled.hpp +47 -0
  310. data/ext/zeromq/src/proxy.cpp +150 -0
  311. data/ext/zeromq/src/proxy.hpp +32 -0
  312. data/ext/zeromq/src/pub.cpp +57 -0
  313. data/ext/zeromq/src/pub.hpp +69 -0
  314. data/ext/zeromq/src/pull.cpp +79 -0
  315. data/ext/zeromq/src/pull.hpp +81 -0
  316. data/ext/zeromq/src/push.cpp +76 -0
  317. data/ext/zeromq/src/push.hpp +80 -0
  318. data/ext/zeromq/src/random.cpp +52 -0
  319. data/ext/zeromq/src/random.hpp +37 -0
  320. data/ext/zeromq/src/reaper.cpp +117 -0
  321. data/ext/zeromq/src/reaper.hpp +80 -0
  322. data/ext/zeromq/src/rep.cpp +137 -0
  323. data/ext/zeromq/src/rep.hpp +80 -0
  324. data/ext/zeromq/src/req.cpp +185 -0
  325. data/ext/zeromq/src/req.hpp +91 -0
  326. data/ext/zeromq/src/router.cpp +364 -0
  327. data/ext/zeromq/src/router.hpp +138 -0
  328. data/ext/zeromq/src/select.cpp +216 -0
  329. data/ext/zeromq/src/select.hpp +126 -0
  330. data/ext/zeromq/src/session_base.cpp +503 -0
  331. data/ext/zeromq/src/session_base.hpp +156 -0
  332. data/ext/zeromq/src/signaler.cpp +406 -0
  333. data/ext/zeromq/src/signaler.hpp +63 -0
  334. data/ext/zeromq/src/socket_base.cpp +1236 -0
  335. data/ext/zeromq/src/socket_base.hpp +255 -0
  336. data/ext/zeromq/src/stdint.hpp +63 -0
  337. data/ext/zeromq/src/stream_engine.cpp +594 -0
  338. data/ext/zeromq/src/stream_engine.hpp +149 -0
  339. data/ext/zeromq/src/sub.cpp +93 -0
  340. data/ext/zeromq/src/sub.hpp +71 -0
  341. data/ext/zeromq/src/tcp.cpp +131 -0
  342. data/ext/zeromq/src/tcp.hpp +38 -0
  343. data/ext/zeromq/src/tcp_address.cpp +613 -0
  344. data/ext/zeromq/src/tcp_address.hpp +100 -0
  345. data/ext/zeromq/src/tcp_connecter.cpp +319 -0
  346. data/ext/zeromq/src/tcp_connecter.hpp +123 -0
  347. data/ext/zeromq/src/tcp_listener.cpp +293 -0
  348. data/ext/zeromq/src/tcp_listener.hpp +91 -0
  349. data/ext/zeromq/src/thread.cpp +107 -0
  350. data/ext/zeromq/src/thread.hpp +79 -0
  351. data/ext/zeromq/src/trie.cpp +337 -0
  352. data/ext/zeromq/src/trie.hpp +79 -0
  353. data/ext/zeromq/src/v1_decoder.cpp +162 -0
  354. data/ext/zeromq/src/v1_decoder.hpp +68 -0
  355. data/ext/zeromq/src/v1_encoder.cpp +103 -0
  356. data/ext/zeromq/src/v1_encoder.hpp +60 -0
  357. data/ext/zeromq/src/v1_protocol.hpp +43 -0
  358. data/ext/zeromq/src/version.rc.in +93 -0
  359. data/ext/zeromq/src/windows.hpp +181 -0
  360. data/ext/zeromq/src/wire.hpp +99 -0
  361. data/ext/zeromq/src/xpub.cpp +200 -0
  362. data/ext/zeromq/src/xpub.hpp +110 -0
  363. data/ext/zeromq/src/xsub.cpp +242 -0
  364. data/ext/zeromq/src/xsub.hpp +108 -0
  365. data/ext/zeromq/src/ypipe.hpp +210 -0
  366. data/ext/zeromq/src/yqueue.hpp +199 -0
  367. data/ext/zeromq/src/zmq.cpp +1058 -0
  368. data/ext/zeromq/src/zmq_utils.cpp +61 -0
  369. data/ext/zeromq/tests/Makefile.am +55 -0
  370. data/ext/zeromq/tests/test_connect_delay.cpp +260 -0
  371. data/ext/zeromq/tests/test_connect_resolve.cpp +54 -0
  372. data/ext/zeromq/tests/test_disconnect_inproc.cpp +120 -0
  373. data/ext/zeromq/tests/test_hwm.cpp +83 -0
  374. data/ext/zeromq/tests/test_invalid_rep.cpp +92 -0
  375. data/ext/zeromq/tests/test_last_endpoint.cpp +60 -0
  376. data/ext/zeromq/tests/test_monitor.cpp +289 -0
  377. data/ext/zeromq/tests/test_msg_flags.cpp +78 -0
  378. data/ext/zeromq/tests/test_pair_inproc.cpp +53 -0
  379. data/ext/zeromq/tests/test_pair_ipc.cpp +53 -0
  380. data/ext/zeromq/tests/test_pair_tcp.cpp +54 -0
  381. data/ext/zeromq/tests/test_reqrep_device.cpp +143 -0
  382. data/ext/zeromq/tests/test_reqrep_inproc.cpp +53 -0
  383. data/ext/zeromq/tests/test_reqrep_ipc.cpp +53 -0
  384. data/ext/zeromq/tests/test_reqrep_tcp.cpp +54 -0
  385. data/ext/zeromq/tests/test_router_mandatory.cpp +62 -0
  386. data/ext/zeromq/tests/test_shutdown_stress.cpp +93 -0
  387. data/ext/zeromq/tests/test_sub_forward.cpp +99 -0
  388. data/ext/zeromq/tests/test_term_endpoint.cpp +118 -0
  389. data/ext/zeromq/tests/test_timeo.cpp +119 -0
  390. data/ext/zeromq/tests/testutil.hpp +77 -0
  391. data/ext/zeromq/version.sh +21 -0
  392. data/lib/zmq/version.rb +1 -1
  393. data/rbczmq.gemspec +16 -3
  394. data/test/test_socket.rb +13 -1
  395. metadata +398 -9
  396. checksums.yaml +0 -15
  397. data/ext/czmq-1.4.1.tar.gz +0 -0
  398. data/ext/zeromq-3.2.3.tar.gz +0 -0
@@ -0,0 +1,523 @@
1
+ zmq_setsockopt(3)
2
+ =================
3
+
4
+
5
+ NAME
6
+ ----
7
+
8
+ zmq_setsockopt - set 0MQ socket options
9
+
10
+
11
+ SYNOPSIS
12
+ --------
13
+ *int zmq_setsockopt (void '*socket', int 'option_name', const void '*option_value', size_t 'option_len');*
14
+
15
+ Caution: All options, with the exception of ZMQ_SUBSCRIBE, ZMQ_UNSUBSCRIBE,
16
+ ZMQ_LINGER, ZMQ_ROUTER_MANDATORY and ZMQ_XPUB_VERBOSE only take effect for
17
+ subsequent socket bind/connects.
18
+
19
+ DESCRIPTION
20
+ -----------
21
+ The _zmq_setsockopt()_ function shall set the option specified by the
22
+ 'option_name' argument to the value pointed to by the 'option_value' argument
23
+ for the 0MQ socket pointed to by the 'socket' argument. The 'option_len'
24
+ argument is the size of the option value in bytes.
25
+
26
+ The following socket options can be set with the _zmq_setsockopt()_ function:
27
+
28
+
29
+ ZMQ_SNDHWM: Set high water mark for outbound messages
30
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31
+ The 'ZMQ_SNDHWM' option shall set the high water mark for outbound messages on
32
+ the specified 'socket'. The high water mark is a hard limit on the maximum
33
+ number of outstanding messages 0MQ shall queue in memory for any single peer
34
+ that the specified 'socket' is communicating with.
35
+
36
+ If this limit has been reached the socket shall enter an exceptional state and
37
+ depending on the socket type, 0MQ shall take appropriate action such as
38
+ blocking or dropping sent messages. Refer to the individual socket descriptions
39
+ in linkzmq:zmq_socket[3] for details on the exact action taken for each socket
40
+ type.
41
+
42
+ NOTE: 0MQ does not guarantee that the socket will accept as many as ZMQ_SNDHWM
43
+ messages, and the actual limit may be as much as 60-70% lower depending on the
44
+ flow of messages on the socket.
45
+
46
+ [horizontal]
47
+ Option value type:: int
48
+ Option value unit:: messages
49
+ Default value:: 1000
50
+ Applicable socket types:: all
51
+
52
+
53
+ ZMQ_RCVHWM: Set high water mark for inbound messages
54
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
55
+ The 'ZMQ_RCVHWM' option shall set the high water mark for inbound messages on
56
+ the specified 'socket'. The high water mark is a hard limit on the maximum
57
+ number of outstanding messages 0MQ shall queue in memory for any single peer
58
+ that the specified 'socket' is communicating with.
59
+
60
+ If this limit has been reached the socket shall enter an exceptional state and
61
+ depending on the socket type, 0MQ shall take appropriate action such as
62
+ blocking or dropping sent messages. Refer to the individual socket descriptions
63
+ in linkzmq:zmq_socket[3] for details on the exact action taken for each socket
64
+ type.
65
+
66
+ [horizontal]
67
+ Option value type:: int
68
+ Option value unit:: messages
69
+ Default value:: 1000
70
+ Applicable socket types:: all
71
+
72
+
73
+ ZMQ_AFFINITY: Set I/O thread affinity
74
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
75
+ The 'ZMQ_AFFINITY' option shall set the I/O thread affinity for newly created
76
+ connections on the specified 'socket'.
77
+
78
+ Affinity determines which threads from the 0MQ I/O thread pool associated with
79
+ the socket's _context_ shall handle newly created connections. A value of zero
80
+ specifies no affinity, meaning that work shall be distributed fairly among all
81
+ 0MQ I/O threads in the thread pool. For non-zero values, the lowest bit
82
+ corresponds to thread 1, second lowest bit to thread 2 and so on. For example,
83
+ a value of 3 specifies that subsequent connections on 'socket' shall be handled
84
+ exclusively by I/O threads 1 and 2.
85
+
86
+ See also linkzmq:zmq_init[3] for details on allocating the number of I/O
87
+ threads for a specific _context_.
88
+
89
+ [horizontal]
90
+ Option value type:: uint64_t
91
+ Option value unit:: N/A (bitmap)
92
+ Default value:: 0
93
+ Applicable socket types:: N/A
94
+
95
+
96
+ ZMQ_SUBSCRIBE: Establish message filter
97
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
98
+ The 'ZMQ_SUBSCRIBE' option shall establish a new message filter on a 'ZMQ_SUB'
99
+ socket. Newly created 'ZMQ_SUB' sockets shall filter out all incoming messages,
100
+ therefore you should call this option to establish an initial message filter.
101
+
102
+ An empty 'option_value' of length zero shall subscribe to all incoming
103
+ messages. A non-empty 'option_value' shall subscribe to all messages beginning
104
+ with the specified prefix. Multiple filters may be attached to a single
105
+ 'ZMQ_SUB' socket, in which case a message shall be accepted if it matches at
106
+ least one filter.
107
+
108
+ [horizontal]
109
+ Option value type:: binary data
110
+ Option value unit:: N/A
111
+ Default value:: N/A
112
+ Applicable socket types:: ZMQ_SUB
113
+
114
+
115
+ ZMQ_UNSUBSCRIBE: Remove message filter
116
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
117
+ The 'ZMQ_UNSUBSCRIBE' option shall remove an existing message filter on a
118
+ 'ZMQ_SUB' socket. The filter specified must match an existing filter previously
119
+ established with the 'ZMQ_SUBSCRIBE' option. If the socket has several
120
+ instances of the same filter attached the 'ZMQ_UNSUBSCRIBE' option shall remove
121
+ only one instance, leaving the rest in place and functional.
122
+
123
+ [horizontal]
124
+ Option value type:: binary data
125
+ Option value unit:: N/A
126
+ Default value:: N/A
127
+ Applicable socket types:: ZMQ_SUB
128
+
129
+
130
+ ZMQ_IDENTITY: Set socket identity
131
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
132
+ The 'ZMQ_IDENTITY' option shall set the identity of the specified 'socket'.
133
+ Socket identity is used only by request/reply pattern. Namely, it can be used
134
+ in tandem with ROUTER socket to route messages to the peer with specific
135
+ identity.
136
+
137
+ Identity should be at least one byte and at most 255 bytes long. Identities
138
+ starting with binary zero are reserved for use by 0MQ infrastructure.
139
+
140
+ If two peers use the same identity when connecting to a third peer, the
141
+ results shall be undefined.
142
+
143
+ [horizontal]
144
+ Option value type:: binary data
145
+ Option value unit:: N/A
146
+ Default value:: NULL
147
+ Applicable socket types:: all
148
+
149
+
150
+ ZMQ_RATE: Set multicast data rate
151
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
152
+ The 'ZMQ_RATE' option shall set the maximum send or receive data rate for
153
+ multicast transports such as linkzmq:zmq_pgm[7] using the specified 'socket'.
154
+
155
+ [horizontal]
156
+ Option value type:: int
157
+ Option value unit:: kilobits per second
158
+ Default value:: 100
159
+ Applicable socket types:: all, when using multicast transports
160
+
161
+
162
+ ZMQ_RECOVERY_IVL: Set multicast recovery interval
163
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
164
+ The 'ZMQ_RECOVERY_IVL' option shall set the recovery interval for multicast
165
+ transports using the specified 'socket'. The recovery interval determines the
166
+ maximum time in milliseconds that a receiver can be absent from a multicast
167
+ group before unrecoverable data loss will occur.
168
+
169
+ CAUTION: Exercise care when setting large recovery intervals as the data
170
+ needed for recovery will be held in memory. For example, a 1 minute recovery
171
+ interval at a data rate of 1Gbps requires a 7GB in-memory buffer.
172
+
173
+ [horizontal]
174
+ Option value type:: int
175
+ Option value unit:: milliseconds
176
+ Default value:: 10000
177
+ Applicable socket types:: all, when using multicast transports
178
+
179
+ ZMQ_SNDBUF: Set kernel transmit buffer size
180
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
181
+ The 'ZMQ_SNDBUF' option shall set the underlying kernel transmit buffer size
182
+ for the 'socket' to the specified size in bytes. A value of zero means leave
183
+ the OS default unchanged. For details please refer to your operating system
184
+ documentation for the 'SO_SNDBUF' socket option.
185
+
186
+ [horizontal]
187
+ Option value type:: int
188
+ Option value unit:: bytes
189
+ Default value:: 0
190
+ Applicable socket types:: all
191
+
192
+
193
+ ZMQ_RCVBUF: Set kernel receive buffer size
194
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
195
+ The 'ZMQ_RCVBUF' option shall set the underlying kernel receive buffer size for
196
+ the 'socket' to the specified size in bytes. A value of zero means leave the
197
+ OS default unchanged. For details refer to your operating system documentation
198
+ for the 'SO_RCVBUF' socket option.
199
+
200
+ [horizontal]
201
+ Option value type:: int
202
+ Option value unit:: bytes
203
+ Default value:: 0
204
+ Applicable socket types:: all
205
+
206
+
207
+ ZMQ_LINGER: Set linger period for socket shutdown
208
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
209
+ The 'ZMQ_LINGER' option shall set the linger period for the specified 'socket'.
210
+ The linger period determines how long pending messages which have yet to be
211
+ sent to a peer shall linger in memory after a socket is closed with
212
+ linkzmq:zmq_close[3], and further affects the termination of the socket's
213
+ context with linkzmq:zmq_term[3]. The following outlines the different
214
+ behaviours:
215
+
216
+ * The default value of '-1' specifies an infinite linger period. Pending
217
+ messages shall not be discarded after a call to _zmq_close()_; attempting to
218
+ terminate the socket's context with _zmq_term()_ shall block until all
219
+ pending messages have been sent to a peer.
220
+
221
+ * The value of '0' specifies no linger period. Pending messages shall be
222
+ discarded immediately when the socket is closed with _zmq_close()_.
223
+
224
+ * Positive values specify an upper bound for the linger period in milliseconds.
225
+ Pending messages shall not be discarded after a call to _zmq_close()_;
226
+ attempting to terminate the socket's context with _zmq_term()_ shall block
227
+ until either all pending messages have been sent to a peer, or the linger
228
+ period expires, after which any pending messages shall be discarded.
229
+
230
+ [horizontal]
231
+ Option value type:: int
232
+ Option value unit:: milliseconds
233
+ Default value:: -1 (infinite)
234
+ Applicable socket types:: all
235
+
236
+
237
+ ZMQ_RECONNECT_IVL: Set reconnection interval
238
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
239
+ The 'ZMQ_RECONNECT_IVL' option shall set the initial reconnection interval for
240
+ the specified 'socket'. The reconnection interval is the period 0MQ
241
+ shall wait between attempts to reconnect disconnected peers when using
242
+ connection-oriented transports. The value -1 means no reconnection.
243
+
244
+ NOTE: The reconnection interval may be randomized by 0MQ to prevent
245
+ reconnection storms in topologies with a large number of peers per socket.
246
+
247
+ [horizontal]
248
+ Option value type:: int
249
+ Option value unit:: milliseconds
250
+ Default value:: 100
251
+ Applicable socket types:: all, only for connection-oriented transports
252
+
253
+
254
+ ZMQ_RECONNECT_IVL_MAX: Set maximum reconnection interval
255
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
256
+ The 'ZMQ_RECONNECT_IVL_MAX' option shall set the maximum reconnection interval
257
+ for the specified 'socket'. This is the maximum period 0MQ shall wait between
258
+ attempts to reconnect. On each reconnect attempt, the previous interval shall be
259
+ doubled untill ZMQ_RECONNECT_IVL_MAX is reached. This allows for exponential
260
+ backoff strategy. Default value means no exponential backoff is performed and
261
+ reconnect interval calculations are only based on ZMQ_RECONNECT_IVL.
262
+
263
+ NOTE: Values less than ZMQ_RECONNECT_IVL will be ignored.
264
+
265
+ [horizontal]
266
+ Option value type:: int
267
+ Option value unit:: milliseconds
268
+ Default value:: 0 (only use ZMQ_RECONNECT_IVL)
269
+ Applicable socket types:: all, only for connection-oriented transports
270
+
271
+
272
+ ZMQ_BACKLOG: Set maximum length of the queue of outstanding connections
273
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
274
+ The 'ZMQ_BACKLOG' option shall set the maximum length of the queue of
275
+ outstanding peer connections for the specified 'socket'; this only applies to
276
+ connection-oriented transports. For details refer to your operating system
277
+ documentation for the 'listen' function.
278
+
279
+ [horizontal]
280
+ Option value type:: int
281
+ Option value unit:: connections
282
+ Default value:: 100
283
+ Applicable socket types:: all, only for connection-oriented transports.
284
+
285
+
286
+ ZMQ_MAXMSGSIZE: Maximum acceptable inbound message size
287
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
288
+
289
+ Limits the size of the inbound message. If a peer sends a message larger than
290
+ ZMQ_MAXMSGSIZE it is disconnected. Value of -1 means 'no limit'.
291
+
292
+ [horizontal]
293
+ Option value type:: int64_t
294
+ Option value unit:: bytes
295
+ Default value:: -1
296
+ Applicable socket types:: all
297
+
298
+
299
+ ZMQ_MULTICAST_HOPS: Maximum network hops for multicast packets
300
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
301
+
302
+ Sets the time-to-live field in every multicast packet sent from this socket.
303
+ The default is 1 which means that the multicast packets don't leave the local
304
+ network.
305
+
306
+ [horizontal]
307
+ Option value type:: int
308
+ Option value unit:: network hops
309
+ Default value:: 1
310
+ Applicable socket types:: all, when using multicast transports
311
+
312
+
313
+ ZMQ_RCVTIMEO: Maximum time before a recv operation returns with EAGAIN
314
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
315
+
316
+ Sets the timeout for receive operation on the socket. If the value is `0`,
317
+ _zmq_recv(3)_ will return immediately, with a EAGAIN error if there is no
318
+ message to receive. If the value is `-1`, it will block until a message is
319
+ available. For all other values, it will wait for a message for that amount
320
+ of time before returning with an EAGAIN error.
321
+
322
+ [horizontal]
323
+ Option value type:: int
324
+ Option value unit:: milliseconds
325
+ Default value:: -1 (infinite)
326
+ Applicable socket types:: all
327
+
328
+
329
+ ZMQ_SNDTIMEO: Maximum time before a send operation returns with EAGAIN
330
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
331
+
332
+ Sets the timeout for send operation on the socket. If the value is `0`,
333
+ _zmq_send(3)_ will return immediately, with a EAGAIN error if the message
334
+ cannot be sent. If the value is `-1`, it will block until the message is sent.
335
+ For all other values, it will try to send the message for that amount of time
336
+ before returning with an EAGAIN error.
337
+
338
+ [horizontal]
339
+ Option value type:: int
340
+ Option value unit:: milliseconds
341
+ Default value:: -1 (infinite)
342
+ Applicable socket types:: all
343
+
344
+
345
+ ZMQ_IPV4ONLY: Use IPv4-only sockets
346
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
347
+
348
+ Sets the underlying native socket type. A value of `1` will use IPv4 sockets,
349
+ while the value of `0` will use IPv6 sockets. An IPv6 socket lets
350
+ applications connect to and accept connections from both IPv4 and IPv6 hosts.
351
+
352
+ [horizontal]
353
+ Option value type:: int
354
+ Option value unit:: boolean
355
+ Default value:: 1 (true)
356
+ Applicable socket types:: all, when using TCP transports.
357
+
358
+
359
+ ZMQ_DELAY_ATTACH_ON_CONNECT: Accept messages only when connections are made
360
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
361
+
362
+ If set to `1`, will delay the attachment of a pipe on connect until the underlying
363
+ connection has completed. This will cause the socket to block if there are no other
364
+ connections, but will prevent queues from filling on pipes awaiting connection.
365
+
366
+ [horizontal]
367
+ Option value type:: int
368
+ Option value unit:: boolean
369
+ Default value:: 0 (false)
370
+ Applicable socket types:: all, only for connection-oriented transports.
371
+
372
+
373
+ ZMQ_ROUTER_MANDATORY: accept only routable messages on ROUTER sockets
374
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
375
+
376
+ Sets the 'ROUTER' socket behavior when an unroutable message is encountered. A
377
+ value of `0` is the default and discards the message silently when it cannot be
378
+ routed. A value of `1` returns an 'EHOSTUNREACH' error code if the message
379
+ cannot be routed.
380
+
381
+ [horizontal]
382
+ Option value type:: int
383
+ Option value unit:: 0, 1
384
+ Default value:: 0
385
+ Applicable socket types:: ZMQ_ROUTER
386
+
387
+
388
+ ZMQ_XPUB_VERBOSE: provide all subscription messages on XPUB sockets
389
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
390
+
391
+ Sets the 'XPUB' socket behavior on new subscriptions and unsubscriptions.
392
+ A value of '0' is the default and passes only new subscription messages to
393
+ upstream. A value of '1' passes all subscription messages upstream.
394
+
395
+ [horizontal]
396
+ Option value type:: int
397
+ Option value unit:: 0, 1
398
+ Default value:: 0
399
+ Applicable socket types:: ZMQ_XPUB
400
+
401
+
402
+ ZMQ_TCP_KEEPALIVE: Override SO_KEEPALIVE socket option
403
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
404
+ Override 'SO_KEEPALIVE' socket option(where supported by OS).
405
+ The default value of `-1` means to skip any overrides and leave it to OS default.
406
+
407
+ [horizontal]
408
+ Option value type:: int
409
+ Option value unit:: -1,0,1
410
+ Default value:: -1 (leave to OS default)
411
+ Applicable socket types:: all, when using TCP transports.
412
+
413
+
414
+ ZMQ_TCP_KEEPALIVE_IDLE: Override TCP_KEEPCNT(or TCP_KEEPALIVE on some OS)
415
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
416
+ Override 'TCP_KEEPCNT'(or 'TCP_KEEPALIVE' on some OS) socket option(where supported by OS).
417
+ The default value of `-1` means to skip any overrides and leave it to OS default.
418
+
419
+ [horizontal]
420
+ Option value type:: int
421
+ Option value unit:: -1,>0
422
+ Default value:: -1 (leave to OS default)
423
+ Applicable socket types:: all, when using TCP transports.
424
+
425
+
426
+ ZMQ_TCP_KEEPALIVE_CNT: Override TCP_KEEPCNT socket option
427
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
428
+ Override 'TCP_KEEPCNT' socket option(where supported by OS).
429
+ The default value of `-1` means to skip any overrides and leave it to OS default.
430
+
431
+ [horizontal]
432
+ Option value type:: int
433
+ Option value unit:: -1,>0
434
+ Default value:: -1 (leave to OS default)
435
+ Applicable socket types:: all, when using TCP transports.
436
+
437
+
438
+ ZMQ_TCP_KEEPALIVE_INTVL: Override TCP_KEEPINTVL socket option
439
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
440
+ Override 'TCP_KEEPINTVL' socket option(where supported by OS).
441
+ The default value of `-1` means to skip any overrides and leave it to OS default.
442
+
443
+ [horizontal]
444
+ Option value type:: int
445
+ Option value unit:: -1,>0
446
+ Default value:: -1 (leave to OS default)
447
+ Applicable socket types:: all, when using TCP transports.
448
+
449
+
450
+ ZMQ_TCP_ACCEPT_FILTER: Assign filters to allow new TCP connections
451
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
452
+ Assign arbitrary number of filters that will be applied for each new TCP transport
453
+ connection on a listening socket.
454
+ If no filters applied, then TCP transport allows connections from any ip.
455
+ If at least one filter is applied then new connection source ip should be matched.
456
+ To clear all filters call zmq_setsockopt(socket, ZMQ_TCP_ACCEPT_FILTER, NULL, 0).
457
+ Filter is a null-terminated string with ipv6 or ipv4 CIDR.
458
+
459
+ [horizontal]
460
+ Option value type:: binary data
461
+ Option value unit:: N/A
462
+ Default value:: no filters (allow from all)
463
+ Applicable socket types:: all listening sockets, when using TCP transports.
464
+
465
+
466
+ RETURN VALUE
467
+ ------------
468
+ The _zmq_setsockopt()_ function shall return zero if successful. Otherwise it
469
+ shall return `-1` and set 'errno' to one of the values defined below.
470
+
471
+ ERRORS
472
+ ------
473
+ *EINVAL*::
474
+ The requested option _option_name_ is unknown, or the requested _option_len_ or
475
+ _option_value_ is invalid.
476
+ *ETERM*::
477
+ The 0MQ 'context' associated with the specified 'socket' was terminated.
478
+ *ENOTSOCK*::
479
+ The provided 'socket' was invalid.
480
+ *EINTR*::
481
+ The operation was interrupted by delivery of a signal.
482
+
483
+
484
+ EXAMPLE
485
+ -------
486
+ .Subscribing to messages on a 'ZMQ_SUB' socket
487
+ ----
488
+ /* Subscribe to all messages */
489
+ rc = zmq_setsockopt (socket, ZMQ_SUBSCRIBE, "", 0);
490
+ assert (rc == 0);
491
+ /* Subscribe to messages prefixed with "ANIMALS.CATS" */
492
+ rc = zmq_setsockopt (socket, ZMQ_SUBSCRIBE, "ANIMALS.CATS", 12);
493
+ ----
494
+
495
+ .Setting I/O thread affinity
496
+ ----
497
+ int64_t affinity;
498
+ /* Incoming connections on TCP port 5555 shall be handled by I/O thread 1 */
499
+ affinity = 1;
500
+ rc = zmq_setsockopt (socket, ZMQ_AFFINITY, &affinity, sizeof affinity);
501
+ assert (rc);
502
+ rc = zmq_bind (socket, "tcp://lo:5555");
503
+ assert (rc);
504
+ /* Incoming connections on TCP port 5556 shall be handled by I/O thread 2 */
505
+ affinity = 2;
506
+ rc = zmq_setsockopt (socket, ZMQ_AFFINITY, &affinity, sizeof affinity);
507
+ assert (rc);
508
+ rc = zmq_bind (socket, "tcp://lo:5556");
509
+ assert (rc);
510
+ ----
511
+
512
+
513
+ SEE ALSO
514
+ --------
515
+ linkzmq:zmq_getsockopt[3]
516
+ linkzmq:zmq_socket[3]
517
+ linkzmq:zmq[7]
518
+
519
+
520
+ AUTHORS
521
+ -------
522
+ This 0MQ manual page was written by Martin Sustrik <sustrik@250bpm.com> and
523
+ Martin Lucina <mato@kotelna.sk>.