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,86 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <ItemGroup Label="ProjectConfigurations">
4
+ <ProjectConfiguration Include="Debug|Win32">
5
+ <Configuration>Debug</Configuration>
6
+ <Platform>Win32</Platform>
7
+ </ProjectConfiguration>
8
+ <ProjectConfiguration Include="Debug|x64">
9
+ <Configuration>Debug</Configuration>
10
+ <Platform>x64</Platform>
11
+ </ProjectConfiguration>
12
+ <ProjectConfiguration Include="Release|Win32">
13
+ <Configuration>Release</Configuration>
14
+ <Platform>Win32</Platform>
15
+ </ProjectConfiguration>
16
+ <ProjectConfiguration Include="Release|x64">
17
+ <Configuration>Release</Configuration>
18
+ <Platform>x64</Platform>
19
+ </ProjectConfiguration>
20
+ </ItemGroup>
21
+ <PropertyGroup Label="Globals">
22
+ <ProjectGuid>{1077E977-95DD-4E73-A692-74647DD0CC1E}</ProjectGuid>
23
+ <RootNamespace>inproc_thr</RootNamespace>
24
+ </PropertyGroup>
25
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
26
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
27
+ <ConfigurationType>Application</ConfigurationType>
28
+ <CharacterSet>MultiByte</CharacterSet>
29
+ <WholeProgramOptimization>true</WholeProgramOptimization>
30
+ </PropertyGroup>
31
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
32
+ <ConfigurationType>Application</ConfigurationType>
33
+ <CharacterSet>MultiByte</CharacterSet>
34
+ <WholeProgramOptimization>true</WholeProgramOptimization>
35
+ </PropertyGroup>
36
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
37
+ <ConfigurationType>Application</ConfigurationType>
38
+ <CharacterSet>MultiByte</CharacterSet>
39
+ </PropertyGroup>
40
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
41
+ <ConfigurationType>Application</ConfigurationType>
42
+ <CharacterSet>MultiByte</CharacterSet>
43
+ </PropertyGroup>
44
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
45
+ <ImportGroup Label="ExtensionSettings" />
46
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
47
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
48
+ <Import Project="$(ProjectDir)..\properties\Executable.props" />
49
+ <Import Project="$(ProjectDir)..\properties\Win32_Release.props" />
50
+ </ImportGroup>
51
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
52
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
53
+ <Import Project="$(ProjectDir)..\properties\Executable.props" />
54
+ <Import Project="$(ProjectDir)..\properties\x64.props" />
55
+ <Import Project="$(ProjectDir)..\properties\Release.props" />
56
+ </ImportGroup>
57
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
58
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
59
+ <Import Project="$(ProjectDir)..\properties\Executable.props" />
60
+ <Import Project="$(ProjectDir)..\properties\Win32.props" />
61
+ <Import Project="$(ProjectDir)..\properties\Debug.props" />
62
+ </ImportGroup>
63
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
64
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65
+ <Import Project="$(ProjectDir)..\properties\Executable.props" />
66
+ <Import Project="$(ProjectDir)..\properties\x64.props" />
67
+ <Import Project="$(ProjectDir)..\properties\Debug.props" />
68
+ </ImportGroup>
69
+ <PropertyGroup Label="UserMacros" />
70
+ <PropertyGroup>
71
+ <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
72
+ <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
73
+ </PropertyGroup>
74
+ <ItemGroup>
75
+ <ClCompile Include="..\..\..\perf\inproc_thr.cpp" />
76
+ </ItemGroup>
77
+ <ItemGroup>
78
+ <ProjectReference Include="..\libzmq\libzmq.vcxproj">
79
+ <Project>{641c5f36-32ee-4323-b740-992b651cf9d6}</Project>
80
+ <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
81
+ </ProjectReference>
82
+ </ItemGroup>
83
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
84
+ <ImportGroup Label="ExtensionTargets">
85
+ </ImportGroup>
86
+ </Project>
@@ -0,0 +1,804 @@
1
+ <?xml version="1.0" encoding="windows-1250"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="9.00"
5
+ Name="libzmq"
6
+ ProjectGUID="{641C5F36-32EE-4323-B740-992B651CF9D6}"
7
+ RootNamespace="libzmq"
8
+ TargetFrameworkVersion="196613"
9
+ >
10
+ <Platforms>
11
+ <Platform
12
+ Name="Win32"
13
+ />
14
+ </Platforms>
15
+ <ToolFiles>
16
+ </ToolFiles>
17
+ <Configurations>
18
+ <Configuration
19
+ Name="Debug|Win32"
20
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
21
+ IntermediateDirectory="$(ConfigurationName)"
22
+ ConfigurationType="2"
23
+ CharacterSet="2"
24
+ >
25
+ <Tool
26
+ Name="VCPreBuildEventTool"
27
+ CommandLine="copy ..\platform.hpp ..\..\..\src"
28
+ />
29
+ <Tool
30
+ Name="VCCustomBuildTool"
31
+ />
32
+ <Tool
33
+ Name="VCXMLDataGeneratorTool"
34
+ />
35
+ <Tool
36
+ Name="VCWebServiceProxyGeneratorTool"
37
+ />
38
+ <Tool
39
+ Name="VCMIDLTool"
40
+ />
41
+ <Tool
42
+ Name="VCCLCompilerTool"
43
+ AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024 -D_CRT_SECURE_NO_WARNINGS"
44
+ Optimization="0"
45
+ PreprocessorDefinitions="NOMINMAX"
46
+ MinimalRebuild="true"
47
+ BasicRuntimeChecks="3"
48
+ RuntimeLibrary="3"
49
+ WarningLevel="3"
50
+ DebugInformationFormat="4"
51
+ />
52
+ <Tool
53
+ Name="VCManagedResourceCompilerTool"
54
+ />
55
+ <Tool
56
+ Name="VCResourceCompilerTool"
57
+ />
58
+ <Tool
59
+ Name="VCPreLinkEventTool"
60
+ />
61
+ <Tool
62
+ Name="VCLinkerTool"
63
+ AdditionalDependencies="Ws2_32.lib Rpcrt4.lib"
64
+ OutputFile="../../../lib/libzmq.dll"
65
+ GenerateDebugInformation="true"
66
+ TargetMachine="1"
67
+ />
68
+ <Tool
69
+ Name="VCALinkTool"
70
+ />
71
+ <Tool
72
+ Name="VCManifestTool"
73
+ />
74
+ <Tool
75
+ Name="VCXDCMakeTool"
76
+ />
77
+ <Tool
78
+ Name="VCBscMakeTool"
79
+ />
80
+ <Tool
81
+ Name="VCFxCopTool"
82
+ />
83
+ <Tool
84
+ Name="VCAppVerifierTool"
85
+ />
86
+ <Tool
87
+ Name="VCPostBuildEventTool"
88
+ />
89
+ </Configuration>
90
+ <Configuration
91
+ Name="Release|Win32"
92
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
93
+ IntermediateDirectory="$(ConfigurationName)"
94
+ ConfigurationType="2"
95
+ CharacterSet="2"
96
+ WholeProgramOptimization="1"
97
+ >
98
+ <Tool
99
+ Name="VCPreBuildEventTool"
100
+ CommandLine="copy ..\platform.hpp ..\..\..\src"
101
+ />
102
+ <Tool
103
+ Name="VCCustomBuildTool"
104
+ />
105
+ <Tool
106
+ Name="VCXMLDataGeneratorTool"
107
+ />
108
+ <Tool
109
+ Name="VCWebServiceProxyGeneratorTool"
110
+ />
111
+ <Tool
112
+ Name="VCMIDLTool"
113
+ />
114
+ <Tool
115
+ Name="VCCLCompilerTool"
116
+ AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024 -D_CRT_SECURE_NO_WARNINGS"
117
+ Optimization="2"
118
+ EnableIntrinsicFunctions="true"
119
+ RuntimeLibrary="2"
120
+ EnableFunctionLevelLinking="true"
121
+ WarningLevel="3"
122
+ DebugInformationFormat="3"
123
+ />
124
+ <Tool
125
+ Name="VCManagedResourceCompilerTool"
126
+ />
127
+ <Tool
128
+ Name="VCResourceCompilerTool"
129
+ />
130
+ <Tool
131
+ Name="VCPreLinkEventTool"
132
+ />
133
+ <Tool
134
+ Name="VCLinkerTool"
135
+ AdditionalDependencies="Ws2_32.lib Rpcrt4.lib"
136
+ OutputFile="../../../lib/libzmq.dll"
137
+ GenerateDebugInformation="true"
138
+ OptimizeReferences="2"
139
+ EnableCOMDATFolding="2"
140
+ TargetMachine="1"
141
+ />
142
+ <Tool
143
+ Name="VCALinkTool"
144
+ />
145
+ <Tool
146
+ Name="VCManifestTool"
147
+ />
148
+ <Tool
149
+ Name="VCXDCMakeTool"
150
+ />
151
+ <Tool
152
+ Name="VCBscMakeTool"
153
+ />
154
+ <Tool
155
+ Name="VCFxCopTool"
156
+ />
157
+ <Tool
158
+ Name="VCAppVerifierTool"
159
+ />
160
+ <Tool
161
+ Name="VCPostBuildEventTool"
162
+ />
163
+ </Configuration>
164
+ <Configuration
165
+ Name="WithOpenPGM|Win32"
166
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
167
+ IntermediateDirectory="$(ConfigurationName)"
168
+ ConfigurationType="2"
169
+ CharacterSet="2"
170
+ WholeProgramOptimization="1"
171
+ >
172
+ <Tool
173
+ Name="VCPreBuildEventTool"
174
+ CommandLine="copy ..\platform.hpp ..\..\..\src"
175
+ />
176
+ <Tool
177
+ Name="VCCustomBuildTool"
178
+ />
179
+ <Tool
180
+ Name="VCXMLDataGeneratorTool"
181
+ />
182
+ <Tool
183
+ Name="VCWebServiceProxyGeneratorTool"
184
+ />
185
+ <Tool
186
+ Name="VCMIDLTool"
187
+ />
188
+ <Tool
189
+ Name="VCCLCompilerTool"
190
+ AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024 -D_CRT_SECURE_NO_WARNINGS"
191
+ Optimization="2"
192
+ EnableIntrinsicFunctions="true"
193
+ AdditionalIncludeDirectories="../../../../OpenPGM/include"
194
+ PreprocessorDefinitions="ZMQ_HAVE_OPENPGM"
195
+ RuntimeLibrary="2"
196
+ EnableFunctionLevelLinking="true"
197
+ WarningLevel="3"
198
+ DebugInformationFormat="3"
199
+ />
200
+ <Tool
201
+ Name="VCManagedResourceCompilerTool"
202
+ />
203
+ <Tool
204
+ Name="VCResourceCompilerTool"
205
+ />
206
+ <Tool
207
+ Name="VCPreLinkEventTool"
208
+ />
209
+ <Tool
210
+ Name="VCLinkerTool"
211
+ AdditionalDependencies="Ws2_32.lib Rpcrt4.lib libpgm.lib"
212
+ OutputFile="../../../lib/libzmq.dll"
213
+ AdditionalLibraryDirectories="../../../../OpenPGM/lib"
214
+ GenerateDebugInformation="true"
215
+ OptimizeReferences="2"
216
+ EnableCOMDATFolding="2"
217
+ TargetMachine="1"
218
+ />
219
+ <Tool
220
+ Name="VCALinkTool"
221
+ />
222
+ <Tool
223
+ Name="VCManifestTool"
224
+ />
225
+ <Tool
226
+ Name="VCXDCMakeTool"
227
+ />
228
+ <Tool
229
+ Name="VCBscMakeTool"
230
+ />
231
+ <Tool
232
+ Name="VCFxCopTool"
233
+ />
234
+ <Tool
235
+ Name="VCAppVerifierTool"
236
+ />
237
+ <Tool
238
+ Name="VCPostBuildEventTool"
239
+ />
240
+ </Configuration>
241
+ </Configurations>
242
+ <References>
243
+ </References>
244
+ <Files>
245
+ <Filter
246
+ Name="Source Files"
247
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
248
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
249
+ >
250
+ <File
251
+ RelativePath="..\..\..\src\address.cpp"
252
+ >
253
+ </File>
254
+ <File
255
+ RelativePath="..\..\..\src\clock.cpp"
256
+ >
257
+ </File>
258
+ <File
259
+ RelativePath="..\..\..\src\ctx.cpp"
260
+ >
261
+ </File>
262
+ <File
263
+ RelativePath="..\..\..\src\dealer.cpp"
264
+ >
265
+ </File>
266
+ <File
267
+ RelativePath="..\..\..\src\decoder.cpp"
268
+ >
269
+ </File>
270
+ <File
271
+ RelativePath="..\..\..\src\devpoll.cpp"
272
+ >
273
+ </File>
274
+ <File
275
+ RelativePath="..\..\..\src\dist.cpp"
276
+ >
277
+ </File>
278
+ <File
279
+ RelativePath="..\..\..\src\encoder.cpp"
280
+ >
281
+ </File>
282
+ <File
283
+ RelativePath="..\..\..\src\epoll.cpp"
284
+ >
285
+ </File>
286
+ <File
287
+ RelativePath="..\..\..\src\err.cpp"
288
+ >
289
+ </File>
290
+ <File
291
+ RelativePath="..\errno.cpp"
292
+ >
293
+ </File>
294
+ <File
295
+ RelativePath="..\..\..\src\fq.cpp"
296
+ >
297
+ </File>
298
+ <File
299
+ RelativePath="..\..\..\src\io_object.cpp"
300
+ >
301
+ </File>
302
+ <File
303
+ RelativePath="..\..\..\src\io_thread.cpp"
304
+ >
305
+ </File>
306
+ <File
307
+ RelativePath="..\..\..\src\ip.cpp"
308
+ >
309
+ </File>
310
+ <File
311
+ RelativePath="..\..\..\src\ipc_address.cpp"
312
+ >
313
+ </File>
314
+ <File
315
+ RelativePath="..\..\..\src\ipc_connecter.cpp"
316
+ >
317
+ </File>
318
+ <File
319
+ RelativePath="..\..\..\src\ipc_listener.cpp"
320
+ >
321
+ </File>
322
+ <File
323
+ RelativePath="..\..\..\src\kqueue.cpp"
324
+ >
325
+ </File>
326
+ <File
327
+ RelativePath="..\..\..\src\lb.cpp"
328
+ >
329
+ </File>
330
+ <File
331
+ RelativePath="..\..\..\src\mailbox.cpp"
332
+ >
333
+ </File>
334
+ <File
335
+ RelativePath="..\..\..\src\msg.cpp"
336
+ >
337
+ </File>
338
+ <File
339
+ RelativePath="..\..\..\src\mtrie.cpp"
340
+ >
341
+ </File>
342
+ <File
343
+ RelativePath="..\..\..\src\object.cpp"
344
+ >
345
+ </File>
346
+ <File
347
+ RelativePath="..\..\..\src\options.cpp"
348
+ >
349
+ </File>
350
+ <File
351
+ RelativePath="..\..\..\src\own.cpp"
352
+ >
353
+ </File>
354
+ <File
355
+ RelativePath="..\..\..\src\pair.cpp"
356
+ >
357
+ </File>
358
+ <File
359
+ RelativePath="..\..\..\src\pgm_receiver.cpp"
360
+ >
361
+ </File>
362
+ <File
363
+ RelativePath="..\..\..\src\pgm_sender.cpp"
364
+ >
365
+ </File>
366
+ <File
367
+ RelativePath="..\..\..\src\pgm_socket.cpp"
368
+ >
369
+ </File>
370
+ <File
371
+ RelativePath="..\..\..\src\pipe.cpp"
372
+ >
373
+ </File>
374
+ <File
375
+ RelativePath="..\..\..\src\poll.cpp"
376
+ >
377
+ </File>
378
+ <File
379
+ RelativePath="..\..\..\src\poller_base.cpp"
380
+ >
381
+ </File>
382
+ <File
383
+ RelativePath="..\..\..\src\proxy.cpp"
384
+ >
385
+ </File>
386
+ <File
387
+ RelativePath="..\..\..\src\pub.cpp"
388
+ >
389
+ </File>
390
+ <File
391
+ RelativePath="..\..\..\src\pull.cpp"
392
+ >
393
+ </File>
394
+ <File
395
+ RelativePath="..\..\..\src\push.cpp"
396
+ >
397
+ </File>
398
+ <File
399
+ RelativePath="..\..\..\src\random.cpp"
400
+ >
401
+ </File>
402
+ <File
403
+ RelativePath="..\..\..\src\reaper.cpp"
404
+ >
405
+ </File>
406
+ <File
407
+ RelativePath="..\..\..\src\rep.cpp"
408
+ >
409
+ </File>
410
+ <File
411
+ RelativePath="..\..\..\src\req.cpp"
412
+ >
413
+ </File>
414
+ <File
415
+ RelativePath="..\..\..\src\router.cpp"
416
+ >
417
+ </File>
418
+ <File
419
+ RelativePath="..\..\..\src\select.cpp"
420
+ >
421
+ </File>
422
+ <File
423
+ RelativePath="..\..\..\src\session_base.cpp"
424
+ >
425
+ </File>
426
+ <File
427
+ RelativePath="..\..\..\src\signaler.cpp"
428
+ >
429
+ </File>
430
+ <File
431
+ RelativePath="..\..\..\src\socket_base.cpp"
432
+ >
433
+ </File>
434
+ <File
435
+ RelativePath="..\..\..\src\stream_engine.cpp"
436
+ >
437
+ </File>
438
+ <File
439
+ RelativePath="..\..\..\src\sub.cpp"
440
+ >
441
+ </File>
442
+ <File
443
+ RelativePath="..\..\..\src\tcp.cpp"
444
+ >
445
+ </File>
446
+ <File
447
+ RelativePath="..\..\..\src\tcp_address.cpp"
448
+ >
449
+ </File>
450
+ <File
451
+ RelativePath="..\..\..\src\tcp_connecter.cpp"
452
+ >
453
+ </File>
454
+ <File
455
+ RelativePath="..\..\..\src\tcp_listener.cpp"
456
+ >
457
+ </File>
458
+ <File
459
+ RelativePath="..\..\..\src\thread.cpp"
460
+ >
461
+ </File>
462
+ <File
463
+ RelativePath="..\..\..\src\trie.cpp"
464
+ >
465
+ </File>
466
+ <File
467
+ RelativePath="..\..\..\src\v1_decoder.cpp"
468
+ >
469
+ </File>
470
+ <File
471
+ RelativePath="..\..\..\src\v1_encoder.cpp"
472
+ >
473
+ </File>
474
+ <File
475
+ RelativePath="..\..\..\src\xpub.cpp"
476
+ >
477
+ </File>
478
+ <File
479
+ RelativePath="..\..\..\src\xsub.cpp"
480
+ >
481
+ </File>
482
+ <File
483
+ RelativePath="..\..\..\src\zmq.cpp"
484
+ >
485
+ </File>
486
+ <File
487
+ RelativePath="..\..\..\src\zmq_utils.cpp"
488
+ >
489
+ </File>
490
+ </Filter>
491
+ <Filter
492
+ Name="Header Files"
493
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
494
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
495
+ >
496
+ <File
497
+ RelativePath="..\..\..\src\address.hpp"
498
+ >
499
+ </File>
500
+ <File
501
+ RelativePath="..\..\..\src\array.hpp"
502
+ >
503
+ </File>
504
+ <File
505
+ RelativePath="..\..\..\src\atomic_counter.hpp"
506
+ >
507
+ </File>
508
+ <File
509
+ RelativePath="..\..\..\src\atomic_ptr.hpp"
510
+ >
511
+ </File>
512
+ <File
513
+ RelativePath="..\..\..\src\clock.hpp"
514
+ >
515
+ </File>
516
+ <File
517
+ RelativePath="..\..\..\src\command.hpp"
518
+ >
519
+ </File>
520
+ <File
521
+ RelativePath="..\..\..\src\config.hpp"
522
+ >
523
+ </File>
524
+ <File
525
+ RelativePath="..\..\..\src\ctx.hpp"
526
+ >
527
+ </File>
528
+ <File
529
+ RelativePath="..\..\..\src\decoder.hpp"
530
+ >
531
+ </File>
532
+ <File
533
+ RelativePath="..\..\..\src\devpoll.hpp"
534
+ >
535
+ </File>
536
+ <File
537
+ RelativePath="..\..\..\src\dist.hpp"
538
+ >
539
+ </File>
540
+ <File
541
+ RelativePath="..\..\..\src\encoder.hpp"
542
+ >
543
+ </File>
544
+ <File
545
+ RelativePath="..\..\..\src\epoll.hpp"
546
+ >
547
+ </File>
548
+ <File
549
+ RelativePath="..\..\..\src\err.hpp"
550
+ >
551
+ </File>
552
+ <File
553
+ RelativePath="..\errno.hpp"
554
+ >
555
+ </File>
556
+ <File
557
+ RelativePath="..\..\..\src\fd.hpp"
558
+ >
559
+ </File>
560
+ <File
561
+ RelativePath="..\..\..\src\fq.hpp"
562
+ >
563
+ </File>
564
+ <File
565
+ RelativePath="..\..\..\src\i_engine.hpp"
566
+ >
567
+ </File>
568
+ <File
569
+ RelativePath="..\..\..\src\i_poll_events.hpp"
570
+ >
571
+ </File>
572
+ <File
573
+ RelativePath="..\..\..\src\io_object.hpp"
574
+ >
575
+ </File>
576
+ <File
577
+ RelativePath="..\..\..\src\io_thread.hpp"
578
+ >
579
+ </File>
580
+ <File
581
+ RelativePath="..\..\..\src\ip.hpp"
582
+ >
583
+ </File>
584
+ <File
585
+ RelativePath="..\..\..\src\ipc_address.hpp"
586
+ >
587
+ </File>
588
+ <File
589
+ RelativePath="..\..\..\src\ipc_connecter.hpp"
590
+ >
591
+ </File>
592
+ <File
593
+ RelativePath="..\..\..\src\ipc_listener.hpp"
594
+ >
595
+ </File>
596
+ <File
597
+ RelativePath="..\..\..\src\kqueue.hpp"
598
+ >
599
+ </File>
600
+ <File
601
+ RelativePath="..\..\..\src\lb.hpp"
602
+ >
603
+ </File>
604
+ <File
605
+ RelativePath="..\..\..\src\likely.hpp"
606
+ >
607
+ </File>
608
+ <File
609
+ RelativePath="..\..\..\src\mailbox.hpp"
610
+ >
611
+ </File>
612
+ <File
613
+ RelativePath="..\..\..\src\msg.hpp"
614
+ >
615
+ </File>
616
+ <File
617
+ RelativePath="..\..\..\src\mtrie.hpp"
618
+ >
619
+ </File>
620
+ <File
621
+ RelativePath="..\..\..\src\mutex.hpp"
622
+ >
623
+ </File>
624
+ <File
625
+ RelativePath="..\..\..\src\object.hpp"
626
+ >
627
+ </File>
628
+ <File
629
+ RelativePath="..\..\..\src\options.hpp"
630
+ >
631
+ </File>
632
+ <File
633
+ RelativePath="..\..\..\src\own.hpp"
634
+ >
635
+ </File>
636
+ <File
637
+ RelativePath="..\..\..\src\pair.hpp"
638
+ >
639
+ </File>
640
+ <File
641
+ RelativePath="..\..\..\src\pgm_receiver.hpp"
642
+ >
643
+ </File>
644
+ <File
645
+ RelativePath="..\..\..\src\pgm_sender.hpp"
646
+ >
647
+ </File>
648
+ <File
649
+ RelativePath="..\..\..\src\pgm_socket.hpp"
650
+ >
651
+ </File>
652
+ <File
653
+ RelativePath="..\..\..\src\pipe.hpp"
654
+ >
655
+ </File>
656
+ <File
657
+ RelativePath="..\..\..\src\platform.hpp"
658
+ >
659
+ </File>
660
+ <File
661
+ RelativePath="..\..\..\src\poll.hpp"
662
+ >
663
+ </File>
664
+ <File
665
+ RelativePath="..\..\..\src\poller.hpp"
666
+ >
667
+ </File>
668
+ <File
669
+ RelativePath="..\..\..\src\poller_base.hpp"
670
+ >
671
+ </File>
672
+ <File
673
+ RelativePath="..\..\..\src\proxy.hpp"
674
+ >
675
+ </File>
676
+ <File
677
+ RelativePath="..\..\..\src\pub.hpp"
678
+ >
679
+ </File>
680
+ <File
681
+ RelativePath="..\..\..\src\pull.hpp"
682
+ >
683
+ </File>
684
+ <File
685
+ RelativePath="..\..\..\src\push.hpp"
686
+ >
687
+ </File>
688
+ <File
689
+ RelativePath="..\..\..\src\random.hpp"
690
+ >
691
+ </File>
692
+ <File
693
+ RelativePath="..\..\..\src\reaper.hpp"
694
+ >
695
+ </File>
696
+ <File
697
+ RelativePath="..\..\..\src\rep.hpp"
698
+ >
699
+ </File>
700
+ <File
701
+ RelativePath="..\..\..\src\req.hpp"
702
+ >
703
+ </File>
704
+ <File
705
+ RelativePath="..\..\..\src\select.hpp"
706
+ >
707
+ </File>
708
+ <File
709
+ RelativePath="..\..\..\src\session_base.hpp"
710
+ >
711
+ </File>
712
+ <File
713
+ RelativePath="..\..\..\src\signaler.hpp"
714
+ >
715
+ </File>
716
+ <File
717
+ RelativePath="..\..\..\src\socket_base.hpp"
718
+ >
719
+ </File>
720
+ <File
721
+ RelativePath="..\..\..\src\stdint.hpp"
722
+ >
723
+ </File>
724
+ <File
725
+ RelativePath="..\..\..\src\stream_engine.hpp"
726
+ >
727
+ </File>
728
+ <File
729
+ RelativePath="..\..\..\src\sub.hpp"
730
+ >
731
+ </File>
732
+ <File
733
+ RelativePath="..\..\..\src\tcp.hpp"
734
+ >
735
+ </File>
736
+ <File
737
+ RelativePath="..\..\..\src\tcp_address.hpp"
738
+ >
739
+ </File>
740
+ <File
741
+ RelativePath="..\..\..\src\tcp_connecter.hpp"
742
+ >
743
+ </File>
744
+ <File
745
+ RelativePath="..\..\..\src\tcp_listener.hpp"
746
+ >
747
+ </File>
748
+ <File
749
+ RelativePath="..\..\..\src\thread.hpp"
750
+ >
751
+ </File>
752
+ <File
753
+ RelativePath="..\..\..\src\trie.hpp"
754
+ >
755
+ </File>
756
+ <File
757
+ RelativePath="..\..\..\src\v1_decoder.hpp"
758
+ >
759
+ </File>
760
+ <File
761
+ RelativePath="..\..\..\src\v1_encoder.hpp"
762
+ >
763
+ </File>
764
+ <File
765
+ RelativePath="..\..\..\src\v1_protocol.hpp"
766
+ >
767
+ </File>
768
+ <File
769
+ RelativePath="..\..\..\src\windows.hpp"
770
+ >
771
+ </File>
772
+ <File
773
+ RelativePath="..\..\..\src\wire.hpp"
774
+ >
775
+ </File>
776
+ <File
777
+ RelativePath="..\..\..\src\xpub.hpp"
778
+ >
779
+ </File>
780
+ <File
781
+ RelativePath="..\..\..\src\xrep.hpp"
782
+ >
783
+ </File>
784
+ <File
785
+ RelativePath="..\..\..\src\xreq.hpp"
786
+ >
787
+ </File>
788
+ <File
789
+ RelativePath="..\..\..\src\xsub.hpp"
790
+ >
791
+ </File>
792
+ <File
793
+ RelativePath="..\..\..\src\ypipe.hpp"
794
+ >
795
+ </File>
796
+ <File
797
+ RelativePath="..\..\..\src\yqueue.hpp"
798
+ >
799
+ </File>
800
+ </Filter>
801
+ </Files>
802
+ <Globals>
803
+ </Globals>
804
+ </VisualStudioProject>