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,26 @@
1
+ #! /bin/bash
2
+ #
3
+ # Restores the libzmq tree after a build.sh. Does no harm if
4
+ # used more than once. Run from the builds/android directory.
5
+
6
+
7
+ SRC_DIR="../../src"
8
+ JNI_DIR="$SRC_DIR/jni"
9
+
10
+ if [ -d $JNI_DIR ]; then
11
+ rm -rf $JNI_DIR
12
+ fi
13
+
14
+ if [ -d $SRC_DIR/obj ]; then
15
+ rm -rf $SRC_DIR/obj
16
+ fi
17
+
18
+ if [ -d $SRC_DIR/libs ]; then
19
+ rm -rf $SRC_DIR/libs
20
+ fi
21
+
22
+ if [ -h libczmq.so ]; then
23
+ rm libczmq.so
24
+ fi
25
+
26
+ exit 0
@@ -0,0 +1,38 @@
1
+ CC=gcc
2
+ # replace the following with wherever you have installed libzmq
3
+ INCDIR=-I/code/include -I.
4
+ LIBDIR=-L/code/lib
5
+ CFLAGS=-Wall -Os -g -DDLL_EXPORT $(INCDIR)
6
+
7
+ OBJS = \
8
+ zbeacon.o \
9
+ zclock.o \
10
+ zconfig.o \
11
+ zctx.o \
12
+ zfile.o \
13
+ zframe.o \
14
+ zhash.o \
15
+ zlist.o \
16
+ zloop.o \
17
+ zmsg.o \
18
+ zmutex.o \
19
+ zsocket.o \
20
+ zsockopt.o \
21
+ zstr.o \
22
+ zsys.o \
23
+ zthread.o
24
+
25
+ %.o: ../../src/%.c
26
+ $(CC) -c -o $@ $< $(CFLAGS)
27
+
28
+ all: libczmq.dll czmq_selftest.exe
29
+
30
+ libczmq.dll: $(OBJS)
31
+ gcc -shared -o $@ $(OBJS) -Wl,--out-implib,$@.a $(LIBDIR) -lzmq -lws2_32 -liphlpapi
32
+
33
+ # the test functions are not exported into the DLL
34
+ czmq_selftest.exe: czmq_selftest.o $(OBJS)
35
+ gcc -o $@ $^ $(LIBDIR) -lzmq -lws2_32 -liphlpapi
36
+
37
+ clean:
38
+ del *.o *.a *.dll *.exe
File without changes
@@ -0,0 +1,18 @@
1
+ BuildLog.htm
2
+ Debug
3
+ Release
4
+ zfl.lib
5
+ zfl.ncb
6
+ zfl.suo
7
+ zfl.vcproj.WS200902.user.user
8
+ zfl_selftest.exe.embed.manifest
9
+ zfl_selftest.exe.embed.manifest.res
10
+ zfl_selftest.exe.intermediate.manifest
11
+ zfl_selftest.vcproj.WS200902.user.user
12
+ mt.dep
13
+ *.exe
14
+ *.obj
15
+ *.ilk
16
+ *.pdb
17
+ *.idb
18
+ *.lib
@@ -0,0 +1,17 @@
1
+ .set GIT=http://github.com/zeromq/czmq/win32
2
+
3
+ # Building czmq on Windows
4
+
5
+ ## Contents
6
+
7
+ .toc
8
+
9
+ ## Microsoft Visual C/C++
10
+
11
+ This directory contains projects and solution to build czmq as a static library.
12
+
13
+ Traps for the unwary contributor:
14
+
15
+ * To compile the C99 constructs in the czmq codebase, you must use the /TP switch. You may not be able to build czmq with older versions of MSVC, we've tested VisualStudio 2008.
16
+
17
+ * MSVC is much stricter about type conversions than gcc. Particularly when casting from void * to another pointer, explicit casts are necessary. Also for signed/unsigned character usage.
@@ -0,0 +1,69 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 10.00
3
+ # Visual Studio 2008
4
+ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "czmq", "czmq.vcproj", "{0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}"
5
+ EndProject
6
+ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "czmq_selftest", "czmq_selftest.vcproj", "{A5497C4B-1CD1-4779-9458-2CF7908E7E26}"
7
+ ProjectSection(ProjectDependencies) = postProject
8
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7} = {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}
9
+ EndProjectSection
10
+ EndProject
11
+ Global
12
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
13
+ Debug|Win32 = Debug|Win32
14
+ Debug|x64 = Debug|x64
15
+ DebugDLL|Win32 = DebugDLL|Win32
16
+ DebugDLL|x64 = DebugDLL|x64
17
+ Release|Win32 = Release|Win32
18
+ Release|x64 = Release|x64
19
+ ReleaseDLL|Win32 = ReleaseDLL|Win32
20
+ ReleaseDLL|x64 = ReleaseDLL|x64
21
+ RelWithDebInfo|Win32 = RelWithDebInfo|Win32
22
+ RelWithDebInfo|x64 = RelWithDebInfo|x64
23
+ EndGlobalSection
24
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
25
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Debug|Win32.ActiveCfg = Debug|Win32
26
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Debug|Win32.Build.0 = Debug|Win32
27
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Debug|x64.ActiveCfg = Debug|x64
28
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Debug|x64.Build.0 = Debug|x64
29
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.DebugDLL|Win32.ActiveCfg = DebugDLL|Win32
30
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.DebugDLL|Win32.Build.0 = DebugDLL|Win32
31
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.DebugDLL|x64.ActiveCfg = DebugDLL|x64
32
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.DebugDLL|x64.Build.0 = DebugDLL|x64
33
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Release|Win32.ActiveCfg = Release|Win32
34
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Release|Win32.Build.0 = Release|Win32
35
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Release|x64.ActiveCfg = Release|x64
36
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.Release|x64.Build.0 = Release|x64
37
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.ReleaseDLL|Win32.ActiveCfg = ReleaseDLL|Win32
38
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.ReleaseDLL|Win32.Build.0 = ReleaseDLL|Win32
39
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.ReleaseDLL|x64.ActiveCfg = ReleaseDLL|x64
40
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.ReleaseDLL|x64.Build.0 = ReleaseDLL|x64
41
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
42
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
43
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
44
+ {0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
45
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Debug|Win32.ActiveCfg = Debug|Win32
46
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Debug|Win32.Build.0 = Debug|Win32
47
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Debug|x64.ActiveCfg = Debug|x64
48
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Debug|x64.Build.0 = Debug|x64
49
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.DebugDLL|Win32.ActiveCfg = DebugDLL|Win32
50
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.DebugDLL|Win32.Build.0 = DebugDLL|Win32
51
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.DebugDLL|x64.ActiveCfg = DebugDLL|x64
52
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.DebugDLL|x64.Build.0 = DebugDLL|x64
53
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Release|Win32.ActiveCfg = Release|Win32
54
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Release|Win32.Build.0 = Release|Win32
55
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Release|x64.ActiveCfg = Release|x64
56
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.Release|x64.Build.0 = Release|x64
57
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.ReleaseDLL|Win32.ActiveCfg = ReleaseDLL|Win32
58
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.ReleaseDLL|Win32.Build.0 = ReleaseDLL|Win32
59
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.ReleaseDLL|x64.ActiveCfg = ReleaseDLL|x64
60
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.ReleaseDLL|x64.Build.0 = ReleaseDLL|x64
61
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
62
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
63
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
64
+ {A5497C4B-1CD1-4779-9458-2CF7908E7E26}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
65
+ EndGlobalSection
66
+ GlobalSection(SolutionProperties) = preSolution
67
+ HideSolutionNode = FALSE
68
+ EndGlobalSection
69
+ EndGlobal
@@ -0,0 +1,2246 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="9.00"
5
+ Name="czmq"
6
+ ProjectGUID="{0C4A2E28-8C9E-4B27-85D9-BB679AD84AC7}"
7
+ RootNamespace="czmq"
8
+ TargetFrameworkVersion="0"
9
+ >
10
+ <Platforms>
11
+ <Platform
12
+ Name="Win32"
13
+ />
14
+ <Platform
15
+ Name="x64"
16
+ />
17
+ </Platforms>
18
+ <ToolFiles>
19
+ </ToolFiles>
20
+ <Configurations>
21
+ <Configuration
22
+ Name="Release|Win32"
23
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
24
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
25
+ ConfigurationType="4"
26
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
27
+ UseOfMFC="0"
28
+ ATLMinimizesCRunTimeLibraryUsage="false"
29
+ CharacterSet="2"
30
+ >
31
+ <Tool
32
+ Name="VCPreBuildEventTool"
33
+ />
34
+ <Tool
35
+ Name="VCCustomBuildTool"
36
+ />
37
+ <Tool
38
+ Name="VCXMLDataGeneratorTool"
39
+ />
40
+ <Tool
41
+ Name="VCWebServiceProxyGeneratorTool"
42
+ />
43
+ <Tool
44
+ Name="VCMIDLTool"
45
+ />
46
+ <Tool
47
+ Name="VCCLCompilerTool"
48
+ Optimization="2"
49
+ InlineFunctionExpansion="1"
50
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
51
+ PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
52
+ StringPooling="true"
53
+ RuntimeLibrary="0"
54
+ EnableFunctionLevelLinking="true"
55
+ PrecompiledHeaderFile="./czmq.pch"
56
+ AssemblerListingLocation="./"
57
+ ObjectFile="./"
58
+ ProgramDataBaseFileName="./"
59
+ WarningLevel="3"
60
+ SuppressStartupBanner="true"
61
+ />
62
+ <Tool
63
+ Name="VCManagedResourceCompilerTool"
64
+ />
65
+ <Tool
66
+ Name="VCResourceCompilerTool"
67
+ PreprocessorDefinitions="NDEBUG"
68
+ Culture="2060"
69
+ />
70
+ <Tool
71
+ Name="VCPreLinkEventTool"
72
+ />
73
+ <Tool
74
+ Name="VCLibrarianTool"
75
+ OutputFile=".\czmq.lib"
76
+ SuppressStartupBanner="true"
77
+ />
78
+ <Tool
79
+ Name="VCALinkTool"
80
+ />
81
+ <Tool
82
+ Name="VCXDCMakeTool"
83
+ />
84
+ <Tool
85
+ Name="VCBscMakeTool"
86
+ SuppressStartupBanner="true"
87
+ OutputFile="./czmq.bsc"
88
+ />
89
+ <Tool
90
+ Name="VCFxCopTool"
91
+ />
92
+ <Tool
93
+ Name="VCPostBuildEventTool"
94
+ />
95
+ </Configuration>
96
+ <Configuration
97
+ Name="Release|x64"
98
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
99
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
100
+ ConfigurationType="4"
101
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
102
+ UseOfMFC="0"
103
+ ATLMinimizesCRunTimeLibraryUsage="false"
104
+ CharacterSet="2"
105
+ >
106
+ <Tool
107
+ Name="VCPreBuildEventTool"
108
+ />
109
+ <Tool
110
+ Name="VCCustomBuildTool"
111
+ />
112
+ <Tool
113
+ Name="VCXMLDataGeneratorTool"
114
+ />
115
+ <Tool
116
+ Name="VCWebServiceProxyGeneratorTool"
117
+ />
118
+ <Tool
119
+ Name="VCMIDLTool"
120
+ TargetEnvironment="3"
121
+ />
122
+ <Tool
123
+ Name="VCCLCompilerTool"
124
+ Optimization="2"
125
+ InlineFunctionExpansion="1"
126
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
127
+ PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
128
+ StringPooling="true"
129
+ RuntimeLibrary="0"
130
+ EnableFunctionLevelLinking="true"
131
+ PrecompiledHeaderFile="./czmq.pch"
132
+ AssemblerListingLocation="./"
133
+ ObjectFile="./"
134
+ ProgramDataBaseFileName="./"
135
+ WarningLevel="3"
136
+ SuppressStartupBanner="true"
137
+ />
138
+ <Tool
139
+ Name="VCManagedResourceCompilerTool"
140
+ />
141
+ <Tool
142
+ Name="VCResourceCompilerTool"
143
+ PreprocessorDefinitions="NDEBUG"
144
+ Culture="2060"
145
+ />
146
+ <Tool
147
+ Name="VCPreLinkEventTool"
148
+ />
149
+ <Tool
150
+ Name="VCLibrarianTool"
151
+ OutputFile=".\czmq.lib"
152
+ SuppressStartupBanner="true"
153
+ />
154
+ <Tool
155
+ Name="VCALinkTool"
156
+ />
157
+ <Tool
158
+ Name="VCXDCMakeTool"
159
+ />
160
+ <Tool
161
+ Name="VCBscMakeTool"
162
+ SuppressStartupBanner="true"
163
+ OutputFile="./czmq.bsc"
164
+ />
165
+ <Tool
166
+ Name="VCFxCopTool"
167
+ />
168
+ <Tool
169
+ Name="VCPostBuildEventTool"
170
+ />
171
+ </Configuration>
172
+ <Configuration
173
+ Name="Debug|Win32"
174
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
175
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
176
+ ConfigurationType="4"
177
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
178
+ UseOfMFC="0"
179
+ ATLMinimizesCRunTimeLibraryUsage="false"
180
+ CharacterSet="2"
181
+ >
182
+ <Tool
183
+ Name="VCPreBuildEventTool"
184
+ />
185
+ <Tool
186
+ Name="VCCustomBuildTool"
187
+ />
188
+ <Tool
189
+ Name="VCXMLDataGeneratorTool"
190
+ />
191
+ <Tool
192
+ Name="VCWebServiceProxyGeneratorTool"
193
+ />
194
+ <Tool
195
+ Name="VCMIDLTool"
196
+ />
197
+ <Tool
198
+ Name="VCCLCompilerTool"
199
+ Optimization="0"
200
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
201
+ PreprocessorDefinitions="WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
202
+ MinimalRebuild="false"
203
+ BasicRuntimeChecks="3"
204
+ RuntimeLibrary="1"
205
+ PrecompiledHeaderFile="./czmq.pch"
206
+ AssemblerListingLocation="./"
207
+ ObjectFile="./"
208
+ ProgramDataBaseFileName="./"
209
+ WarningLevel="3"
210
+ SuppressStartupBanner="true"
211
+ DebugInformationFormat="1"
212
+ />
213
+ <Tool
214
+ Name="VCManagedResourceCompilerTool"
215
+ />
216
+ <Tool
217
+ Name="VCResourceCompilerTool"
218
+ PreprocessorDefinitions="_DEBUG"
219
+ Culture="2060"
220
+ />
221
+ <Tool
222
+ Name="VCPreLinkEventTool"
223
+ />
224
+ <Tool
225
+ Name="VCLibrarianTool"
226
+ OutputFile=".\czmq.lib"
227
+ SuppressStartupBanner="true"
228
+ />
229
+ <Tool
230
+ Name="VCALinkTool"
231
+ />
232
+ <Tool
233
+ Name="VCXDCMakeTool"
234
+ />
235
+ <Tool
236
+ Name="VCBscMakeTool"
237
+ SuppressStartupBanner="true"
238
+ OutputFile="./czmq.bsc"
239
+ />
240
+ <Tool
241
+ Name="VCFxCopTool"
242
+ />
243
+ <Tool
244
+ Name="VCPostBuildEventTool"
245
+ />
246
+ </Configuration>
247
+ <Configuration
248
+ Name="Debug|x64"
249
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
250
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
251
+ ConfigurationType="4"
252
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
253
+ UseOfMFC="0"
254
+ ATLMinimizesCRunTimeLibraryUsage="false"
255
+ CharacterSet="2"
256
+ >
257
+ <Tool
258
+ Name="VCPreBuildEventTool"
259
+ />
260
+ <Tool
261
+ Name="VCCustomBuildTool"
262
+ />
263
+ <Tool
264
+ Name="VCXMLDataGeneratorTool"
265
+ />
266
+ <Tool
267
+ Name="VCWebServiceProxyGeneratorTool"
268
+ />
269
+ <Tool
270
+ Name="VCMIDLTool"
271
+ TargetEnvironment="3"
272
+ />
273
+ <Tool
274
+ Name="VCCLCompilerTool"
275
+ Optimization="0"
276
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
277
+ PreprocessorDefinitions="WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
278
+ MinimalRebuild="false"
279
+ BasicRuntimeChecks="3"
280
+ RuntimeLibrary="1"
281
+ PrecompiledHeaderFile="./czmq.pch"
282
+ AssemblerListingLocation="./"
283
+ ObjectFile="./"
284
+ ProgramDataBaseFileName="./"
285
+ WarningLevel="3"
286
+ SuppressStartupBanner="true"
287
+ DebugInformationFormat="1"
288
+ />
289
+ <Tool
290
+ Name="VCManagedResourceCompilerTool"
291
+ />
292
+ <Tool
293
+ Name="VCResourceCompilerTool"
294
+ PreprocessorDefinitions="_DEBUG"
295
+ Culture="2060"
296
+ />
297
+ <Tool
298
+ Name="VCPreLinkEventTool"
299
+ />
300
+ <Tool
301
+ Name="VCLibrarianTool"
302
+ OutputFile=".\czmq.lib"
303
+ SuppressStartupBanner="true"
304
+ />
305
+ <Tool
306
+ Name="VCALinkTool"
307
+ />
308
+ <Tool
309
+ Name="VCXDCMakeTool"
310
+ />
311
+ <Tool
312
+ Name="VCBscMakeTool"
313
+ SuppressStartupBanner="true"
314
+ OutputFile="./czmq.bsc"
315
+ />
316
+ <Tool
317
+ Name="VCFxCopTool"
318
+ />
319
+ <Tool
320
+ Name="VCPostBuildEventTool"
321
+ />
322
+ </Configuration>
323
+ <Configuration
324
+ Name="DebugDLL|Win32"
325
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
326
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
327
+ ConfigurationType="2"
328
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
329
+ UseOfMFC="0"
330
+ ATLMinimizesCRunTimeLibraryUsage="false"
331
+ CharacterSet="2"
332
+ >
333
+ <Tool
334
+ Name="VCPreBuildEventTool"
335
+ />
336
+ <Tool
337
+ Name="VCCustomBuildTool"
338
+ />
339
+ <Tool
340
+ Name="VCXMLDataGeneratorTool"
341
+ />
342
+ <Tool
343
+ Name="VCWebServiceProxyGeneratorTool"
344
+ />
345
+ <Tool
346
+ Name="VCMIDLTool"
347
+ />
348
+ <Tool
349
+ Name="VCCLCompilerTool"
350
+ Optimization="0"
351
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
352
+ PreprocessorDefinitions="LIBCZMQ_EXPORTS;_WIN32;WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
353
+ MinimalRebuild="false"
354
+ BasicRuntimeChecks="3"
355
+ RuntimeLibrary="3"
356
+ PrecompiledHeaderFile="./czmq.pch"
357
+ AssemblerListingLocation="./"
358
+ ObjectFile="./"
359
+ ProgramDataBaseFileName="./"
360
+ WarningLevel="3"
361
+ SuppressStartupBanner="true"
362
+ DebugInformationFormat="1"
363
+ />
364
+ <Tool
365
+ Name="VCManagedResourceCompilerTool"
366
+ />
367
+ <Tool
368
+ Name="VCResourceCompilerTool"
369
+ PreprocessorDefinitions="_DEBUG"
370
+ Culture="2060"
371
+ />
372
+ <Tool
373
+ Name="VCPreLinkEventTool"
374
+ />
375
+ <Tool
376
+ Name="VCLinkerTool"
377
+ AdditionalDependencies="libzmq.lib Ws2_32.lib Iphlpapi.lib"
378
+ AdditionalLibraryDirectories="..\..\..\libzmq\lib\"
379
+ />
380
+ <Tool
381
+ Name="VCALinkTool"
382
+ />
383
+ <Tool
384
+ Name="VCManifestTool"
385
+ />
386
+ <Tool
387
+ Name="VCXDCMakeTool"
388
+ />
389
+ <Tool
390
+ Name="VCBscMakeTool"
391
+ SuppressStartupBanner="true"
392
+ OutputFile="./czmq.bsc"
393
+ />
394
+ <Tool
395
+ Name="VCFxCopTool"
396
+ />
397
+ <Tool
398
+ Name="VCAppVerifierTool"
399
+ />
400
+ <Tool
401
+ Name="VCPostBuildEventTool"
402
+ />
403
+ </Configuration>
404
+ <Configuration
405
+ Name="DebugDLL|x64"
406
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
407
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
408
+ ConfigurationType="2"
409
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
410
+ UseOfMFC="0"
411
+ ATLMinimizesCRunTimeLibraryUsage="false"
412
+ CharacterSet="2"
413
+ >
414
+ <Tool
415
+ Name="VCPreBuildEventTool"
416
+ />
417
+ <Tool
418
+ Name="VCCustomBuildTool"
419
+ />
420
+ <Tool
421
+ Name="VCXMLDataGeneratorTool"
422
+ />
423
+ <Tool
424
+ Name="VCWebServiceProxyGeneratorTool"
425
+ />
426
+ <Tool
427
+ Name="VCMIDLTool"
428
+ TargetEnvironment="3"
429
+ />
430
+ <Tool
431
+ Name="VCCLCompilerTool"
432
+ Optimization="0"
433
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
434
+ PreprocessorDefinitions="LIBCZMQ_EXPORTS;_WIN32;WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
435
+ MinimalRebuild="false"
436
+ BasicRuntimeChecks="3"
437
+ RuntimeLibrary="3"
438
+ PrecompiledHeaderFile="./czmq.pch"
439
+ AssemblerListingLocation="./"
440
+ ObjectFile="./"
441
+ ProgramDataBaseFileName="./"
442
+ WarningLevel="3"
443
+ SuppressStartupBanner="true"
444
+ DebugInformationFormat="1"
445
+ />
446
+ <Tool
447
+ Name="VCManagedResourceCompilerTool"
448
+ />
449
+ <Tool
450
+ Name="VCResourceCompilerTool"
451
+ PreprocessorDefinitions="_DEBUG"
452
+ Culture="2060"
453
+ />
454
+ <Tool
455
+ Name="VCPreLinkEventTool"
456
+ />
457
+ <Tool
458
+ Name="VCLinkerTool"
459
+ AdditionalDependencies="libzmq.lib Ws2_32.lib Iphlpapi.lib"
460
+ AdditionalLibraryDirectories="..\..\..\libzmq\lib\x64;..\..\..\libzmq\lib"
461
+ TargetMachine="17"
462
+ />
463
+ <Tool
464
+ Name="VCALinkTool"
465
+ />
466
+ <Tool
467
+ Name="VCManifestTool"
468
+ />
469
+ <Tool
470
+ Name="VCXDCMakeTool"
471
+ />
472
+ <Tool
473
+ Name="VCBscMakeTool"
474
+ SuppressStartupBanner="true"
475
+ OutputFile="./czmq.bsc"
476
+ />
477
+ <Tool
478
+ Name="VCFxCopTool"
479
+ />
480
+ <Tool
481
+ Name="VCAppVerifierTool"
482
+ />
483
+ <Tool
484
+ Name="VCPostBuildEventTool"
485
+ />
486
+ </Configuration>
487
+ <Configuration
488
+ Name="ReleaseDLL|Win32"
489
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
490
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
491
+ ConfigurationType="2"
492
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
493
+ UseOfMFC="0"
494
+ ATLMinimizesCRunTimeLibraryUsage="false"
495
+ CharacterSet="2"
496
+ >
497
+ <Tool
498
+ Name="VCPreBuildEventTool"
499
+ />
500
+ <Tool
501
+ Name="VCCustomBuildTool"
502
+ />
503
+ <Tool
504
+ Name="VCXMLDataGeneratorTool"
505
+ />
506
+ <Tool
507
+ Name="VCWebServiceProxyGeneratorTool"
508
+ />
509
+ <Tool
510
+ Name="VCMIDLTool"
511
+ />
512
+ <Tool
513
+ Name="VCCLCompilerTool"
514
+ Optimization="2"
515
+ InlineFunctionExpansion="1"
516
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
517
+ PreprocessorDefinitions="LIBCZMQ_EXPORTS;WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
518
+ StringPooling="true"
519
+ RuntimeLibrary="2"
520
+ EnableFunctionLevelLinking="true"
521
+ PrecompiledHeaderFile="./czmq.pch"
522
+ AssemblerListingLocation="./"
523
+ ObjectFile="./"
524
+ ProgramDataBaseFileName="./"
525
+ WarningLevel="3"
526
+ SuppressStartupBanner="true"
527
+ />
528
+ <Tool
529
+ Name="VCManagedResourceCompilerTool"
530
+ />
531
+ <Tool
532
+ Name="VCResourceCompilerTool"
533
+ PreprocessorDefinitions="NDEBUG"
534
+ Culture="2060"
535
+ />
536
+ <Tool
537
+ Name="VCPreLinkEventTool"
538
+ />
539
+ <Tool
540
+ Name="VCLinkerTool"
541
+ AdditionalDependencies="libzmq.lib Ws2_32.lib Iphlpapi.lib"
542
+ AdditionalLibraryDirectories="..\..\..\libzmq\lib\"
543
+ />
544
+ <Tool
545
+ Name="VCALinkTool"
546
+ />
547
+ <Tool
548
+ Name="VCManifestTool"
549
+ />
550
+ <Tool
551
+ Name="VCXDCMakeTool"
552
+ />
553
+ <Tool
554
+ Name="VCBscMakeTool"
555
+ SuppressStartupBanner="true"
556
+ OutputFile="./czmq.bsc"
557
+ />
558
+ <Tool
559
+ Name="VCFxCopTool"
560
+ />
561
+ <Tool
562
+ Name="VCAppVerifierTool"
563
+ />
564
+ <Tool
565
+ Name="VCPostBuildEventTool"
566
+ />
567
+ </Configuration>
568
+ <Configuration
569
+ Name="ReleaseDLL|x64"
570
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
571
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
572
+ ConfigurationType="2"
573
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
574
+ UseOfMFC="0"
575
+ ATLMinimizesCRunTimeLibraryUsage="false"
576
+ CharacterSet="2"
577
+ >
578
+ <Tool
579
+ Name="VCPreBuildEventTool"
580
+ />
581
+ <Tool
582
+ Name="VCCustomBuildTool"
583
+ />
584
+ <Tool
585
+ Name="VCXMLDataGeneratorTool"
586
+ />
587
+ <Tool
588
+ Name="VCWebServiceProxyGeneratorTool"
589
+ />
590
+ <Tool
591
+ Name="VCMIDLTool"
592
+ TargetEnvironment="3"
593
+ />
594
+ <Tool
595
+ Name="VCCLCompilerTool"
596
+ Optimization="2"
597
+ InlineFunctionExpansion="1"
598
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
599
+ PreprocessorDefinitions="LIBCZMQ_EXPORTS;WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
600
+ StringPooling="true"
601
+ RuntimeLibrary="2"
602
+ EnableFunctionLevelLinking="true"
603
+ PrecompiledHeaderFile="./czmq.pch"
604
+ AssemblerListingLocation="./"
605
+ ObjectFile="./"
606
+ ProgramDataBaseFileName="./"
607
+ WarningLevel="3"
608
+ SuppressStartupBanner="true"
609
+ />
610
+ <Tool
611
+ Name="VCManagedResourceCompilerTool"
612
+ />
613
+ <Tool
614
+ Name="VCResourceCompilerTool"
615
+ PreprocessorDefinitions="NDEBUG"
616
+ Culture="2060"
617
+ />
618
+ <Tool
619
+ Name="VCPreLinkEventTool"
620
+ />
621
+ <Tool
622
+ Name="VCLinkerTool"
623
+ AdditionalDependencies="libzmq.lib Ws2_32.lib Iphlpapi.lib"
624
+ AdditionalLibraryDirectories="..\..\..\libzmq\lib\x64;..\..\..\libzmq\lib"
625
+ GenerateDebugInformation="false"
626
+ TargetMachine="17"
627
+ />
628
+ <Tool
629
+ Name="VCALinkTool"
630
+ />
631
+ <Tool
632
+ Name="VCManifestTool"
633
+ />
634
+ <Tool
635
+ Name="VCXDCMakeTool"
636
+ />
637
+ <Tool
638
+ Name="VCBscMakeTool"
639
+ SuppressStartupBanner="true"
640
+ OutputFile="./czmq.bsc"
641
+ />
642
+ <Tool
643
+ Name="VCFxCopTool"
644
+ />
645
+ <Tool
646
+ Name="VCAppVerifierTool"
647
+ />
648
+ <Tool
649
+ Name="VCPostBuildEventTool"
650
+ />
651
+ </Configuration>
652
+ <Configuration
653
+ Name="RelWithDebInfo|Win32"
654
+ OutputDirectory="$(ConfigurationName)\$(ConfigurationName)"
655
+ IntermediateDirectory="$(ConfigurationName)\$(ConfigurationName)"
656
+ ConfigurationType="2"
657
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
658
+ UseOfMFC="0"
659
+ ATLMinimizesCRunTimeLibraryUsage="false"
660
+ CharacterSet="2"
661
+ >
662
+ <Tool
663
+ Name="VCPreBuildEventTool"
664
+ />
665
+ <Tool
666
+ Name="VCCustomBuildTool"
667
+ />
668
+ <Tool
669
+ Name="VCXMLDataGeneratorTool"
670
+ />
671
+ <Tool
672
+ Name="VCWebServiceProxyGeneratorTool"
673
+ />
674
+ <Tool
675
+ Name="VCMIDLTool"
676
+ />
677
+ <Tool
678
+ Name="VCCLCompilerTool"
679
+ Optimization="2"
680
+ InlineFunctionExpansion="1"
681
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
682
+ PreprocessorDefinitions="LIBCZMQ_EXPORTS;WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
683
+ StringPooling="true"
684
+ RuntimeLibrary="2"
685
+ EnableFunctionLevelLinking="true"
686
+ PrecompiledHeaderFile="./czmq.pch"
687
+ AssemblerListingLocation="./"
688
+ ObjectFile="./"
689
+ ProgramDataBaseFileName="./"
690
+ WarningLevel="3"
691
+ SuppressStartupBanner="true"
692
+ />
693
+ <Tool
694
+ Name="VCManagedResourceCompilerTool"
695
+ />
696
+ <Tool
697
+ Name="VCResourceCompilerTool"
698
+ PreprocessorDefinitions="NDEBUG"
699
+ Culture="2060"
700
+ />
701
+ <Tool
702
+ Name="VCPreLinkEventTool"
703
+ />
704
+ <Tool
705
+ Name="VCLinkerTool"
706
+ AdditionalDependencies="libzmq.lib Ws2_32.lib Iphlpapi.lib"
707
+ AdditionalLibraryDirectories="..\..\..\libzmq\lib\"
708
+ GenerateDebugInformation="true"
709
+ />
710
+ <Tool
711
+ Name="VCALinkTool"
712
+ />
713
+ <Tool
714
+ Name="VCManifestTool"
715
+ />
716
+ <Tool
717
+ Name="VCXDCMakeTool"
718
+ />
719
+ <Tool
720
+ Name="VCBscMakeTool"
721
+ SuppressStartupBanner="true"
722
+ OutputFile="./czmq.bsc"
723
+ />
724
+ <Tool
725
+ Name="VCFxCopTool"
726
+ />
727
+ <Tool
728
+ Name="VCAppVerifierTool"
729
+ />
730
+ <Tool
731
+ Name="VCPostBuildEventTool"
732
+ />
733
+ </Configuration>
734
+ <Configuration
735
+ Name="RelWithDebInfo|x64"
736
+ OutputDirectory="$(PlatformName)\$(ConfigurationName)"
737
+ IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
738
+ ConfigurationType="2"
739
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
740
+ UseOfMFC="0"
741
+ ATLMinimizesCRunTimeLibraryUsage="false"
742
+ CharacterSet="2"
743
+ >
744
+ <Tool
745
+ Name="VCPreBuildEventTool"
746
+ />
747
+ <Tool
748
+ Name="VCCustomBuildTool"
749
+ />
750
+ <Tool
751
+ Name="VCXMLDataGeneratorTool"
752
+ />
753
+ <Tool
754
+ Name="VCWebServiceProxyGeneratorTool"
755
+ />
756
+ <Tool
757
+ Name="VCMIDLTool"
758
+ TargetEnvironment="3"
759
+ />
760
+ <Tool
761
+ Name="VCCLCompilerTool"
762
+ Optimization="2"
763
+ InlineFunctionExpansion="1"
764
+ AdditionalIncludeDirectories="..\..\include;..\..\..\libzmq\include"
765
+ PreprocessorDefinitions="LIBCZMQ_EXPORTS;WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;BASE_THREADSAFE"
766
+ StringPooling="true"
767
+ RuntimeLibrary="2"
768
+ EnableFunctionLevelLinking="true"
769
+ PrecompiledHeaderFile="./czmq.pch"
770
+ AssemblerListingLocation="./"
771
+ ObjectFile="./"
772
+ ProgramDataBaseFileName="./"
773
+ WarningLevel="3"
774
+ SuppressStartupBanner="true"
775
+ />
776
+ <Tool
777
+ Name="VCManagedResourceCompilerTool"
778
+ />
779
+ <Tool
780
+ Name="VCResourceCompilerTool"
781
+ PreprocessorDefinitions="NDEBUG"
782
+ Culture="2060"
783
+ />
784
+ <Tool
785
+ Name="VCPreLinkEventTool"
786
+ />
787
+ <Tool
788
+ Name="VCLinkerTool"
789
+ AdditionalDependencies="libzmq.lib Ws2_32.lib Iphlpapi.lib"
790
+ AdditionalLibraryDirectories="..\..\..\libzmq\lib\x64;..\..\..\libzmq\lib"
791
+ GenerateDebugInformation="true"
792
+ TargetMachine="17"
793
+ />
794
+ <Tool
795
+ Name="VCALinkTool"
796
+ />
797
+ <Tool
798
+ Name="VCManifestTool"
799
+ />
800
+ <Tool
801
+ Name="VCXDCMakeTool"
802
+ />
803
+ <Tool
804
+ Name="VCBscMakeTool"
805
+ SuppressStartupBanner="true"
806
+ OutputFile="./czmq.bsc"
807
+ />
808
+ <Tool
809
+ Name="VCFxCopTool"
810
+ />
811
+ <Tool
812
+ Name="VCAppVerifierTool"
813
+ />
814
+ <Tool
815
+ Name="VCPostBuildEventTool"
816
+ />
817
+ </Configuration>
818
+ </Configurations>
819
+ <References>
820
+ </References>
821
+ <Files>
822
+ <Filter
823
+ Name="Source Files"
824
+ Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
825
+ >
826
+ <File
827
+ RelativePath="..\..\src\zbeacon.c"
828
+ >
829
+ <FileConfiguration
830
+ Name="Release|Win32"
831
+ >
832
+ <Tool
833
+ Name="VCCLCompilerTool"
834
+ CompileAs="2"
835
+ />
836
+ </FileConfiguration>
837
+ <FileConfiguration
838
+ Name="Release|x64"
839
+ >
840
+ <Tool
841
+ Name="VCCLCompilerTool"
842
+ CompileAs="2"
843
+ />
844
+ </FileConfiguration>
845
+ <FileConfiguration
846
+ Name="Debug|Win32"
847
+ >
848
+ <Tool
849
+ Name="VCCLCompilerTool"
850
+ CompileAs="2"
851
+ />
852
+ </FileConfiguration>
853
+ <FileConfiguration
854
+ Name="Debug|x64"
855
+ >
856
+ <Tool
857
+ Name="VCCLCompilerTool"
858
+ CompileAs="2"
859
+ />
860
+ </FileConfiguration>
861
+ <FileConfiguration
862
+ Name="DebugDLL|Win32"
863
+ >
864
+ <Tool
865
+ Name="VCCLCompilerTool"
866
+ CompileAs="2"
867
+ />
868
+ </FileConfiguration>
869
+ <FileConfiguration
870
+ Name="DebugDLL|x64"
871
+ >
872
+ <Tool
873
+ Name="VCCLCompilerTool"
874
+ CompileAs="2"
875
+ />
876
+ </FileConfiguration>
877
+ <FileConfiguration
878
+ Name="ReleaseDLL|Win32"
879
+ >
880
+ <Tool
881
+ Name="VCCLCompilerTool"
882
+ CompileAs="2"
883
+ />
884
+ </FileConfiguration>
885
+ <FileConfiguration
886
+ Name="ReleaseDLL|x64"
887
+ >
888
+ <Tool
889
+ Name="VCCLCompilerTool"
890
+ CompileAs="2"
891
+ />
892
+ </FileConfiguration>
893
+ <FileConfiguration
894
+ Name="RelWithDebInfo|Win32"
895
+ >
896
+ <Tool
897
+ Name="VCCLCompilerTool"
898
+ CompileAs="2"
899
+ />
900
+ </FileConfiguration>
901
+ <FileConfiguration
902
+ Name="RelWithDebInfo|x64"
903
+ >
904
+ <Tool
905
+ Name="VCCLCompilerTool"
906
+ CompileAs="2"
907
+ />
908
+ </FileConfiguration>
909
+ </File>
910
+ <File
911
+ RelativePath="..\..\src\zclock.c"
912
+ >
913
+ <FileConfiguration
914
+ Name="Release|Win32"
915
+ >
916
+ <Tool
917
+ Name="VCCLCompilerTool"
918
+ CompileAs="2"
919
+ />
920
+ </FileConfiguration>
921
+ <FileConfiguration
922
+ Name="Release|x64"
923
+ >
924
+ <Tool
925
+ Name="VCCLCompilerTool"
926
+ CompileAs="2"
927
+ />
928
+ </FileConfiguration>
929
+ <FileConfiguration
930
+ Name="Debug|Win32"
931
+ >
932
+ <Tool
933
+ Name="VCCLCompilerTool"
934
+ CompileAs="2"
935
+ />
936
+ </FileConfiguration>
937
+ <FileConfiguration
938
+ Name="Debug|x64"
939
+ >
940
+ <Tool
941
+ Name="VCCLCompilerTool"
942
+ CompileAs="2"
943
+ />
944
+ </FileConfiguration>
945
+ <FileConfiguration
946
+ Name="DebugDLL|Win32"
947
+ >
948
+ <Tool
949
+ Name="VCCLCompilerTool"
950
+ CompileAs="2"
951
+ />
952
+ </FileConfiguration>
953
+ <FileConfiguration
954
+ Name="DebugDLL|x64"
955
+ >
956
+ <Tool
957
+ Name="VCCLCompilerTool"
958
+ CompileAs="2"
959
+ />
960
+ </FileConfiguration>
961
+ <FileConfiguration
962
+ Name="ReleaseDLL|Win32"
963
+ >
964
+ <Tool
965
+ Name="VCCLCompilerTool"
966
+ CompileAs="2"
967
+ />
968
+ </FileConfiguration>
969
+ <FileConfiguration
970
+ Name="ReleaseDLL|x64"
971
+ >
972
+ <Tool
973
+ Name="VCCLCompilerTool"
974
+ CompileAs="2"
975
+ />
976
+ </FileConfiguration>
977
+ <FileConfiguration
978
+ Name="RelWithDebInfo|Win32"
979
+ >
980
+ <Tool
981
+ Name="VCCLCompilerTool"
982
+ CompileAs="2"
983
+ />
984
+ </FileConfiguration>
985
+ <FileConfiguration
986
+ Name="RelWithDebInfo|x64"
987
+ >
988
+ <Tool
989
+ Name="VCCLCompilerTool"
990
+ CompileAs="2"
991
+ />
992
+ </FileConfiguration>
993
+ </File>
994
+ <File
995
+ RelativePath="..\..\src\zctx.c"
996
+ >
997
+ <FileConfiguration
998
+ Name="Release|Win32"
999
+ >
1000
+ <Tool
1001
+ Name="VCCLCompilerTool"
1002
+ CompileAs="2"
1003
+ />
1004
+ </FileConfiguration>
1005
+ <FileConfiguration
1006
+ Name="Release|x64"
1007
+ >
1008
+ <Tool
1009
+ Name="VCCLCompilerTool"
1010
+ CompileAs="2"
1011
+ />
1012
+ </FileConfiguration>
1013
+ <FileConfiguration
1014
+ Name="Debug|Win32"
1015
+ >
1016
+ <Tool
1017
+ Name="VCCLCompilerTool"
1018
+ CompileAs="2"
1019
+ />
1020
+ </FileConfiguration>
1021
+ <FileConfiguration
1022
+ Name="Debug|x64"
1023
+ >
1024
+ <Tool
1025
+ Name="VCCLCompilerTool"
1026
+ CompileAs="2"
1027
+ />
1028
+ </FileConfiguration>
1029
+ <FileConfiguration
1030
+ Name="DebugDLL|Win32"
1031
+ >
1032
+ <Tool
1033
+ Name="VCCLCompilerTool"
1034
+ CompileAs="2"
1035
+ />
1036
+ </FileConfiguration>
1037
+ <FileConfiguration
1038
+ Name="DebugDLL|x64"
1039
+ >
1040
+ <Tool
1041
+ Name="VCCLCompilerTool"
1042
+ CompileAs="2"
1043
+ />
1044
+ </FileConfiguration>
1045
+ <FileConfiguration
1046
+ Name="ReleaseDLL|Win32"
1047
+ >
1048
+ <Tool
1049
+ Name="VCCLCompilerTool"
1050
+ CompileAs="2"
1051
+ />
1052
+ </FileConfiguration>
1053
+ <FileConfiguration
1054
+ Name="ReleaseDLL|x64"
1055
+ >
1056
+ <Tool
1057
+ Name="VCCLCompilerTool"
1058
+ CompileAs="2"
1059
+ />
1060
+ </FileConfiguration>
1061
+ <FileConfiguration
1062
+ Name="RelWithDebInfo|Win32"
1063
+ >
1064
+ <Tool
1065
+ Name="VCCLCompilerTool"
1066
+ CompileAs="2"
1067
+ />
1068
+ </FileConfiguration>
1069
+ <FileConfiguration
1070
+ Name="RelWithDebInfo|x64"
1071
+ >
1072
+ <Tool
1073
+ Name="VCCLCompilerTool"
1074
+ CompileAs="2"
1075
+ />
1076
+ </FileConfiguration>
1077
+ </File>
1078
+ <File
1079
+ RelativePath="..\..\src\zconfig.c"
1080
+ >
1081
+ <FileConfiguration
1082
+ Name="Release|Win32"
1083
+ >
1084
+ <Tool
1085
+ Name="VCCLCompilerTool"
1086
+ CompileAs="2"
1087
+ />
1088
+ </FileConfiguration>
1089
+ <FileConfiguration
1090
+ Name="Release|x64"
1091
+ >
1092
+ <Tool
1093
+ Name="VCCLCompilerTool"
1094
+ CompileAs="2"
1095
+ />
1096
+ </FileConfiguration>
1097
+ <FileConfiguration
1098
+ Name="Debug|Win32"
1099
+ >
1100
+ <Tool
1101
+ Name="VCCLCompilerTool"
1102
+ CompileAs="2"
1103
+ />
1104
+ </FileConfiguration>
1105
+ <FileConfiguration
1106
+ Name="Debug|x64"
1107
+ >
1108
+ <Tool
1109
+ Name="VCCLCompilerTool"
1110
+ CompileAs="2"
1111
+ />
1112
+ </FileConfiguration>
1113
+ <FileConfiguration
1114
+ Name="DebugDLL|Win32"
1115
+ >
1116
+ <Tool
1117
+ Name="VCCLCompilerTool"
1118
+ CompileAs="2"
1119
+ />
1120
+ </FileConfiguration>
1121
+ <FileConfiguration
1122
+ Name="DebugDLL|x64"
1123
+ >
1124
+ <Tool
1125
+ Name="VCCLCompilerTool"
1126
+ CompileAs="2"
1127
+ />
1128
+ </FileConfiguration>
1129
+ <FileConfiguration
1130
+ Name="ReleaseDLL|Win32"
1131
+ >
1132
+ <Tool
1133
+ Name="VCCLCompilerTool"
1134
+ CompileAs="2"
1135
+ />
1136
+ </FileConfiguration>
1137
+ <FileConfiguration
1138
+ Name="ReleaseDLL|x64"
1139
+ >
1140
+ <Tool
1141
+ Name="VCCLCompilerTool"
1142
+ CompileAs="2"
1143
+ />
1144
+ </FileConfiguration>
1145
+ <FileConfiguration
1146
+ Name="RelWithDebInfo|Win32"
1147
+ >
1148
+ <Tool
1149
+ Name="VCCLCompilerTool"
1150
+ CompileAs="2"
1151
+ />
1152
+ </FileConfiguration>
1153
+ <FileConfiguration
1154
+ Name="RelWithDebInfo|x64"
1155
+ >
1156
+ <Tool
1157
+ Name="VCCLCompilerTool"
1158
+ CompileAs="2"
1159
+ />
1160
+ </FileConfiguration>
1161
+ </File>
1162
+ <File
1163
+ RelativePath="..\..\src\zfile.c"
1164
+ >
1165
+ <FileConfiguration
1166
+ Name="Release|Win32"
1167
+ >
1168
+ <Tool
1169
+ Name="VCCLCompilerTool"
1170
+ CompileAs="2"
1171
+ />
1172
+ </FileConfiguration>
1173
+ <FileConfiguration
1174
+ Name="Release|x64"
1175
+ >
1176
+ <Tool
1177
+ Name="VCCLCompilerTool"
1178
+ CompileAs="2"
1179
+ />
1180
+ </FileConfiguration>
1181
+ <FileConfiguration
1182
+ Name="Debug|Win32"
1183
+ >
1184
+ <Tool
1185
+ Name="VCCLCompilerTool"
1186
+ CompileAs="2"
1187
+ />
1188
+ </FileConfiguration>
1189
+ <FileConfiguration
1190
+ Name="Debug|x64"
1191
+ >
1192
+ <Tool
1193
+ Name="VCCLCompilerTool"
1194
+ CompileAs="2"
1195
+ />
1196
+ </FileConfiguration>
1197
+ <FileConfiguration
1198
+ Name="DebugDLL|Win32"
1199
+ >
1200
+ <Tool
1201
+ Name="VCCLCompilerTool"
1202
+ CompileAs="2"
1203
+ />
1204
+ </FileConfiguration>
1205
+ <FileConfiguration
1206
+ Name="DebugDLL|x64"
1207
+ >
1208
+ <Tool
1209
+ Name="VCCLCompilerTool"
1210
+ CompileAs="2"
1211
+ />
1212
+ </FileConfiguration>
1213
+ <FileConfiguration
1214
+ Name="ReleaseDLL|Win32"
1215
+ >
1216
+ <Tool
1217
+ Name="VCCLCompilerTool"
1218
+ CompileAs="2"
1219
+ />
1220
+ </FileConfiguration>
1221
+ <FileConfiguration
1222
+ Name="ReleaseDLL|x64"
1223
+ >
1224
+ <Tool
1225
+ Name="VCCLCompilerTool"
1226
+ CompileAs="2"
1227
+ />
1228
+ </FileConfiguration>
1229
+ <FileConfiguration
1230
+ Name="RelWithDebInfo|Win32"
1231
+ >
1232
+ <Tool
1233
+ Name="VCCLCompilerTool"
1234
+ CompileAs="2"
1235
+ />
1236
+ </FileConfiguration>
1237
+ <FileConfiguration
1238
+ Name="RelWithDebInfo|x64"
1239
+ >
1240
+ <Tool
1241
+ Name="VCCLCompilerTool"
1242
+ CompileAs="2"
1243
+ />
1244
+ </FileConfiguration>
1245
+ </File>
1246
+ <File
1247
+ RelativePath="..\..\src\zframe.c"
1248
+ >
1249
+ <FileConfiguration
1250
+ Name="Release|Win32"
1251
+ >
1252
+ <Tool
1253
+ Name="VCCLCompilerTool"
1254
+ CompileAs="2"
1255
+ />
1256
+ </FileConfiguration>
1257
+ <FileConfiguration
1258
+ Name="Release|x64"
1259
+ >
1260
+ <Tool
1261
+ Name="VCCLCompilerTool"
1262
+ CompileAs="2"
1263
+ />
1264
+ </FileConfiguration>
1265
+ <FileConfiguration
1266
+ Name="Debug|Win32"
1267
+ >
1268
+ <Tool
1269
+ Name="VCCLCompilerTool"
1270
+ CompileAs="2"
1271
+ />
1272
+ </FileConfiguration>
1273
+ <FileConfiguration
1274
+ Name="Debug|x64"
1275
+ >
1276
+ <Tool
1277
+ Name="VCCLCompilerTool"
1278
+ CompileAs="2"
1279
+ />
1280
+ </FileConfiguration>
1281
+ <FileConfiguration
1282
+ Name="DebugDLL|Win32"
1283
+ >
1284
+ <Tool
1285
+ Name="VCCLCompilerTool"
1286
+ CompileAs="2"
1287
+ />
1288
+ </FileConfiguration>
1289
+ <FileConfiguration
1290
+ Name="DebugDLL|x64"
1291
+ >
1292
+ <Tool
1293
+ Name="VCCLCompilerTool"
1294
+ CompileAs="2"
1295
+ />
1296
+ </FileConfiguration>
1297
+ <FileConfiguration
1298
+ Name="ReleaseDLL|Win32"
1299
+ >
1300
+ <Tool
1301
+ Name="VCCLCompilerTool"
1302
+ CompileAs="2"
1303
+ />
1304
+ </FileConfiguration>
1305
+ <FileConfiguration
1306
+ Name="ReleaseDLL|x64"
1307
+ >
1308
+ <Tool
1309
+ Name="VCCLCompilerTool"
1310
+ CompileAs="2"
1311
+ />
1312
+ </FileConfiguration>
1313
+ <FileConfiguration
1314
+ Name="RelWithDebInfo|Win32"
1315
+ >
1316
+ <Tool
1317
+ Name="VCCLCompilerTool"
1318
+ CompileAs="2"
1319
+ />
1320
+ </FileConfiguration>
1321
+ <FileConfiguration
1322
+ Name="RelWithDebInfo|x64"
1323
+ >
1324
+ <Tool
1325
+ Name="VCCLCompilerTool"
1326
+ CompileAs="2"
1327
+ />
1328
+ </FileConfiguration>
1329
+ </File>
1330
+ <File
1331
+ RelativePath="..\..\src\zhash.c"
1332
+ >
1333
+ <FileConfiguration
1334
+ Name="Release|Win32"
1335
+ >
1336
+ <Tool
1337
+ Name="VCCLCompilerTool"
1338
+ CompileAs="2"
1339
+ />
1340
+ </FileConfiguration>
1341
+ <FileConfiguration
1342
+ Name="Release|x64"
1343
+ >
1344
+ <Tool
1345
+ Name="VCCLCompilerTool"
1346
+ CompileAs="2"
1347
+ />
1348
+ </FileConfiguration>
1349
+ <FileConfiguration
1350
+ Name="Debug|Win32"
1351
+ >
1352
+ <Tool
1353
+ Name="VCCLCompilerTool"
1354
+ CompileAs="2"
1355
+ />
1356
+ </FileConfiguration>
1357
+ <FileConfiguration
1358
+ Name="Debug|x64"
1359
+ >
1360
+ <Tool
1361
+ Name="VCCLCompilerTool"
1362
+ CompileAs="2"
1363
+ />
1364
+ </FileConfiguration>
1365
+ <FileConfiguration
1366
+ Name="DebugDLL|Win32"
1367
+ >
1368
+ <Tool
1369
+ Name="VCCLCompilerTool"
1370
+ CompileAs="2"
1371
+ />
1372
+ </FileConfiguration>
1373
+ <FileConfiguration
1374
+ Name="DebugDLL|x64"
1375
+ >
1376
+ <Tool
1377
+ Name="VCCLCompilerTool"
1378
+ CompileAs="2"
1379
+ />
1380
+ </FileConfiguration>
1381
+ <FileConfiguration
1382
+ Name="ReleaseDLL|Win32"
1383
+ >
1384
+ <Tool
1385
+ Name="VCCLCompilerTool"
1386
+ CompileAs="2"
1387
+ />
1388
+ </FileConfiguration>
1389
+ <FileConfiguration
1390
+ Name="ReleaseDLL|x64"
1391
+ >
1392
+ <Tool
1393
+ Name="VCCLCompilerTool"
1394
+ CompileAs="2"
1395
+ />
1396
+ </FileConfiguration>
1397
+ <FileConfiguration
1398
+ Name="RelWithDebInfo|Win32"
1399
+ >
1400
+ <Tool
1401
+ Name="VCCLCompilerTool"
1402
+ CompileAs="2"
1403
+ />
1404
+ </FileConfiguration>
1405
+ <FileConfiguration
1406
+ Name="RelWithDebInfo|x64"
1407
+ >
1408
+ <Tool
1409
+ Name="VCCLCompilerTool"
1410
+ CompileAs="2"
1411
+ />
1412
+ </FileConfiguration>
1413
+ </File>
1414
+ <File
1415
+ RelativePath="..\..\src\zlist.c"
1416
+ >
1417
+ <FileConfiguration
1418
+ Name="Release|Win32"
1419
+ >
1420
+ <Tool
1421
+ Name="VCCLCompilerTool"
1422
+ CompileAs="2"
1423
+ />
1424
+ </FileConfiguration>
1425
+ <FileConfiguration
1426
+ Name="Release|x64"
1427
+ >
1428
+ <Tool
1429
+ Name="VCCLCompilerTool"
1430
+ CompileAs="2"
1431
+ />
1432
+ </FileConfiguration>
1433
+ <FileConfiguration
1434
+ Name="Debug|Win32"
1435
+ >
1436
+ <Tool
1437
+ Name="VCCLCompilerTool"
1438
+ CompileAs="2"
1439
+ />
1440
+ </FileConfiguration>
1441
+ <FileConfiguration
1442
+ Name="Debug|x64"
1443
+ >
1444
+ <Tool
1445
+ Name="VCCLCompilerTool"
1446
+ CompileAs="2"
1447
+ />
1448
+ </FileConfiguration>
1449
+ <FileConfiguration
1450
+ Name="DebugDLL|Win32"
1451
+ >
1452
+ <Tool
1453
+ Name="VCCLCompilerTool"
1454
+ CompileAs="2"
1455
+ />
1456
+ </FileConfiguration>
1457
+ <FileConfiguration
1458
+ Name="DebugDLL|x64"
1459
+ >
1460
+ <Tool
1461
+ Name="VCCLCompilerTool"
1462
+ CompileAs="2"
1463
+ />
1464
+ </FileConfiguration>
1465
+ <FileConfiguration
1466
+ Name="ReleaseDLL|Win32"
1467
+ >
1468
+ <Tool
1469
+ Name="VCCLCompilerTool"
1470
+ CompileAs="2"
1471
+ />
1472
+ </FileConfiguration>
1473
+ <FileConfiguration
1474
+ Name="ReleaseDLL|x64"
1475
+ >
1476
+ <Tool
1477
+ Name="VCCLCompilerTool"
1478
+ CompileAs="2"
1479
+ />
1480
+ </FileConfiguration>
1481
+ <FileConfiguration
1482
+ Name="RelWithDebInfo|Win32"
1483
+ >
1484
+ <Tool
1485
+ Name="VCCLCompilerTool"
1486
+ CompileAs="2"
1487
+ />
1488
+ </FileConfiguration>
1489
+ <FileConfiguration
1490
+ Name="RelWithDebInfo|x64"
1491
+ >
1492
+ <Tool
1493
+ Name="VCCLCompilerTool"
1494
+ CompileAs="2"
1495
+ />
1496
+ </FileConfiguration>
1497
+ </File>
1498
+ <File
1499
+ RelativePath="..\..\src\zloop.c"
1500
+ >
1501
+ <FileConfiguration
1502
+ Name="Release|Win32"
1503
+ >
1504
+ <Tool
1505
+ Name="VCCLCompilerTool"
1506
+ CompileAs="2"
1507
+ />
1508
+ </FileConfiguration>
1509
+ <FileConfiguration
1510
+ Name="Release|x64"
1511
+ >
1512
+ <Tool
1513
+ Name="VCCLCompilerTool"
1514
+ CompileAs="2"
1515
+ />
1516
+ </FileConfiguration>
1517
+ <FileConfiguration
1518
+ Name="Debug|Win32"
1519
+ >
1520
+ <Tool
1521
+ Name="VCCLCompilerTool"
1522
+ CompileAs="2"
1523
+ />
1524
+ </FileConfiguration>
1525
+ <FileConfiguration
1526
+ Name="Debug|x64"
1527
+ >
1528
+ <Tool
1529
+ Name="VCCLCompilerTool"
1530
+ CompileAs="2"
1531
+ />
1532
+ </FileConfiguration>
1533
+ <FileConfiguration
1534
+ Name="DebugDLL|Win32"
1535
+ >
1536
+ <Tool
1537
+ Name="VCCLCompilerTool"
1538
+ CompileAs="2"
1539
+ />
1540
+ </FileConfiguration>
1541
+ <FileConfiguration
1542
+ Name="DebugDLL|x64"
1543
+ >
1544
+ <Tool
1545
+ Name="VCCLCompilerTool"
1546
+ CompileAs="2"
1547
+ />
1548
+ </FileConfiguration>
1549
+ <FileConfiguration
1550
+ Name="ReleaseDLL|Win32"
1551
+ >
1552
+ <Tool
1553
+ Name="VCCLCompilerTool"
1554
+ CompileAs="2"
1555
+ />
1556
+ </FileConfiguration>
1557
+ <FileConfiguration
1558
+ Name="ReleaseDLL|x64"
1559
+ >
1560
+ <Tool
1561
+ Name="VCCLCompilerTool"
1562
+ CompileAs="2"
1563
+ />
1564
+ </FileConfiguration>
1565
+ <FileConfiguration
1566
+ Name="RelWithDebInfo|Win32"
1567
+ >
1568
+ <Tool
1569
+ Name="VCCLCompilerTool"
1570
+ CompileAs="2"
1571
+ />
1572
+ </FileConfiguration>
1573
+ <FileConfiguration
1574
+ Name="RelWithDebInfo|x64"
1575
+ >
1576
+ <Tool
1577
+ Name="VCCLCompilerTool"
1578
+ CompileAs="2"
1579
+ />
1580
+ </FileConfiguration>
1581
+ </File>
1582
+ <File
1583
+ RelativePath="..\..\src\zmsg.c"
1584
+ >
1585
+ <FileConfiguration
1586
+ Name="Release|Win32"
1587
+ >
1588
+ <Tool
1589
+ Name="VCCLCompilerTool"
1590
+ CompileAs="2"
1591
+ />
1592
+ </FileConfiguration>
1593
+ <FileConfiguration
1594
+ Name="Release|x64"
1595
+ >
1596
+ <Tool
1597
+ Name="VCCLCompilerTool"
1598
+ CompileAs="2"
1599
+ />
1600
+ </FileConfiguration>
1601
+ <FileConfiguration
1602
+ Name="Debug|Win32"
1603
+ >
1604
+ <Tool
1605
+ Name="VCCLCompilerTool"
1606
+ CompileAs="2"
1607
+ />
1608
+ </FileConfiguration>
1609
+ <FileConfiguration
1610
+ Name="Debug|x64"
1611
+ >
1612
+ <Tool
1613
+ Name="VCCLCompilerTool"
1614
+ CompileAs="2"
1615
+ />
1616
+ </FileConfiguration>
1617
+ <FileConfiguration
1618
+ Name="DebugDLL|Win32"
1619
+ >
1620
+ <Tool
1621
+ Name="VCCLCompilerTool"
1622
+ CompileAs="2"
1623
+ />
1624
+ </FileConfiguration>
1625
+ <FileConfiguration
1626
+ Name="DebugDLL|x64"
1627
+ >
1628
+ <Tool
1629
+ Name="VCCLCompilerTool"
1630
+ CompileAs="2"
1631
+ />
1632
+ </FileConfiguration>
1633
+ <FileConfiguration
1634
+ Name="ReleaseDLL|Win32"
1635
+ >
1636
+ <Tool
1637
+ Name="VCCLCompilerTool"
1638
+ CompileAs="2"
1639
+ />
1640
+ </FileConfiguration>
1641
+ <FileConfiguration
1642
+ Name="ReleaseDLL|x64"
1643
+ >
1644
+ <Tool
1645
+ Name="VCCLCompilerTool"
1646
+ CompileAs="2"
1647
+ />
1648
+ </FileConfiguration>
1649
+ <FileConfiguration
1650
+ Name="RelWithDebInfo|Win32"
1651
+ >
1652
+ <Tool
1653
+ Name="VCCLCompilerTool"
1654
+ CompileAs="2"
1655
+ />
1656
+ </FileConfiguration>
1657
+ <FileConfiguration
1658
+ Name="RelWithDebInfo|x64"
1659
+ >
1660
+ <Tool
1661
+ Name="VCCLCompilerTool"
1662
+ CompileAs="2"
1663
+ />
1664
+ </FileConfiguration>
1665
+ </File>
1666
+ <File
1667
+ RelativePath="..\..\src\zmutex.c"
1668
+ >
1669
+ <FileConfiguration
1670
+ Name="Release|Win32"
1671
+ >
1672
+ <Tool
1673
+ Name="VCCLCompilerTool"
1674
+ CompileAs="2"
1675
+ />
1676
+ </FileConfiguration>
1677
+ <FileConfiguration
1678
+ Name="Release|x64"
1679
+ >
1680
+ <Tool
1681
+ Name="VCCLCompilerTool"
1682
+ CompileAs="2"
1683
+ />
1684
+ </FileConfiguration>
1685
+ <FileConfiguration
1686
+ Name="Debug|Win32"
1687
+ >
1688
+ <Tool
1689
+ Name="VCCLCompilerTool"
1690
+ CompileAs="2"
1691
+ />
1692
+ </FileConfiguration>
1693
+ <FileConfiguration
1694
+ Name="Debug|x64"
1695
+ >
1696
+ <Tool
1697
+ Name="VCCLCompilerTool"
1698
+ CompileAs="2"
1699
+ />
1700
+ </FileConfiguration>
1701
+ <FileConfiguration
1702
+ Name="DebugDLL|Win32"
1703
+ >
1704
+ <Tool
1705
+ Name="VCCLCompilerTool"
1706
+ CompileAs="2"
1707
+ />
1708
+ </FileConfiguration>
1709
+ <FileConfiguration
1710
+ Name="DebugDLL|x64"
1711
+ >
1712
+ <Tool
1713
+ Name="VCCLCompilerTool"
1714
+ CompileAs="2"
1715
+ />
1716
+ </FileConfiguration>
1717
+ <FileConfiguration
1718
+ Name="ReleaseDLL|Win32"
1719
+ >
1720
+ <Tool
1721
+ Name="VCCLCompilerTool"
1722
+ CompileAs="2"
1723
+ />
1724
+ </FileConfiguration>
1725
+ <FileConfiguration
1726
+ Name="ReleaseDLL|x64"
1727
+ >
1728
+ <Tool
1729
+ Name="VCCLCompilerTool"
1730
+ CompileAs="2"
1731
+ />
1732
+ </FileConfiguration>
1733
+ <FileConfiguration
1734
+ Name="RelWithDebInfo|Win32"
1735
+ >
1736
+ <Tool
1737
+ Name="VCCLCompilerTool"
1738
+ CompileAs="2"
1739
+ />
1740
+ </FileConfiguration>
1741
+ <FileConfiguration
1742
+ Name="RelWithDebInfo|x64"
1743
+ >
1744
+ <Tool
1745
+ Name="VCCLCompilerTool"
1746
+ CompileAs="2"
1747
+ />
1748
+ </FileConfiguration>
1749
+ </File>
1750
+ <File
1751
+ RelativePath="..\..\src\zsocket.c"
1752
+ >
1753
+ <FileConfiguration
1754
+ Name="Release|Win32"
1755
+ >
1756
+ <Tool
1757
+ Name="VCCLCompilerTool"
1758
+ CompileAs="2"
1759
+ />
1760
+ </FileConfiguration>
1761
+ <FileConfiguration
1762
+ Name="Release|x64"
1763
+ >
1764
+ <Tool
1765
+ Name="VCCLCompilerTool"
1766
+ CompileAs="2"
1767
+ />
1768
+ </FileConfiguration>
1769
+ <FileConfiguration
1770
+ Name="Debug|Win32"
1771
+ >
1772
+ <Tool
1773
+ Name="VCCLCompilerTool"
1774
+ CompileAs="2"
1775
+ />
1776
+ </FileConfiguration>
1777
+ <FileConfiguration
1778
+ Name="Debug|x64"
1779
+ >
1780
+ <Tool
1781
+ Name="VCCLCompilerTool"
1782
+ CompileAs="2"
1783
+ />
1784
+ </FileConfiguration>
1785
+ <FileConfiguration
1786
+ Name="DebugDLL|Win32"
1787
+ >
1788
+ <Tool
1789
+ Name="VCCLCompilerTool"
1790
+ CompileAs="2"
1791
+ />
1792
+ </FileConfiguration>
1793
+ <FileConfiguration
1794
+ Name="DebugDLL|x64"
1795
+ >
1796
+ <Tool
1797
+ Name="VCCLCompilerTool"
1798
+ CompileAs="2"
1799
+ />
1800
+ </FileConfiguration>
1801
+ <FileConfiguration
1802
+ Name="ReleaseDLL|Win32"
1803
+ >
1804
+ <Tool
1805
+ Name="VCCLCompilerTool"
1806
+ CompileAs="2"
1807
+ />
1808
+ </FileConfiguration>
1809
+ <FileConfiguration
1810
+ Name="ReleaseDLL|x64"
1811
+ >
1812
+ <Tool
1813
+ Name="VCCLCompilerTool"
1814
+ CompileAs="2"
1815
+ />
1816
+ </FileConfiguration>
1817
+ <FileConfiguration
1818
+ Name="RelWithDebInfo|Win32"
1819
+ >
1820
+ <Tool
1821
+ Name="VCCLCompilerTool"
1822
+ CompileAs="2"
1823
+ />
1824
+ </FileConfiguration>
1825
+ <FileConfiguration
1826
+ Name="RelWithDebInfo|x64"
1827
+ >
1828
+ <Tool
1829
+ Name="VCCLCompilerTool"
1830
+ CompileAs="2"
1831
+ />
1832
+ </FileConfiguration>
1833
+ </File>
1834
+ <File
1835
+ RelativePath="..\..\src\zsockopt.c"
1836
+ >
1837
+ <FileConfiguration
1838
+ Name="Release|Win32"
1839
+ >
1840
+ <Tool
1841
+ Name="VCCLCompilerTool"
1842
+ CompileAs="2"
1843
+ />
1844
+ </FileConfiguration>
1845
+ <FileConfiguration
1846
+ Name="Release|x64"
1847
+ >
1848
+ <Tool
1849
+ Name="VCCLCompilerTool"
1850
+ CompileAs="2"
1851
+ />
1852
+ </FileConfiguration>
1853
+ <FileConfiguration
1854
+ Name="Debug|Win32"
1855
+ >
1856
+ <Tool
1857
+ Name="VCCLCompilerTool"
1858
+ CompileAs="2"
1859
+ />
1860
+ </FileConfiguration>
1861
+ <FileConfiguration
1862
+ Name="Debug|x64"
1863
+ >
1864
+ <Tool
1865
+ Name="VCCLCompilerTool"
1866
+ CompileAs="2"
1867
+ />
1868
+ </FileConfiguration>
1869
+ <FileConfiguration
1870
+ Name="DebugDLL|Win32"
1871
+ >
1872
+ <Tool
1873
+ Name="VCCLCompilerTool"
1874
+ CompileAs="2"
1875
+ />
1876
+ </FileConfiguration>
1877
+ <FileConfiguration
1878
+ Name="DebugDLL|x64"
1879
+ >
1880
+ <Tool
1881
+ Name="VCCLCompilerTool"
1882
+ CompileAs="2"
1883
+ />
1884
+ </FileConfiguration>
1885
+ <FileConfiguration
1886
+ Name="ReleaseDLL|Win32"
1887
+ >
1888
+ <Tool
1889
+ Name="VCCLCompilerTool"
1890
+ CompileAs="2"
1891
+ />
1892
+ </FileConfiguration>
1893
+ <FileConfiguration
1894
+ Name="ReleaseDLL|x64"
1895
+ >
1896
+ <Tool
1897
+ Name="VCCLCompilerTool"
1898
+ CompileAs="2"
1899
+ />
1900
+ </FileConfiguration>
1901
+ <FileConfiguration
1902
+ Name="RelWithDebInfo|Win32"
1903
+ >
1904
+ <Tool
1905
+ Name="VCCLCompilerTool"
1906
+ CompileAs="2"
1907
+ />
1908
+ </FileConfiguration>
1909
+ <FileConfiguration
1910
+ Name="RelWithDebInfo|x64"
1911
+ >
1912
+ <Tool
1913
+ Name="VCCLCompilerTool"
1914
+ CompileAs="2"
1915
+ />
1916
+ </FileConfiguration>
1917
+ </File>
1918
+ <File
1919
+ RelativePath="..\..\src\zstr.c"
1920
+ >
1921
+ <FileConfiguration
1922
+ Name="Release|Win32"
1923
+ >
1924
+ <Tool
1925
+ Name="VCCLCompilerTool"
1926
+ CompileAs="2"
1927
+ />
1928
+ </FileConfiguration>
1929
+ <FileConfiguration
1930
+ Name="Release|x64"
1931
+ >
1932
+ <Tool
1933
+ Name="VCCLCompilerTool"
1934
+ CompileAs="2"
1935
+ />
1936
+ </FileConfiguration>
1937
+ <FileConfiguration
1938
+ Name="Debug|Win32"
1939
+ >
1940
+ <Tool
1941
+ Name="VCCLCompilerTool"
1942
+ CompileAs="2"
1943
+ />
1944
+ </FileConfiguration>
1945
+ <FileConfiguration
1946
+ Name="Debug|x64"
1947
+ >
1948
+ <Tool
1949
+ Name="VCCLCompilerTool"
1950
+ CompileAs="2"
1951
+ />
1952
+ </FileConfiguration>
1953
+ <FileConfiguration
1954
+ Name="DebugDLL|Win32"
1955
+ >
1956
+ <Tool
1957
+ Name="VCCLCompilerTool"
1958
+ CompileAs="2"
1959
+ />
1960
+ </FileConfiguration>
1961
+ <FileConfiguration
1962
+ Name="DebugDLL|x64"
1963
+ >
1964
+ <Tool
1965
+ Name="VCCLCompilerTool"
1966
+ CompileAs="2"
1967
+ />
1968
+ </FileConfiguration>
1969
+ <FileConfiguration
1970
+ Name="ReleaseDLL|Win32"
1971
+ >
1972
+ <Tool
1973
+ Name="VCCLCompilerTool"
1974
+ CompileAs="2"
1975
+ />
1976
+ </FileConfiguration>
1977
+ <FileConfiguration
1978
+ Name="ReleaseDLL|x64"
1979
+ >
1980
+ <Tool
1981
+ Name="VCCLCompilerTool"
1982
+ CompileAs="2"
1983
+ />
1984
+ </FileConfiguration>
1985
+ <FileConfiguration
1986
+ Name="RelWithDebInfo|Win32"
1987
+ >
1988
+ <Tool
1989
+ Name="VCCLCompilerTool"
1990
+ CompileAs="2"
1991
+ />
1992
+ </FileConfiguration>
1993
+ <FileConfiguration
1994
+ Name="RelWithDebInfo|x64"
1995
+ >
1996
+ <Tool
1997
+ Name="VCCLCompilerTool"
1998
+ CompileAs="2"
1999
+ />
2000
+ </FileConfiguration>
2001
+ </File>
2002
+ <File
2003
+ RelativePath="..\..\src\zsys.c"
2004
+ >
2005
+ <FileConfiguration
2006
+ Name="Release|Win32"
2007
+ >
2008
+ <Tool
2009
+ Name="VCCLCompilerTool"
2010
+ CompileAs="2"
2011
+ />
2012
+ </FileConfiguration>
2013
+ <FileConfiguration
2014
+ Name="Release|x64"
2015
+ >
2016
+ <Tool
2017
+ Name="VCCLCompilerTool"
2018
+ CompileAs="2"
2019
+ />
2020
+ </FileConfiguration>
2021
+ <FileConfiguration
2022
+ Name="ReleaseDLL|Win32"
2023
+ >
2024
+ <Tool
2025
+ Name="VCCLCompilerTool"
2026
+ CompileAs="2"
2027
+ />
2028
+ </FileConfiguration>
2029
+ <FileConfiguration
2030
+ Name="ReleaseDLL|x64"
2031
+ >
2032
+ <Tool
2033
+ Name="VCCLCompilerTool"
2034
+ CompileAs="2"
2035
+ />
2036
+ </FileConfiguration>
2037
+ <FileConfiguration
2038
+ Name="RelWithDebInfo|Win32"
2039
+ >
2040
+ <Tool
2041
+ Name="VCCLCompilerTool"
2042
+ CompileAs="2"
2043
+ />
2044
+ </FileConfiguration>
2045
+ <FileConfiguration
2046
+ Name="RelWithDebInfo|x64"
2047
+ >
2048
+ <Tool
2049
+ Name="VCCLCompilerTool"
2050
+ CompileAs="2"
2051
+ />
2052
+ </FileConfiguration>
2053
+ </File>
2054
+ <File
2055
+ RelativePath="..\..\src\zthread.c"
2056
+ >
2057
+ <FileConfiguration
2058
+ Name="Release|Win32"
2059
+ >
2060
+ <Tool
2061
+ Name="VCCLCompilerTool"
2062
+ CompileAs="2"
2063
+ />
2064
+ </FileConfiguration>
2065
+ <FileConfiguration
2066
+ Name="Release|x64"
2067
+ >
2068
+ <Tool
2069
+ Name="VCCLCompilerTool"
2070
+ CompileAs="2"
2071
+ />
2072
+ </FileConfiguration>
2073
+ <FileConfiguration
2074
+ Name="Debug|Win32"
2075
+ >
2076
+ <Tool
2077
+ Name="VCCLCompilerTool"
2078
+ CompileAs="2"
2079
+ />
2080
+ </FileConfiguration>
2081
+ <FileConfiguration
2082
+ Name="Debug|x64"
2083
+ >
2084
+ <Tool
2085
+ Name="VCCLCompilerTool"
2086
+ CompileAs="2"
2087
+ />
2088
+ </FileConfiguration>
2089
+ <FileConfiguration
2090
+ Name="DebugDLL|Win32"
2091
+ >
2092
+ <Tool
2093
+ Name="VCCLCompilerTool"
2094
+ CompileAs="2"
2095
+ />
2096
+ </FileConfiguration>
2097
+ <FileConfiguration
2098
+ Name="DebugDLL|x64"
2099
+ >
2100
+ <Tool
2101
+ Name="VCCLCompilerTool"
2102
+ CompileAs="2"
2103
+ />
2104
+ </FileConfiguration>
2105
+ <FileConfiguration
2106
+ Name="ReleaseDLL|Win32"
2107
+ >
2108
+ <Tool
2109
+ Name="VCCLCompilerTool"
2110
+ CompileAs="2"
2111
+ />
2112
+ </FileConfiguration>
2113
+ <FileConfiguration
2114
+ Name="ReleaseDLL|x64"
2115
+ >
2116
+ <Tool
2117
+ Name="VCCLCompilerTool"
2118
+ CompileAs="2"
2119
+ />
2120
+ </FileConfiguration>
2121
+ <FileConfiguration
2122
+ Name="RelWithDebInfo|Win32"
2123
+ >
2124
+ <Tool
2125
+ Name="VCCLCompilerTool"
2126
+ CompileAs="2"
2127
+ />
2128
+ </FileConfiguration>
2129
+ <FileConfiguration
2130
+ Name="RelWithDebInfo|x64"
2131
+ >
2132
+ <Tool
2133
+ Name="VCCLCompilerTool"
2134
+ CompileAs="2"
2135
+ />
2136
+ </FileConfiguration>
2137
+ </File>
2138
+ </Filter>
2139
+ <Filter
2140
+ Name="Header Files"
2141
+ >
2142
+ <File
2143
+ RelativePath="..\..\include\czmq.h"
2144
+ >
2145
+ </File>
2146
+ <File
2147
+ RelativePath="..\..\include\czmq_prelude.h"
2148
+ >
2149
+ </File>
2150
+ <File
2151
+ RelativePath="..\..\include\zbeacon.h"
2152
+ >
2153
+ <FileConfiguration
2154
+ Name="Debug|Win32"
2155
+ >
2156
+ <Tool
2157
+ Name="VCCustomBuildTool"
2158
+ />
2159
+ </FileConfiguration>
2160
+ <FileConfiguration
2161
+ Name="Debug|x64"
2162
+ >
2163
+ <Tool
2164
+ Name="VCCustomBuildTool"
2165
+ />
2166
+ </FileConfiguration>
2167
+ <FileConfiguration
2168
+ Name="DebugDLL|Win32"
2169
+ >
2170
+ <Tool
2171
+ Name="VCCustomBuildTool"
2172
+ />
2173
+ </FileConfiguration>
2174
+ <FileConfiguration
2175
+ Name="DebugDLL|x64"
2176
+ >
2177
+ <Tool
2178
+ Name="VCCustomBuildTool"
2179
+ />
2180
+ </FileConfiguration>
2181
+ </File>
2182
+ <File
2183
+ RelativePath="..\..\include\zclock.h"
2184
+ >
2185
+ </File>
2186
+ <File
2187
+ RelativePath="..\..\include\zconfig.h"
2188
+ >
2189
+ </File>
2190
+ <File
2191
+ RelativePath="..\..\include\zctx.h"
2192
+ >
2193
+ </File>
2194
+ <File
2195
+ RelativePath="..\..\include\zfile.h"
2196
+ >
2197
+ </File>
2198
+ <File
2199
+ RelativePath="..\..\include\zframe.h"
2200
+ >
2201
+ </File>
2202
+ <File
2203
+ RelativePath="..\..\include\zhash.h"
2204
+ >
2205
+ </File>
2206
+ <File
2207
+ RelativePath="..\..\include\zlist.h"
2208
+ >
2209
+ </File>
2210
+ <File
2211
+ RelativePath="..\..\include\zloop.h"
2212
+ >
2213
+ </File>
2214
+ <File
2215
+ RelativePath="..\..\include\zmsg.h"
2216
+ >
2217
+ </File>
2218
+ <File
2219
+ RelativePath="..\..\include\zmutex.h"
2220
+ >
2221
+ </File>
2222
+ <File
2223
+ RelativePath="..\..\include\zsocket.h"
2224
+ >
2225
+ </File>
2226
+ <File
2227
+ RelativePath="..\..\include\zsockopt.h"
2228
+ >
2229
+ </File>
2230
+ <File
2231
+ RelativePath="..\..\include\zstr.h"
2232
+ >
2233
+ </File>
2234
+ <File
2235
+ RelativePath="..\..\include\zsys.h"
2236
+ >
2237
+ </File>
2238
+ <File
2239
+ RelativePath="..\..\include\zthread.h"
2240
+ >
2241
+ </File>
2242
+ </Filter>
2243
+ </Files>
2244
+ <Globals>
2245
+ </Globals>
2246
+ </VisualStudioProject>