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,162 @@
1
+ /*
2
+ Copyright (c) 2009-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
+ #include <stdlib.h>
23
+ #include <string.h>
24
+
25
+ #include "platform.hpp"
26
+ #ifdef ZMQ_HAVE_WINDOWS
27
+ #include "windows.hpp"
28
+ #endif
29
+
30
+ #include "v1_protocol.hpp"
31
+ #include "v1_decoder.hpp"
32
+ #include "likely.hpp"
33
+ #include "wire.hpp"
34
+ #include "err.hpp"
35
+
36
+ zmq::v1_decoder_t::v1_decoder_t (size_t bufsize_,
37
+ int64_t maxmsgsize_, i_msg_sink *msg_sink_) :
38
+ decoder_base_t <v1_decoder_t> (bufsize_),
39
+ msg_sink (msg_sink_),
40
+ msg_flags (0),
41
+ maxmsgsize (maxmsgsize_)
42
+ {
43
+ int rc = in_progress.init ();
44
+ errno_assert (rc == 0);
45
+
46
+ // At the beginning, read one byte and go to flags_ready state.
47
+ next_step (tmpbuf, 1, &v1_decoder_t::flags_ready);
48
+ }
49
+
50
+ zmq::v1_decoder_t::~v1_decoder_t ()
51
+ {
52
+ int rc = in_progress.close ();
53
+ errno_assert (rc == 0);
54
+ }
55
+
56
+ void zmq::v1_decoder_t::set_msg_sink (i_msg_sink *msg_sink_)
57
+ {
58
+ msg_sink = msg_sink_;
59
+ }
60
+
61
+ bool zmq::v1_decoder_t::flags_ready ()
62
+ {
63
+ msg_flags = 0;
64
+ if (tmpbuf [0] & v1_protocol_t::more_flag)
65
+ msg_flags |= msg_t::more;
66
+
67
+ // The payload length is either one or eight bytes,
68
+ // depending on whether the 'large' bit is set.
69
+ if (tmpbuf [0] & v1_protocol_t::large_flag)
70
+ next_step (tmpbuf, 8, &v1_decoder_t::eight_byte_size_ready);
71
+ else
72
+ next_step (tmpbuf, 1, &v1_decoder_t::one_byte_size_ready);
73
+
74
+ return true;
75
+ }
76
+
77
+ bool zmq::v1_decoder_t::one_byte_size_ready ()
78
+ {
79
+ int rc = 0;
80
+
81
+ // Message size must not exceed the maximum allowed size.
82
+ if (maxmsgsize >= 0)
83
+ if (unlikely (tmpbuf [0] > static_cast <uint64_t> (maxmsgsize)))
84
+ goto error;
85
+
86
+ // in_progress is initialised at this point so in theory we should
87
+ // close it before calling zmq_msg_init_size, however, it's a 0-byte
88
+ // message and thus we can treat it as uninitialised...
89
+ rc = in_progress.init_size (tmpbuf [0]);
90
+ if (unlikely (rc)) {
91
+ errno_assert (errno == ENOMEM);
92
+ int rc = in_progress.init ();
93
+ errno_assert (rc == 0);
94
+ goto error;
95
+ }
96
+
97
+ in_progress.set_flags (msg_flags);
98
+ next_step (in_progress.data (), in_progress.size (),
99
+ &v1_decoder_t::message_ready);
100
+
101
+ return true;
102
+
103
+ error:
104
+ decoding_error ();
105
+ return false;
106
+ }
107
+
108
+ bool zmq::v1_decoder_t::eight_byte_size_ready ()
109
+ {
110
+ int rc = 0;
111
+
112
+ // The payload size is encoded as 64-bit unsigned integer.
113
+ // The most significant byte comes first.
114
+ const uint64_t msg_size = get_uint64 (tmpbuf);
115
+
116
+ // Message size must not exceed the maximum allowed size.
117
+ if (maxmsgsize >= 0)
118
+ if (unlikely (msg_size > static_cast <uint64_t> (maxmsgsize)))
119
+ goto error;
120
+
121
+ // Message size must fit into size_t data type.
122
+ if (unlikely (msg_size != static_cast <size_t> (msg_size)))
123
+ goto error;
124
+
125
+ // in_progress is initialised at this point so in theory we should
126
+ // close it before calling init_size, however, it's a 0-byte
127
+ // message and thus we can treat it as uninitialised.
128
+ rc = in_progress.init_size (static_cast <size_t> (msg_size));
129
+ if (unlikely (rc)) {
130
+ errno_assert (errno == ENOMEM);
131
+ int rc = in_progress.init ();
132
+ errno_assert (rc == 0);
133
+ goto error;
134
+ }
135
+
136
+ in_progress.set_flags (msg_flags);
137
+ next_step (in_progress.data (), in_progress.size (),
138
+ &v1_decoder_t::message_ready);
139
+
140
+ return true;
141
+
142
+ error:
143
+ decoding_error ();
144
+ return false;
145
+ }
146
+
147
+ bool zmq::v1_decoder_t::message_ready ()
148
+ {
149
+ // Message is completely read. Push it further and start reading
150
+ // new message. (in_progress is a 0-byte message after this point.)
151
+ if (unlikely (!msg_sink))
152
+ return false;
153
+ int rc = msg_sink->push_msg (&in_progress);
154
+ if (unlikely (rc != 0)) {
155
+ if (errno != EAGAIN)
156
+ decoding_error ();
157
+ return false;
158
+ }
159
+
160
+ next_step (tmpbuf, 1, &v1_decoder_t::flags_ready);
161
+ return true;
162
+ }
@@ -0,0 +1,68 @@
1
+ /*
2
+ Copyright (c) 2009-2011 250bpm s.r.o.
3
+ Copyright (c) 2007-2012 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_V1_DECODER_HPP_INCLUDED__
23
+ #define __ZMQ_V1_DECODER_HPP_INCLUDED__
24
+
25
+ #include "err.hpp"
26
+ #include "msg.hpp"
27
+ #include "decoder.hpp"
28
+ #include "i_msg_sink.hpp"
29
+ #include "stdint.hpp"
30
+
31
+ namespace zmq
32
+ {
33
+
34
+ // Decoder for 0MQ v1 framing protocol. Converts data stream into messages.
35
+
36
+ class v1_decoder_t : public decoder_base_t <v1_decoder_t>
37
+ {
38
+ public:
39
+
40
+ v1_decoder_t (size_t bufsize_,
41
+ int64_t maxmsgsize_, i_msg_sink *msg_sink_);
42
+ virtual ~v1_decoder_t ();
43
+
44
+ // i_decoder interface.
45
+ virtual void set_msg_sink (i_msg_sink *msg_sink_);
46
+
47
+ private:
48
+
49
+ bool flags_ready ();
50
+ bool one_byte_size_ready ();
51
+ bool eight_byte_size_ready ();
52
+ bool message_ready ();
53
+
54
+ i_msg_sink *msg_sink;
55
+ unsigned char tmpbuf [8];
56
+ unsigned char msg_flags;
57
+ msg_t in_progress;
58
+
59
+ const int64_t maxmsgsize;
60
+
61
+ v1_decoder_t (const v1_decoder_t&);
62
+ void operator = (const v1_decoder_t&);
63
+ };
64
+
65
+ }
66
+
67
+ #endif
68
+
@@ -0,0 +1,103 @@
1
+ /*
2
+ Copyright (c) 2007-2012 iMatix Corporation
3
+ Copyright (c) 2009-2011 250bpm s.r.o.
4
+ Copyright (c) 2011 VMware, Inc.
5
+ Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
6
+
7
+ This file is part of 0MQ.
8
+
9
+ 0MQ is free software; you can redistribute it and/or modify it under
10
+ the terms of the GNU Lesser General Public License as published by
11
+ the Free Software Foundation; either version 3 of the License, or
12
+ (at your option) any later version.
13
+
14
+ 0MQ is distributed in the hope that it will be useful,
15
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ GNU Lesser General Public License for more details.
18
+
19
+ You should have received a copy of the GNU Lesser General Public License
20
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ #include "v1_protocol.hpp"
24
+ #include "v1_encoder.hpp"
25
+ #include "likely.hpp"
26
+ #include "wire.hpp"
27
+
28
+ zmq::v1_encoder_t::v1_encoder_t (size_t bufsize_, i_msg_source *msg_source_) :
29
+ encoder_base_t <v1_encoder_t> (bufsize_),
30
+ msg_source (msg_source_)
31
+ {
32
+ int rc = in_progress.init ();
33
+ errno_assert (rc == 0);
34
+
35
+ // Write 0 bytes to the batch and go to message_ready state.
36
+ next_step (NULL, 0, &v1_encoder_t::message_ready, true);
37
+ }
38
+
39
+ zmq::v1_encoder_t::~v1_encoder_t ()
40
+ {
41
+ int rc = in_progress.close ();
42
+ errno_assert (rc == 0);
43
+ }
44
+
45
+ void zmq::v1_encoder_t::set_msg_source (i_msg_source *msg_source_)
46
+ {
47
+ msg_source = msg_source_;
48
+ }
49
+
50
+ bool zmq::v1_encoder_t::message_ready ()
51
+ {
52
+ // Release the content of the old message.
53
+ int rc = in_progress.close ();
54
+ errno_assert (rc == 0);
55
+
56
+ // Read new message. If there is none, return false.
57
+ // Note that new state is set only if write is successful. That way
58
+ // unsuccessful write will cause retry on the next state machine
59
+ // invocation.
60
+ if (unlikely (!msg_source)) {
61
+ rc = in_progress.init ();
62
+ errno_assert (rc == 0);
63
+ return false;
64
+ }
65
+
66
+ rc = msg_source->pull_msg (&in_progress);
67
+ if (unlikely (rc)) {
68
+ errno_assert (errno == EAGAIN);
69
+ rc = in_progress.init ();
70
+ errno_assert (rc == 0);
71
+ return false;
72
+ }
73
+
74
+ // Encode flags.
75
+ unsigned char &protocol_flags = tmpbuf [0];
76
+ protocol_flags = 0;
77
+ if (in_progress.flags () & msg_t::more)
78
+ protocol_flags |= v1_protocol_t::more_flag;
79
+ if (in_progress.size () > 255)
80
+ protocol_flags |= v1_protocol_t::large_flag;
81
+
82
+ // Encode the message length. For messages less then 256 bytes,
83
+ // the length is encoded as 8-bit unsigned integer. For larger
84
+ // messages, 64-bit unsigned integer in network byte order is used.
85
+ const size_t size = in_progress.size ();
86
+ if (unlikely (size > 255)) {
87
+ put_uint64 (tmpbuf + 1, size);
88
+ next_step (tmpbuf, 9, &v1_encoder_t::size_ready, false);
89
+ }
90
+ else {
91
+ tmpbuf [1] = static_cast <uint8_t> (size);
92
+ next_step (tmpbuf, 2, &v1_encoder_t::size_ready, false);
93
+ }
94
+ return true;
95
+ }
96
+
97
+ bool zmq::v1_encoder_t::size_ready ()
98
+ {
99
+ // Write message body into the buffer.
100
+ next_step (in_progress.data (), in_progress.size (),
101
+ &v1_encoder_t::message_ready, !(in_progress.flags () & msg_t::more));
102
+ return true;
103
+ }
@@ -0,0 +1,60 @@
1
+ /*
2
+ Copyright (c) 2009-2011 250bpm s.r.o.
3
+ Copyright (c) 2007-2012 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_V1_ENCODER_HPP_INCLUDED__
23
+ #define __ZMQ_V1_ENCODER_HPP_INCLUDED__
24
+
25
+ #include "msg.hpp"
26
+ #include "i_msg_source.hpp"
27
+ #include "encoder.hpp"
28
+
29
+ namespace zmq
30
+ {
31
+
32
+ class i_msg_source;
33
+
34
+ // Encoder for 0MQ framing protocol. Converts messages into data stream.
35
+
36
+ class v1_encoder_t : public encoder_base_t <v1_encoder_t>
37
+ {
38
+ public:
39
+
40
+ v1_encoder_t (size_t bufsize_, i_msg_source *msg_source_);
41
+ virtual ~v1_encoder_t ();
42
+
43
+ virtual void set_msg_source (i_msg_source *msg_source_);
44
+
45
+ private:
46
+
47
+ bool size_ready ();
48
+ bool message_ready ();
49
+
50
+ i_msg_source *msg_source;
51
+ msg_t in_progress;
52
+ unsigned char tmpbuf [9];
53
+
54
+ v1_encoder_t (const v1_encoder_t&);
55
+ const v1_encoder_t &operator = (const v1_encoder_t&);
56
+ };
57
+ }
58
+
59
+ #endif
60
+
@@ -0,0 +1,43 @@
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
+ #ifndef __ZMQ_V1_PROTOCOL_HPP_INCLUDED__
22
+ #define __ZMQ_V1_PROTOCOL_HPP_INCLUDED__
23
+
24
+ namespace zmq
25
+ {
26
+
27
+ // Definition of constans for v1 transport protocol.
28
+ class v1_protocol_t
29
+ {
30
+ public:
31
+ // Message flags.
32
+ enum
33
+ {
34
+ more_flag = 1,
35
+ large_flag = 2
36
+ };
37
+
38
+ };
39
+
40
+ }
41
+
42
+ #endif
43
+
@@ -0,0 +1,93 @@
1
+ /////////////////////////////////////////////////////////////////////////////
2
+ //
3
+ // VERSIONINFO resource
4
+ //
5
+ // http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058(v=vs.85).aspx
6
+
7
+ // @MAJOR@,@MINOR@,@BUILD@,@PATCH@
8
+ #define VER_FILEVERSION @ZMQ_VERSION_MAJOR@,@ZMQ_VERSION_MINOR@,@ZMQ_VERSION_PATCH@,0
9
+ #define VER_FILEVERSION_STR "@ZMQ_VERSION_MAJOR@.@ZMQ_VERSION_MINOR@.@ZMQ_VERSION_PATCH@.0\0"
10
+
11
+ #define VER_PRODUCTVERSION VER_FILEVERSION
12
+ #define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
13
+
14
+
15
+ // versionID
16
+ // Version-information resource identifier. This value must be 1.
17
+ 1 VERSIONINFO
18
+
19
+ //// fixed-info
20
+ // Binary version number for the file.
21
+ FILEVERSION VER_FILEVERSION
22
+
23
+ // Binary version number for the product with which the file is distributed.
24
+ PRODUCTVERSION VER_PRODUCTVERSION
25
+
26
+ // Bits in the FILEFLAGS statement are valid.
27
+ FILEFLAGSMASK 0x17L
28
+
29
+ // Attributes of the file.
30
+ // VS_FF_DEBUG = 1 : File contains debugging information or is compiled with debugging features enabled.
31
+ // VS_FF_PATCHED = 4 : File has been modified and is not identical to the original shipping file of the
32
+ // same version number.
33
+ // VS_FF_PRERELEASE = 2 : File is a development version, not a commercially released product.
34
+ // VS_FF_PRIVATEBUILD = 8 : File was not built using standard release procedures.
35
+ // VS_FF_SPECIALBUILD = 20 : File was built by the original company using standard release procedures but is a
36
+ // : variation of the standard file of the same version number.
37
+ #ifdef _DEBUG
38
+ FILEFLAGS 0x1L
39
+ #else
40
+ FILEFLAGS 0x2L
41
+ #endif
42
+
43
+ // Operating system for which this file was designed.
44
+ // VOS_DOS = 0x10000 : File was designed for MS-DOS.
45
+ // VOS_NT = 0x40000 : File was designed for 32-bit Windows.
46
+ // VOS_WINDOWS16 = 0x1 : File was designed for 16-bit Windows.
47
+ // VOS_WINDOWS32 = 0x4 : File was designed for 32-bit Windows.
48
+ // VOS_DOS_WINDOWS16 = 0x10001 : File was designed for 16-bit Windows running with MS-DOS.
49
+ // VOS_DOS_WINDOWS32 = 0x10004 : File was designed for 32-bit Windows running with MS-DOS.
50
+ // VOS_NT_WINDOWS32 = 0x40004 : File was designed for 32-bit Windows.
51
+ // NB: appears obsolete, nothing for x64.
52
+ FILEOS 0x4L
53
+
54
+ // General type of file.
55
+ // VFT_APP = 0x1 : File contains an application.
56
+ // VFT_DLL = 0x2 : File contains a dynamic-link library (DLL).
57
+ // VFT_DRV = 0x3 : File contains a device driver.
58
+ // VFT_FONT = 0x4 : File contains a font.
59
+ // VFT_VXD = 0x5 : File contains a virtual device.
60
+ // VFT_STATIC_LIB = 0x7 : File contains a static-link library.
61
+ FILETYPE 0x2L
62
+
63
+ // Function of the file.
64
+ FILESUBTYPE 0x0L
65
+
66
+ BEGIN
67
+ BLOCK "StringFileInfo"
68
+ BEGIN
69
+ BLOCK "080904b0"
70
+ BEGIN
71
+ VALUE "CompanyName", "iMatix Corporation"
72
+ VALUE "FileDescription", "ZeroMQ lightweight messaging kernel"
73
+ VALUE "FileVersion", VER_FILEVERSION_STR
74
+ VALUE "InternalName", "zeromq"
75
+ VALUE "LegalCopyright", "Copyright (c) 2012 The ZeroMQ Authors."
76
+ VALUE "OriginalFilename", "libzmq.dll"
77
+ VALUE "ProductName", "ZeroMQ"
78
+ VALUE "ProductVersion", VER_PRODUCTVERSION_STR
79
+ END
80
+ END
81
+
82
+ BLOCK "VarFileInfo"
83
+ BEGIN
84
+ // langID, one of the following language codes.
85
+ // 0x409 : U.S. English
86
+ // 0x809 : U.K. English
87
+ // charsetID, one of the following character-set identifiers.
88
+ // 1200 : Unicode
89
+ VALUE "Translation", 0x809, 1200
90
+ END
91
+ END
92
+
93
+ // end of file.