mt-libcouchbase 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (707) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +1 -0
  5. data/.travis.yml +38 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE +24 -0
  8. data/README.md +445 -0
  9. data/Rakefile +76 -0
  10. data/ext/README.md +6 -0
  11. data/ext/Rakefile +19 -0
  12. data/ext/libcouchbase/.gitignore +132 -0
  13. data/ext/libcouchbase/CMakeLists.txt +455 -0
  14. data/ext/libcouchbase/CONTRIBUTING.md +105 -0
  15. data/ext/libcouchbase/LICENSE +202 -0
  16. data/ext/libcouchbase/README.markdown +195 -0
  17. data/ext/libcouchbase/RELEASE_NOTES.markdown +3523 -0
  18. data/ext/libcouchbase/cmake/Modules/ConfigureDtrace.cmake +52 -0
  19. data/ext/libcouchbase/cmake/Modules/CopyPDB.cmake +42 -0
  20. data/ext/libcouchbase/cmake/Modules/DistScript.cmake +17 -0
  21. data/ext/libcouchbase/cmake/Modules/DownloadLcbDep.cmake +18 -0
  22. data/ext/libcouchbase/cmake/Modules/FindCouchbaseHdrHistogram.cmake +15 -0
  23. data/ext/libcouchbase/cmake/Modules/FindCouchbaseLibev.cmake +73 -0
  24. data/ext/libcouchbase/cmake/Modules/FindCouchbaseLibevent.cmake +54 -0
  25. data/ext/libcouchbase/cmake/Modules/FindCouchbaseLibuv.cmake +57 -0
  26. data/ext/libcouchbase/cmake/Modules/FindProfiler.cmake +16 -0
  27. data/ext/libcouchbase/cmake/Modules/GenerateConfigDotH.cmake +49 -0
  28. data/ext/libcouchbase/cmake/Modules/GetLibcouchbaseFlags.cmake +142 -0
  29. data/ext/libcouchbase/cmake/Modules/GetPlatformCCInfo.cmake +45 -0
  30. data/ext/libcouchbase/cmake/Modules/GetVersionInfo.cmake +70 -0
  31. data/ext/libcouchbase/cmake/config-cmake.h.in +80 -0
  32. data/ext/libcouchbase/cmake/configure +355 -0
  33. data/ext/libcouchbase/cmake/defs.mk.in +6 -0
  34. data/ext/libcouchbase/cmake/dtrace-instr-link.pl +51 -0
  35. data/ext/libcouchbase/cmake/libcouchbase.stp.in +829 -0
  36. data/ext/libcouchbase/cmake/source_files.cmake +104 -0
  37. data/ext/libcouchbase/contrib/cJSON/cJSON.c +1022 -0
  38. data/ext/libcouchbase/contrib/cJSON/cJSON.h +158 -0
  39. data/ext/libcouchbase/contrib/cbsasl/CMakeLists.txt +25 -0
  40. data/ext/libcouchbase/contrib/cbsasl/COPYING +202 -0
  41. data/ext/libcouchbase/contrib/cbsasl/include/cbsasl/cbsasl.h +259 -0
  42. data/ext/libcouchbase/contrib/cbsasl/src/client.c +419 -0
  43. data/ext/libcouchbase/contrib/cbsasl/src/common.c +50 -0
  44. data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/hmac.c +67 -0
  45. data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/hmac.h +33 -0
  46. data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/md5.c +296 -0
  47. data/ext/libcouchbase/contrib/cbsasl/src/cram-md5/md5.h +45 -0
  48. data/ext/libcouchbase/contrib/cbsasl/src/hash.c +573 -0
  49. data/ext/libcouchbase/contrib/cbsasl/src/hash.h +15 -0
  50. data/ext/libcouchbase/contrib/cbsasl/src/scram-sha/scram_utils.c +500 -0
  51. data/ext/libcouchbase/contrib/cbsasl/src/scram-sha/scram_utils.h +99 -0
  52. data/ext/libcouchbase/contrib/cbsasl/src/util.h +31 -0
  53. data/ext/libcouchbase/contrib/cliopts/CMakeLists.txt +2 -0
  54. data/ext/libcouchbase/contrib/cliopts/cliopts.c +938 -0
  55. data/ext/libcouchbase/contrib/cliopts/cliopts.h +610 -0
  56. data/ext/libcouchbase/contrib/genhash/genhash.c +371 -0
  57. data/ext/libcouchbase/contrib/genhash/genhash.h +241 -0
  58. data/ext/libcouchbase/contrib/gtest-1.7.0/CHANGES +157 -0
  59. data/ext/libcouchbase/contrib/gtest-1.7.0/CMakeLists.txt +252 -0
  60. data/ext/libcouchbase/contrib/gtest-1.7.0/CONTRIBUTORS +37 -0
  61. data/ext/libcouchbase/contrib/gtest-1.7.0/LICENSE +28 -0
  62. data/ext/libcouchbase/contrib/gtest-1.7.0/MINIFY.sh +15 -0
  63. data/ext/libcouchbase/contrib/gtest-1.7.0/README +435 -0
  64. data/ext/libcouchbase/contrib/gtest-1.7.0/cmake/internal_utils.cmake +227 -0
  65. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-death-test.h +294 -0
  66. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-message.h +250 -0
  67. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-param-test.h +1421 -0
  68. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-param-test.h.pump +487 -0
  69. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-printers.h +855 -0
  70. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-spi.h +232 -0
  71. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-test-part.h +179 -0
  72. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest-typed-test.h +259 -0
  73. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest.h +2291 -0
  74. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest_pred_impl.h +358 -0
  75. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/gtest_prod.h +58 -0
  76. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h +319 -0
  77. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-filepath.h +206 -0
  78. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-internal.h +1158 -0
  79. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h +233 -0
  80. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h +5143 -0
  81. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump +301 -0
  82. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-param-util.h +619 -0
  83. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-port.h +1947 -0
  84. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-string.h +167 -0
  85. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-tuple.h +1012 -0
  86. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump +339 -0
  87. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-type-util.h +3331 -0
  88. data/ext/libcouchbase/contrib/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump +297 -0
  89. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-all.cc +48 -0
  90. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-death-test.cc +1344 -0
  91. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-filepath.cc +382 -0
  92. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-internal-inl.h +1218 -0
  93. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-port.cc +805 -0
  94. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-printers.cc +363 -0
  95. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-test-part.cc +110 -0
  96. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest-typed-test.cc +110 -0
  97. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest.cc +5015 -0
  98. data/ext/libcouchbase/contrib/gtest-1.7.0/src/gtest_main.cc +38 -0
  99. data/ext/libcouchbase/contrib/http_parser/LICENSE-MIT +23 -0
  100. data/ext/libcouchbase/contrib/http_parser/README.md +178 -0
  101. data/ext/libcouchbase/contrib/http_parser/http_parser.c +2060 -0
  102. data/ext/libcouchbase/contrib/http_parser/http_parser.h +321 -0
  103. data/ext/libcouchbase/contrib/jsonsl/LICENSE +20 -0
  104. data/ext/libcouchbase/contrib/jsonsl/jsonsl.c +1452 -0
  105. data/ext/libcouchbase/contrib/jsonsl/jsonsl.h +971 -0
  106. data/ext/libcouchbase/contrib/lcb-jsoncpp/CMakeLists.txt +6 -0
  107. data/ext/libcouchbase/contrib/lcb-jsoncpp/LICENSE +55 -0
  108. data/ext/libcouchbase/contrib/lcb-jsoncpp/lcb-jsoncpp-forwards.h +255 -0
  109. data/ext/libcouchbase/contrib/lcb-jsoncpp/lcb-jsoncpp.cpp +4893 -0
  110. data/ext/libcouchbase/contrib/lcb-jsoncpp/lcb-jsoncpp.h +1961 -0
  111. data/ext/libcouchbase/contrib/snappy/CMakeLists.txt +7 -0
  112. data/ext/libcouchbase/contrib/snappy/COPYING +28 -0
  113. data/ext/libcouchbase/contrib/snappy/snappy-c.cc +90 -0
  114. data/ext/libcouchbase/contrib/snappy/snappy-c.h +138 -0
  115. data/ext/libcouchbase/contrib/snappy/snappy-internal.h +150 -0
  116. data/ext/libcouchbase/contrib/snappy/snappy-lcb-msvc.h +5 -0
  117. data/ext/libcouchbase/contrib/snappy/snappy-sinksource.cc +75 -0
  118. data/ext/libcouchbase/contrib/snappy/snappy-sinksource.h +137 -0
  119. data/ext/libcouchbase/contrib/snappy/snappy-stubs-internal.cc +42 -0
  120. data/ext/libcouchbase/contrib/snappy/snappy-stubs-internal.h +491 -0
  121. data/ext/libcouchbase/contrib/snappy/snappy-stubs-public.h +100 -0
  122. data/ext/libcouchbase/contrib/snappy/snappy.cc +1312 -0
  123. data/ext/libcouchbase/contrib/snappy/snappy.h +184 -0
  124. data/ext/libcouchbase/contrib/win32-defs/iocpdefs.h +133 -0
  125. data/ext/libcouchbase/contrib/win32-defs/mingwdefs.h +4396 -0
  126. data/ext/libcouchbase/contrib/win32-defs/win_stdint.h +258 -0
  127. data/ext/libcouchbase/doc/Doxyfile +2495 -0
  128. data/ext/libcouchbase/doc/DoxygenLayout.xml +109 -0
  129. data/ext/libcouchbase/doc/Makefile +44 -0
  130. data/ext/libcouchbase/doc/apiattr.h +117 -0
  131. data/ext/libcouchbase/doc/cbc-n1qlback.markdown +88 -0
  132. data/ext/libcouchbase/doc/cbc-pillowfight.markdown +296 -0
  133. data/ext/libcouchbase/doc/cbc-subdoc.markdown +299 -0
  134. data/ext/libcouchbase/doc/cbc.markdown +763 -0
  135. data/ext/libcouchbase/doc/cbcrc.markdown +52 -0
  136. data/ext/libcouchbase/doc/common-additional-options.markdown +82 -0
  137. data/ext/libcouchbase/doc/common-options.markdown +71 -0
  138. data/ext/libcouchbase/doc/environment.h +93 -0
  139. data/ext/libcouchbase/doc/example/threads.c +77 -0
  140. data/ext/libcouchbase/doc/footer.html +22 -0
  141. data/ext/libcouchbase/doc/genman.sh +25 -0
  142. data/ext/libcouchbase/doc/header.html +52 -0
  143. data/ext/libcouchbase/doc/intro.h +130 -0
  144. data/ext/libcouchbase/doc/mainpage.h +136 -0
  145. data/ext/libcouchbase/doc/man/cbc-admin.1 +1 -0
  146. data/ext/libcouchbase/doc/man/cbc-bucket-create.1 +1 -0
  147. data/ext/libcouchbase/doc/man/cbc-bucket-delete.1 +1 -0
  148. data/ext/libcouchbase/doc/man/cbc-cat.1 +1 -0
  149. data/ext/libcouchbase/doc/man/cbc-connstr.1 +1 -0
  150. data/ext/libcouchbase/doc/man/cbc-cp.1 +1 -0
  151. data/ext/libcouchbase/doc/man/cbc-create.1 +1 -0
  152. data/ext/libcouchbase/doc/man/cbc-decr.1 +1 -0
  153. data/ext/libcouchbase/doc/man/cbc-flush.1 +1 -0
  154. data/ext/libcouchbase/doc/man/cbc-hash.1 +1 -0
  155. data/ext/libcouchbase/doc/man/cbc-incr.1 +1 -0
  156. data/ext/libcouchbase/doc/man/cbc-lock.1 +1 -0
  157. data/ext/libcouchbase/doc/man/cbc-mcflush.1 +1 -0
  158. data/ext/libcouchbase/doc/man/cbc-mcversion.1 +1 -0
  159. data/ext/libcouchbase/doc/man/cbc-n1ql.1 +1 -0
  160. data/ext/libcouchbase/doc/man/cbc-n1qlback.1 +198 -0
  161. data/ext/libcouchbase/doc/man/cbc-observe.1 +1 -0
  162. data/ext/libcouchbase/doc/man/cbc-pillowfight.1 +499 -0
  163. data/ext/libcouchbase/doc/man/cbc-ping.1 +1 -0
  164. data/ext/libcouchbase/doc/man/cbc-rm.1 +1 -0
  165. data/ext/libcouchbase/doc/man/cbc-role-list.1 +1 -0
  166. data/ext/libcouchbase/doc/man/cbc-stats.1 +1 -0
  167. data/ext/libcouchbase/doc/man/cbc-subdoc.1 +494 -0
  168. data/ext/libcouchbase/doc/man/cbc-unlock.1 +1 -0
  169. data/ext/libcouchbase/doc/man/cbc-user-delete.1 +1 -0
  170. data/ext/libcouchbase/doc/man/cbc-user-list.1 +1 -0
  171. data/ext/libcouchbase/doc/man/cbc-user-upsert.1 +1 -0
  172. data/ext/libcouchbase/doc/man/cbc-verbosity.1 +1 -0
  173. data/ext/libcouchbase/doc/man/cbc-version.1 +1 -0
  174. data/ext/libcouchbase/doc/man/cbc-view.1 +1 -0
  175. data/ext/libcouchbase/doc/man/cbc-watch.1 +1 -0
  176. data/ext/libcouchbase/doc/man/cbc.1 +1035 -0
  177. data/ext/libcouchbase/doc/man/cbcrc.4 +71 -0
  178. data/ext/libcouchbase/doc/style.css +1162 -0
  179. data/ext/libcouchbase/example/CMakeLists.txt +52 -0
  180. data/ext/libcouchbase/example/README.markdown +47 -0
  181. data/ext/libcouchbase/example/analytics/.gitignore +1 -0
  182. data/ext/libcouchbase/example/analytics/analytics.c +158 -0
  183. data/ext/libcouchbase/example/analytics/build-queries.rb +34 -0
  184. data/ext/libcouchbase/example/analytics/cJSON.c +1 -0
  185. data/ext/libcouchbase/example/analytics/cJSON.h +1 -0
  186. data/ext/libcouchbase/example/analytics/queries/00-show-dataverse.json +5 -0
  187. data/ext/libcouchbase/example/analytics/queries/01-setup-dataset-breweries.json +6 -0
  188. data/ext/libcouchbase/example/analytics/queries/02-setup-dataset-beers.json +6 -0
  189. data/ext/libcouchbase/example/analytics/queries/03-initiate-shadow.json +6 -0
  190. data/ext/libcouchbase/example/analytics/queries/04-list-datasets.json +7 -0
  191. data/ext/libcouchbase/example/analytics/queries/05-count-breweries.json +5 -0
  192. data/ext/libcouchbase/example/analytics/queries/06-first-brewery.json +6 -0
  193. data/ext/libcouchbase/example/analytics/queries/07-key-based-lookup.json +6 -0
  194. data/ext/libcouchbase/example/analytics/queries/08-exact-match-lookup.json +7 -0
  195. data/ext/libcouchbase/example/analytics/queries/09-exact-match-lookup-different-shape.json +6 -0
  196. data/ext/libcouchbase/example/analytics/queries/10-other-query-filters.json +6 -0
  197. data/ext/libcouchbase/example/analytics/queries/11-equijoin.json +9 -0
  198. data/ext/libcouchbase/example/analytics/queries/12-equijoin-select-star.json +10 -0
  199. data/ext/libcouchbase/example/analytics/queries/13-ansi-join.json +8 -0
  200. data/ext/libcouchbase/example/analytics/queries/14-join-select-values.json +8 -0
  201. data/ext/libcouchbase/example/analytics/queries/15-nested-outer-join.json +7 -0
  202. data/ext/libcouchbase/example/analytics/queries/16-theta-join.json +8 -0
  203. data/ext/libcouchbase/example/analytics/queries/17-existential-quantification.json +9 -0
  204. data/ext/libcouchbase/example/analytics/queries/18-universal-quantification.json +7 -0
  205. data/ext/libcouchbase/example/analytics/queries/19-simple-aggregation.json +6 -0
  206. data/ext/libcouchbase/example/analytics/queries/20-simple-aggregation-unwrapped-value.json +6 -0
  207. data/ext/libcouchbase/example/analytics/queries/21-simple-aggregation-explicit.json +6 -0
  208. data/ext/libcouchbase/example/analytics/queries/22-grouping-and-aggregation.json +6 -0
  209. data/ext/libcouchbase/example/analytics/queries/23-grouping-and-aggregation-with-hint.json +7 -0
  210. data/ext/libcouchbase/example/analytics/queries/24-grouping-and-limits.json +7 -0
  211. data/ext/libcouchbase/example/analytics/queries/25-named-parameters.json +7 -0
  212. data/ext/libcouchbase/example/analytics/queries/26-positional-parameters.json +7 -0
  213. data/ext/libcouchbase/example/analytics/queries.h +113 -0
  214. data/ext/libcouchbase/example/crypto/.gitignore +2 -0
  215. data/ext/libcouchbase/example/crypto/Makefile +13 -0
  216. data/ext/libcouchbase/example/crypto/common_provider.c +26 -0
  217. data/ext/libcouchbase/example/crypto/common_provider.h +33 -0
  218. data/ext/libcouchbase/example/crypto/openssl_symmetric_decrypt.c +144 -0
  219. data/ext/libcouchbase/example/crypto/openssl_symmetric_encrypt.c +146 -0
  220. data/ext/libcouchbase/example/crypto/openssl_symmetric_provider.c +271 -0
  221. data/ext/libcouchbase/example/crypto/openssl_symmetric_provider.h +29 -0
  222. data/ext/libcouchbase/example/db/db.c +171 -0
  223. data/ext/libcouchbase/example/db/vb.c +227 -0
  224. data/ext/libcouchbase/example/fts/.gitignore +1 -0
  225. data/ext/libcouchbase/example/fts/build-queries.rb +33 -0
  226. data/ext/libcouchbase/example/fts/fts.c +142 -0
  227. data/ext/libcouchbase/example/fts/queries/00-simple-text-query.json +12 -0
  228. data/ext/libcouchbase/example/fts/queries/01-simple-text-query-on-non-default-index.json +9 -0
  229. data/ext/libcouchbase/example/fts/queries/02-simple-text-query-on-stored-field.json +13 -0
  230. data/ext/libcouchbase/example/fts/queries/03-match-query-with-facet.json +19 -0
  231. data/ext/libcouchbase/example/fts/queries/04-docid-query.json +11 -0
  232. data/ext/libcouchbase/example/fts/queries/05-unanalyzed-term-query-with-fuzziness-level-of-0.json +13 -0
  233. data/ext/libcouchbase/example/fts/queries/06-unanalyzed-term-query-with-fuzziness-level-of-2.json +14 -0
  234. data/ext/libcouchbase/example/fts/queries/07-match-phrase-query.json +13 -0
  235. data/ext/libcouchbase/example/fts/queries/08-phrase-query.json +16 -0
  236. data/ext/libcouchbase/example/fts/queries/09-query-string-query.json +9 -0
  237. data/ext/libcouchbase/example/fts/queries/10-conjunction-query.json +21 -0
  238. data/ext/libcouchbase/example/fts/queries/11-wild-card-query.json +13 -0
  239. data/ext/libcouchbase/example/fts/queries/12-numeric-range-query.json +11 -0
  240. data/ext/libcouchbase/example/fts/queries/13-regexp-query.json +13 -0
  241. data/ext/libcouchbase/example/fts/queries.h +61 -0
  242. data/ext/libcouchbase/example/instancepool/main.cc +112 -0
  243. data/ext/libcouchbase/example/instancepool/pool.cc +102 -0
  244. data/ext/libcouchbase/example/instancepool/pool.h +69 -0
  245. data/ext/libcouchbase/example/libeventdirect/main.c +222 -0
  246. data/ext/libcouchbase/example/mcc/mcc.cc +246 -0
  247. data/ext/libcouchbase/example/minimal/.gitignore +1 -0
  248. data/ext/libcouchbase/example/minimal/minimal.c +132 -0
  249. data/ext/libcouchbase/example/minimal/query.c +185 -0
  250. data/ext/libcouchbase/example/observe/durability.c +102 -0
  251. data/ext/libcouchbase/example/observe/observe.c +159 -0
  252. data/ext/libcouchbase/example/subdoc/subdoc-multi.cc +143 -0
  253. data/ext/libcouchbase/example/subdoc/subdoc-simple.cc +201 -0
  254. data/ext/libcouchbase/example/subdoc/subdoc-xattrs.c +286 -0
  255. data/ext/libcouchbase/example/tick/tick.c +119 -0
  256. data/ext/libcouchbase/example/tracing/.gitignore +2 -0
  257. data/ext/libcouchbase/example/tracing/Makefile +8 -0
  258. data/ext/libcouchbase/example/tracing/cJSON.c +1 -0
  259. data/ext/libcouchbase/example/tracing/cJSON.h +1 -0
  260. data/ext/libcouchbase/example/tracing/tracing.c +439 -0
  261. data/ext/libcouchbase/example/tracing/views.c +444 -0
  262. data/ext/libcouchbase/example/users/README +48 -0
  263. data/ext/libcouchbase/example/users/users.c +147 -0
  264. data/ext/libcouchbase/example/views/views-example.cc +83 -0
  265. data/ext/libcouchbase/include/libcouchbase/_cxxwrap.h +150 -0
  266. data/ext/libcouchbase/include/libcouchbase/api-legacy.h +1689 -0
  267. data/ext/libcouchbase/include/libcouchbase/api3.h +2 -0
  268. data/ext/libcouchbase/include/libcouchbase/assert.h +44 -0
  269. data/ext/libcouchbase/include/libcouchbase/auth.h +297 -0
  270. data/ext/libcouchbase/include/libcouchbase/cbft.h +151 -0
  271. data/ext/libcouchbase/include/libcouchbase/cntl-private.h +319 -0
  272. data/ext/libcouchbase/include/libcouchbase/cntl.h +1418 -0
  273. data/ext/libcouchbase/include/libcouchbase/configuration.h.in +29 -0
  274. data/ext/libcouchbase/include/libcouchbase/couchbase.h +4089 -0
  275. data/ext/libcouchbase/include/libcouchbase/crypto.h +306 -0
  276. data/ext/libcouchbase/include/libcouchbase/deprecated.h +312 -0
  277. data/ext/libcouchbase/include/libcouchbase/error.h +680 -0
  278. data/ext/libcouchbase/include/libcouchbase/http.h +1 -0
  279. data/ext/libcouchbase/include/libcouchbase/iops.h +1053 -0
  280. data/ext/libcouchbase/include/libcouchbase/ixmgmt.h +263 -0
  281. data/ext/libcouchbase/include/libcouchbase/kvbuf.h +137 -0
  282. data/ext/libcouchbase/include/libcouchbase/metrics.h +79 -0
  283. data/ext/libcouchbase/include/libcouchbase/n1ql.h +539 -0
  284. data/ext/libcouchbase/include/libcouchbase/pktfwd.h +270 -0
  285. data/ext/libcouchbase/include/libcouchbase/plugins/io/bsdio-inl.c +370 -0
  286. data/ext/libcouchbase/include/libcouchbase/plugins/io/wsaerr-inl.c +76 -0
  287. data/ext/libcouchbase/include/libcouchbase/plugins/io/wsaerr.h +199 -0
  288. data/ext/libcouchbase/include/libcouchbase/subdoc.h +347 -0
  289. data/ext/libcouchbase/include/libcouchbase/sysdefs.h +98 -0
  290. data/ext/libcouchbase/include/libcouchbase/tracing.h +437 -0
  291. data/ext/libcouchbase/include/libcouchbase/vbucket.h +680 -0
  292. data/ext/libcouchbase/include/libcouchbase/views.h +357 -0
  293. data/ext/libcouchbase/include/libcouchbase/visibility.h +66 -0
  294. data/ext/libcouchbase/include/memcached/COPYING +30 -0
  295. data/ext/libcouchbase/include/memcached/README +10 -0
  296. data/ext/libcouchbase/include/memcached/protocol_binary.h +885 -0
  297. data/ext/libcouchbase/packaging/README +7 -0
  298. data/ext/libcouchbase/packaging/abicheck/.gitignore +4 -0
  299. data/ext/libcouchbase/packaging/abicheck/Makefile +17 -0
  300. data/ext/libcouchbase/packaging/abicheck/README.md +27 -0
  301. data/ext/libcouchbase/packaging/abicheck/template.xml +3 -0
  302. data/ext/libcouchbase/packaging/deb/compat +1 -0
  303. data/ext/libcouchbase/packaging/deb/control +72 -0
  304. data/ext/libcouchbase/packaging/deb/copyright +10 -0
  305. data/ext/libcouchbase/packaging/deb/libcouchbase-dev.docs +3 -0
  306. data/ext/libcouchbase/packaging/deb/package.mk +31 -0
  307. data/ext/libcouchbase/packaging/deb/rules +46 -0
  308. data/ext/libcouchbase/packaging/deb/source/format +1 -0
  309. data/ext/libcouchbase/packaging/distinfo/README +1 -0
  310. data/ext/libcouchbase/packaging/distinfo/distinfo.cmake.in +4 -0
  311. data/ext/libcouchbase/packaging/dllversion.rc.in +39 -0
  312. data/ext/libcouchbase/packaging/libcouchbase.pc.in +10 -0
  313. data/ext/libcouchbase/packaging/nuget/libcouchbase.autopkg +76 -0
  314. data/ext/libcouchbase/packaging/parse-git-describe.pl +166 -0
  315. data/ext/libcouchbase/packaging/rpm/libcouchbase.spec.in +101 -0
  316. data/ext/libcouchbase/packaging/rpm/package.mk +40 -0
  317. data/ext/libcouchbase/plugins/io/iocp/CMakeLists.txt +9 -0
  318. data/ext/libcouchbase/plugins/io/iocp/iocp_iops.c +467 -0
  319. data/ext/libcouchbase/plugins/io/iocp/iocp_iops.h +217 -0
  320. data/ext/libcouchbase/plugins/io/iocp/iocp_loop.c +295 -0
  321. data/ext/libcouchbase/plugins/io/iocp/iocp_timer.c +79 -0
  322. data/ext/libcouchbase/plugins/io/iocp/iocp_util.c +229 -0
  323. data/ext/libcouchbase/plugins/io/libev/CMakeLists.txt +31 -0
  324. data/ext/libcouchbase/plugins/io/libev/libev_io_opts.h +66 -0
  325. data/ext/libcouchbase/plugins/io/libev/plugin-libev.c +289 -0
  326. data/ext/libcouchbase/plugins/io/libevent/CMakeLists.txt +31 -0
  327. data/ext/libcouchbase/plugins/io/libevent/libevent_io_opts.h +67 -0
  328. data/ext/libcouchbase/plugins/io/libevent/plugin-libevent.c +292 -0
  329. data/ext/libcouchbase/plugins/io/libuv/CMakeLists.txt +44 -0
  330. data/ext/libcouchbase/plugins/io/libuv/libuv_compat.h +218 -0
  331. data/ext/libcouchbase/plugins/io/libuv/libuv_io_opts.h +118 -0
  332. data/ext/libcouchbase/plugins/io/libuv/plugin-internal.h +155 -0
  333. data/ext/libcouchbase/plugins/io/libuv/plugin-libuv.c +709 -0
  334. data/ext/libcouchbase/plugins/io/select/CMakeLists.txt +13 -0
  335. data/ext/libcouchbase/plugins/io/select/plugin-select.c +451 -0
  336. data/ext/libcouchbase/plugins/io/select/select_io_opts.h +39 -0
  337. data/ext/libcouchbase/src/README.md +101 -0
  338. data/ext/libcouchbase/src/aspend.h +105 -0
  339. data/ext/libcouchbase/src/auth-priv.h +85 -0
  340. data/ext/libcouchbase/src/auth.cc +146 -0
  341. data/ext/libcouchbase/src/bootstrap.cc +263 -0
  342. data/ext/libcouchbase/src/bootstrap.h +149 -0
  343. data/ext/libcouchbase/src/bucketconfig/bc_cccp.cc +450 -0
  344. data/ext/libcouchbase/src/bucketconfig/bc_file.cc +281 -0
  345. data/ext/libcouchbase/src/bucketconfig/bc_http.cc +527 -0
  346. data/ext/libcouchbase/src/bucketconfig/bc_http.h +107 -0
  347. data/ext/libcouchbase/src/bucketconfig/bc_static.cc +150 -0
  348. data/ext/libcouchbase/src/bucketconfig/clconfig.h +700 -0
  349. data/ext/libcouchbase/src/bucketconfig/confmon.cc +403 -0
  350. data/ext/libcouchbase/src/callbacks.c +380 -0
  351. data/ext/libcouchbase/src/cbft.cc +253 -0
  352. data/ext/libcouchbase/src/cntl.cc +1057 -0
  353. data/ext/libcouchbase/src/config_static.h +176 -0
  354. data/ext/libcouchbase/src/connspec.cc +555 -0
  355. data/ext/libcouchbase/src/connspec.h +155 -0
  356. data/ext/libcouchbase/src/crypto.cc +399 -0
  357. data/ext/libcouchbase/src/ctx-log-inl.h +44 -0
  358. data/ext/libcouchbase/src/dns-srv.cc +146 -0
  359. data/ext/libcouchbase/src/dump.cc +103 -0
  360. data/ext/libcouchbase/src/errmap.cc +173 -0
  361. data/ext/libcouchbase/src/errmap.h +271 -0
  362. data/ext/libcouchbase/src/getconfig.cc +72 -0
  363. data/ext/libcouchbase/src/gethrtime.c +109 -0
  364. data/ext/libcouchbase/src/handler.cc +1101 -0
  365. data/ext/libcouchbase/src/hashtable.c +75 -0
  366. data/ext/libcouchbase/src/hdr_timings.c +92 -0
  367. data/ext/libcouchbase/src/hostlist.cc +293 -0
  368. data/ext/libcouchbase/src/hostlist.h +160 -0
  369. data/ext/libcouchbase/src/http/http-priv.h +326 -0
  370. data/ext/libcouchbase/src/http/http.cc +672 -0
  371. data/ext/libcouchbase/src/http/http.h +1 -0
  372. data/ext/libcouchbase/src/http/http_io.cc +316 -0
  373. data/ext/libcouchbase/src/instance.cc +917 -0
  374. data/ext/libcouchbase/src/internal.h +285 -0
  375. data/ext/libcouchbase/src/iofactory.c +575 -0
  376. data/ext/libcouchbase/src/jsparse/parser.cc +445 -0
  377. data/ext/libcouchbase/src/jsparse/parser.h +159 -0
  378. data/ext/libcouchbase/src/lcbht/lcbht.cc +177 -0
  379. data/ext/libcouchbase/src/lcbht/lcbht.h +210 -0
  380. data/ext/libcouchbase/src/lcbio/connect.cc +603 -0
  381. data/ext/libcouchbase/src/lcbio/connect.h +400 -0
  382. data/ext/libcouchbase/src/lcbio/ctx.c +658 -0
  383. data/ext/libcouchbase/src/lcbio/ctx.h +405 -0
  384. data/ext/libcouchbase/src/lcbio/iotable.c +290 -0
  385. data/ext/libcouchbase/src/lcbio/iotable.h +169 -0
  386. data/ext/libcouchbase/src/lcbio/ioutils.cc +356 -0
  387. data/ext/libcouchbase/src/lcbio/ioutils.h +144 -0
  388. data/ext/libcouchbase/src/lcbio/lcbio.h +51 -0
  389. data/ext/libcouchbase/src/lcbio/manager.cc +579 -0
  390. data/ext/libcouchbase/src/lcbio/manager.h +195 -0
  391. data/ext/libcouchbase/src/lcbio/protoctx.c +84 -0
  392. data/ext/libcouchbase/src/lcbio/rw-inl.h +137 -0
  393. data/ext/libcouchbase/src/lcbio/ssl.h +159 -0
  394. data/ext/libcouchbase/src/lcbio/timer-cxx.h +87 -0
  395. data/ext/libcouchbase/src/lcbio/timer-ng.h +179 -0
  396. data/ext/libcouchbase/src/lcbio/timer.c +132 -0
  397. data/ext/libcouchbase/src/legacy.c +431 -0
  398. data/ext/libcouchbase/src/list.c +144 -0
  399. data/ext/libcouchbase/src/list.h +127 -0
  400. data/ext/libcouchbase/src/logging.c +244 -0
  401. data/ext/libcouchbase/src/logging.h +88 -0
  402. data/ext/libcouchbase/src/mc/compress.cc +171 -0
  403. data/ext/libcouchbase/src/mc/compress.h +56 -0
  404. data/ext/libcouchbase/src/mc/forward.c +186 -0
  405. data/ext/libcouchbase/src/mc/forward.h +90 -0
  406. data/ext/libcouchbase/src/mc/iovcursor-inl.h +279 -0
  407. data/ext/libcouchbase/src/mc/iovcursor.h +66 -0
  408. data/ext/libcouchbase/src/mc/mcreq-flush-inl.h +115 -0
  409. data/ext/libcouchbase/src/mc/mcreq.c +983 -0
  410. data/ext/libcouchbase/src/mc/mcreq.h +1015 -0
  411. data/ext/libcouchbase/src/mcserver/mcserver.cc +1055 -0
  412. data/ext/libcouchbase/src/mcserver/mcserver.h +221 -0
  413. data/ext/libcouchbase/src/mcserver/negotiate.cc +757 -0
  414. data/ext/libcouchbase/src/mcserver/negotiate.h +128 -0
  415. data/ext/libcouchbase/src/mctx-helper.h +62 -0
  416. data/ext/libcouchbase/src/metrics.cc +132 -0
  417. data/ext/libcouchbase/src/n1ql/ixmgmt.cc +857 -0
  418. data/ext/libcouchbase/src/n1ql/n1ql-internal.h +22 -0
  419. data/ext/libcouchbase/src/n1ql/n1ql.cc +830 -0
  420. data/ext/libcouchbase/src/n1ql/params.cc +260 -0
  421. data/ext/libcouchbase/src/netbuf/netbuf-defs.h +89 -0
  422. data/ext/libcouchbase/src/netbuf/netbuf-mblock.h +235 -0
  423. data/ext/libcouchbase/src/netbuf/netbuf.c +929 -0
  424. data/ext/libcouchbase/src/netbuf/netbuf.h +452 -0
  425. data/ext/libcouchbase/src/newconfig.cc +365 -0
  426. data/ext/libcouchbase/src/nodeinfo.cc +184 -0
  427. data/ext/libcouchbase/src/operations/cbflush.cc +63 -0
  428. data/ext/libcouchbase/src/operations/counter.cc +117 -0
  429. data/ext/libcouchbase/src/operations/durability-cas.cc +251 -0
  430. data/ext/libcouchbase/src/operations/durability-seqno.cc +170 -0
  431. data/ext/libcouchbase/src/operations/durability.cc +668 -0
  432. data/ext/libcouchbase/src/operations/durability_internal.h +306 -0
  433. data/ext/libcouchbase/src/operations/get.cc +409 -0
  434. data/ext/libcouchbase/src/operations/observe-seqno.cc +94 -0
  435. data/ext/libcouchbase/src/operations/observe.cc +367 -0
  436. data/ext/libcouchbase/src/operations/ping.cc +496 -0
  437. data/ext/libcouchbase/src/operations/pktfwd.cc +86 -0
  438. data/ext/libcouchbase/src/operations/remove.cc +84 -0
  439. data/ext/libcouchbase/src/operations/stats.cc +459 -0
  440. data/ext/libcouchbase/src/operations/store.cc +358 -0
  441. data/ext/libcouchbase/src/operations/subdoc.cc +614 -0
  442. data/ext/libcouchbase/src/operations/touch.cc +84 -0
  443. data/ext/libcouchbase/src/packetutils.h +388 -0
  444. data/ext/libcouchbase/src/probes.d +182 -0
  445. data/ext/libcouchbase/src/rdb/bigalloc.c +225 -0
  446. data/ext/libcouchbase/src/rdb/bigalloc.h +73 -0
  447. data/ext/libcouchbase/src/rdb/chunkalloc.c +174 -0
  448. data/ext/libcouchbase/src/rdb/libcalloc.c +94 -0
  449. data/ext/libcouchbase/src/rdb/rope.c +419 -0
  450. data/ext/libcouchbase/src/rdb/rope.h +488 -0
  451. data/ext/libcouchbase/src/retrychk.cc +113 -0
  452. data/ext/libcouchbase/src/retryq.cc +458 -0
  453. data/ext/libcouchbase/src/retryq.h +170 -0
  454. data/ext/libcouchbase/src/ringbuffer.c +442 -0
  455. data/ext/libcouchbase/src/ringbuffer.h +100 -0
  456. data/ext/libcouchbase/src/rnd.cc +61 -0
  457. data/ext/libcouchbase/src/rnd.h +39 -0
  458. data/ext/libcouchbase/src/settings.c +125 -0
  459. data/ext/libcouchbase/src/settings.h +273 -0
  460. data/ext/libcouchbase/src/sllist-inl.h +197 -0
  461. data/ext/libcouchbase/src/sllist.h +76 -0
  462. data/ext/libcouchbase/src/ssl/CMakeLists.txt +11 -0
  463. data/ext/libcouchbase/src/ssl/ssl_c.c +442 -0
  464. data/ext/libcouchbase/src/ssl/ssl_common.c +478 -0
  465. data/ext/libcouchbase/src/ssl/ssl_e.c +421 -0
  466. data/ext/libcouchbase/src/ssl/ssl_iot_common.h +182 -0
  467. data/ext/libcouchbase/src/strcodecs/base64.c +307 -0
  468. data/ext/libcouchbase/src/strcodecs/strcodecs.h +302 -0
  469. data/ext/libcouchbase/src/timings.c +207 -0
  470. data/ext/libcouchbase/src/trace.h +117 -0
  471. data/ext/libcouchbase/src/tracing/span.cc +421 -0
  472. data/ext/libcouchbase/src/tracing/threshold_logging_tracer.cc +213 -0
  473. data/ext/libcouchbase/src/tracing/tracer.cc +53 -0
  474. data/ext/libcouchbase/src/tracing/tracing-internal.h +198 -0
  475. data/ext/libcouchbase/src/utilities.c +176 -0
  476. data/ext/libcouchbase/src/vbucket/CMakeLists.txt +2 -0
  477. data/ext/libcouchbase/src/vbucket/aliases.h +35 -0
  478. data/ext/libcouchbase/src/vbucket/crc32.h +83 -0
  479. data/ext/libcouchbase/src/vbucket/hash.h +30 -0
  480. data/ext/libcouchbase/src/vbucket/json-inl.h +112 -0
  481. data/ext/libcouchbase/src/vbucket/ketama.c +66 -0
  482. data/ext/libcouchbase/src/vbucket/rfc1321/global.h +32 -0
  483. data/ext/libcouchbase/src/vbucket/rfc1321/md5.h +35 -0
  484. data/ext/libcouchbase/src/vbucket/rfc1321/md5c-inl.h +335 -0
  485. data/ext/libcouchbase/src/vbucket/vbucket.c +1735 -0
  486. data/ext/libcouchbase/src/views/docreq.cc +213 -0
  487. data/ext/libcouchbase/src/views/docreq.h +94 -0
  488. data/ext/libcouchbase/src/views/viewreq.cc +381 -0
  489. data/ext/libcouchbase/src/views/viewreq.h +87 -0
  490. data/ext/libcouchbase/src/wait.cc +156 -0
  491. data/ext/libcouchbase/tests/CMakeLists.txt +149 -0
  492. data/ext/libcouchbase/tests/basic/t_base64.cc +109 -0
  493. data/ext/libcouchbase/tests/basic/t_ccbc103.cc +95 -0
  494. data/ext/libcouchbase/tests/basic/t_connstr.cc +456 -0
  495. data/ext/libcouchbase/tests/basic/t_creds.cc +96 -0
  496. data/ext/libcouchbase/tests/basic/t_ctlcodes.cc +92 -0
  497. data/ext/libcouchbase/tests/basic/t_host.cc +210 -0
  498. data/ext/libcouchbase/tests/basic/t_jsparse.cc +82 -0
  499. data/ext/libcouchbase/tests/basic/t_jsparse.h +589 -0
  500. data/ext/libcouchbase/tests/basic/t_list.cc +155 -0
  501. data/ext/libcouchbase/tests/basic/t_logger.cc +65 -0
  502. data/ext/libcouchbase/tests/basic/t_misc.cc +24 -0
  503. data/ext/libcouchbase/tests/basic/t_n1qlstrings.cc +17 -0
  504. data/ext/libcouchbase/tests/basic/t_netbuf.cc +446 -0
  505. data/ext/libcouchbase/tests/basic/t_packet.cc +215 -0
  506. data/ext/libcouchbase/tests/basic/t_ringbuffer.cc +278 -0
  507. data/ext/libcouchbase/tests/basic/t_scram.cc +514 -0
  508. data/ext/libcouchbase/tests/basic/t_slist.cc +429 -0
  509. data/ext/libcouchbase/tests/basic/t_strerror.cc +64 -0
  510. data/ext/libcouchbase/tests/basic/t_urlencode.cc +132 -0
  511. data/ext/libcouchbase/tests/check-all.cc +612 -0
  512. data/ext/libcouchbase/tests/htparse/t_basic.cc +173 -0
  513. data/ext/libcouchbase/tests/ioserver/connection.cc +166 -0
  514. data/ext/libcouchbase/tests/ioserver/future.cc +50 -0
  515. data/ext/libcouchbase/tests/ioserver/ioserver.cc +117 -0
  516. data/ext/libcouchbase/tests/ioserver/ioserver.h +478 -0
  517. data/ext/libcouchbase/tests/ioserver/socket.cc +88 -0
  518. data/ext/libcouchbase/tests/ioserver/ssl_connection.cc +145 -0
  519. data/ext/libcouchbase/tests/ioserver/threads-pthreads.cc +119 -0
  520. data/ext/libcouchbase/tests/ioserver/threads-win32.cc +117 -0
  521. data/ext/libcouchbase/tests/ioserver/threads.h +66 -0
  522. data/ext/libcouchbase/tests/iotests/iotests.h +15 -0
  523. data/ext/libcouchbase/tests/iotests/mock-environment.cc +632 -0
  524. data/ext/libcouchbase/tests/iotests/mock-environment.h +480 -0
  525. data/ext/libcouchbase/tests/iotests/mock-unit-test.cc +67 -0
  526. data/ext/libcouchbase/tests/iotests/mock-unit-test.h +61 -0
  527. data/ext/libcouchbase/tests/iotests/serverparams.h +76 -0
  528. data/ext/libcouchbase/tests/iotests/t_arithmetic.cc +143 -0
  529. data/ext/libcouchbase/tests/iotests/t_behavior.cc +220 -0
  530. data/ext/libcouchbase/tests/iotests/t_configcache.cc +117 -0
  531. data/ext/libcouchbase/tests/iotests/t_confmon.cc +223 -0
  532. data/ext/libcouchbase/tests/iotests/t_durability.cc +1108 -0
  533. data/ext/libcouchbase/tests/iotests/t_eerrs.cc +121 -0
  534. data/ext/libcouchbase/tests/iotests/t_errmap.cc +181 -0
  535. data/ext/libcouchbase/tests/iotests/t_forward.cc +118 -0
  536. data/ext/libcouchbase/tests/iotests/t_get.cc +512 -0
  537. data/ext/libcouchbase/tests/iotests/t_http.cc +438 -0
  538. data/ext/libcouchbase/tests/iotests/t_iops.cc +175 -0
  539. data/ext/libcouchbase/tests/iotests/t_lock.cc +274 -0
  540. data/ext/libcouchbase/tests/iotests/t_misc.cc +777 -0
  541. data/ext/libcouchbase/tests/iotests/t_mutate.cc +609 -0
  542. data/ext/libcouchbase/tests/iotests/t_n1ql.cc +270 -0
  543. data/ext/libcouchbase/tests/iotests/t_netfail.cc +778 -0
  544. data/ext/libcouchbase/tests/iotests/t_obseqno.cc +156 -0
  545. data/ext/libcouchbase/tests/iotests/t_regression.cc +321 -0
  546. data/ext/libcouchbase/tests/iotests/t_sched.cc +87 -0
  547. data/ext/libcouchbase/tests/iotests/t_serverops.cc +231 -0
  548. data/ext/libcouchbase/tests/iotests/t_smoke.cc +528 -0
  549. data/ext/libcouchbase/tests/iotests/t_snappy.cc +316 -0
  550. data/ext/libcouchbase/tests/iotests/t_subdoc.cc +857 -0
  551. data/ext/libcouchbase/tests/iotests/t_syncmode.cc +64 -0
  552. data/ext/libcouchbase/tests/iotests/t_views.cc +417 -0
  553. data/ext/libcouchbase/tests/iotests/testutil.cc +251 -0
  554. data/ext/libcouchbase/tests/iotests/testutil.h +163 -0
  555. data/ext/libcouchbase/tests/mc/mctest.h +119 -0
  556. data/ext/libcouchbase/tests/mc/pktmaker.h +101 -0
  557. data/ext/libcouchbase/tests/mc/t_alloc.cc +269 -0
  558. data/ext/libcouchbase/tests/mc/t_context.cc +100 -0
  559. data/ext/libcouchbase/tests/mc/t_flush.cc +185 -0
  560. data/ext/libcouchbase/tests/mc/t_forward.cc +239 -0
  561. data/ext/libcouchbase/tests/mc/t_ioflush.cc +102 -0
  562. data/ext/libcouchbase/tests/mc/t_iovcursor.cc +173 -0
  563. data/ext/libcouchbase/tests/mocksupport/procutil.c +305 -0
  564. data/ext/libcouchbase/tests/mocksupport/procutil.h +89 -0
  565. data/ext/libcouchbase/tests/mocksupport/server.c +391 -0
  566. data/ext/libcouchbase/tests/mocksupport/server.h +72 -0
  567. data/ext/libcouchbase/tests/mocksupport/timeout.c +69 -0
  568. data/ext/libcouchbase/tests/nonio_tests.cc +23 -0
  569. data/ext/libcouchbase/tests/rdb/rdbtest.h +133 -0
  570. data/ext/libcouchbase/tests/rdb/t_basic.cc +128 -0
  571. data/ext/libcouchbase/tests/rdb/t_bigalloc.cc +93 -0
  572. data/ext/libcouchbase/tests/rdb/t_refs.cc +112 -0
  573. data/ext/libcouchbase/tests/socktests/socktest.cc +344 -0
  574. data/ext/libcouchbase/tests/socktests/socktest.h +447 -0
  575. data/ext/libcouchbase/tests/socktests/t_basic.cc +143 -0
  576. data/ext/libcouchbase/tests/socktests/t_ctx.cc +73 -0
  577. data/ext/libcouchbase/tests/socktests/t_manager.cc +159 -0
  578. data/ext/libcouchbase/tests/socktests/t_putex.cc +256 -0
  579. data/ext/libcouchbase/tests/socktests/t_read.cc +187 -0
  580. data/ext/libcouchbase/tests/socktests/t_reentrant.cc +143 -0
  581. data/ext/libcouchbase/tests/socktests/t_ssl.cc +80 -0
  582. data/ext/libcouchbase/tests/socktests/t_write.cc +95 -0
  583. data/ext/libcouchbase/tests/start_mock.bat +15 -0
  584. data/ext/libcouchbase/tests/start_mock.sh +42 -0
  585. data/ext/libcouchbase/tests/unit_tests.cc +43 -0
  586. data/ext/libcouchbase/tests/vbucket/confdata/bad.json +101 -0
  587. data/ext/libcouchbase/tests/vbucket/confdata/full_25.json +363 -0
  588. data/ext/libcouchbase/tests/vbucket/confdata/ketama_expected.json +2562 -0
  589. data/ext/libcouchbase/tests/vbucket/confdata/map_node_present_nodesext_missing_nodes.json +94 -0
  590. data/ext/libcouchbase/tests/vbucket/confdata/memd_25.json +90 -0
  591. data/ext/libcouchbase/tests/vbucket/confdata/memd_30.json +1 -0
  592. data/ext/libcouchbase/tests/vbucket/confdata/memd_45.json +1 -0
  593. data/ext/libcouchbase/tests/vbucket/confdata/memd_ketama_config.json +31 -0
  594. data/ext/libcouchbase/tests/vbucket/confdata/terse_25.json +291 -0
  595. data/ext/libcouchbase/tests/vbucket/confdata/terse_30.json +1 -0
  596. data/ext/libcouchbase/tests/vbucket/t_config.cc +386 -0
  597. data/ext/libcouchbase/tools/CMakeLists.txt +80 -0
  598. data/ext/libcouchbase/tools/cbc-handlers.h +636 -0
  599. data/ext/libcouchbase/tools/cbc-n1qlback.cc +496 -0
  600. data/ext/libcouchbase/tools/cbc-pillowfight.cc +1230 -0
  601. data/ext/libcouchbase/tools/cbc-proxy.cc +534 -0
  602. data/ext/libcouchbase/tools/cbc-subdoc.cc +825 -0
  603. data/ext/libcouchbase/tools/cbc.cc +1928 -0
  604. data/ext/libcouchbase/tools/common/histogram.cc +44 -0
  605. data/ext/libcouchbase/tools/common/histogram.h +23 -0
  606. data/ext/libcouchbase/tools/common/options.cc +451 -0
  607. data/ext/libcouchbase/tools/common/options.h +90 -0
  608. data/ext/libcouchbase/tools/docgen/docgen.h +495 -0
  609. data/ext/libcouchbase/tools/docgen/loc.h +211 -0
  610. data/ext/libcouchbase/tools/docgen/placeholders.h +211 -0
  611. data/ext/libcouchbase/tools/docgen/seqgen.h +122 -0
  612. data/ext/libcouchbase/tools/extract-packets.rb +110 -0
  613. data/ext/libcouchbase/tools/linenoise/linenoise.c +1199 -0
  614. data/ext/libcouchbase/tools/linenoise/linenoise.h +73 -0
  615. data/lib/mt-libcouchbase/bucket.rb +825 -0
  616. data/lib/mt-libcouchbase/callbacks.rb +69 -0
  617. data/lib/mt-libcouchbase/connection.rb +896 -0
  618. data/lib/mt-libcouchbase/design_docs.rb +92 -0
  619. data/lib/mt-libcouchbase/error.rb +68 -0
  620. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdbase.rb +23 -0
  621. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdcounter.rb +36 -0
  622. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdendure.rb +26 -0
  623. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdfts.rb +24 -0
  624. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdget.rb +30 -0
  625. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdgetreplica.rb +49 -0
  626. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdhttp.rb +58 -0
  627. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdn1ql.rb +40 -0
  628. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdobseqno.rb +33 -0
  629. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdobserve.rb +30 -0
  630. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdstore.rb +40 -0
  631. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdstoredur.rb +45 -0
  632. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdsubdoc.rb +61 -0
  633. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdverbosity.rb +29 -0
  634. data/lib/mt-libcouchbase/ext/mt-libcouchbase/cmdviewquery.rb +61 -0
  635. data/lib/mt-libcouchbase/ext/mt-libcouchbase/contigbuf.rb +14 -0
  636. data/lib/mt-libcouchbase/ext/mt-libcouchbase/create_st.rb +15 -0
  637. data/lib/mt-libcouchbase/ext/mt-libcouchbase/create_st0.rb +23 -0
  638. data/lib/mt-libcouchbase/ext/mt-libcouchbase/create_st1.rb +26 -0
  639. data/lib/mt-libcouchbase/ext/mt-libcouchbase/create_st2.rb +32 -0
  640. data/lib/mt-libcouchbase/ext/mt-libcouchbase/create_st3.rb +26 -0
  641. data/lib/mt-libcouchbase/ext/mt-libcouchbase/crst_u.rb +20 -0
  642. data/lib/mt-libcouchbase/ext/mt-libcouchbase/durability_opts_st_v.rb +11 -0
  643. data/lib/mt-libcouchbase/ext/mt-libcouchbase/durability_opts_t.rb +14 -0
  644. data/lib/mt-libcouchbase/ext/mt-libcouchbase/durabilityopt_sv0.rb +63 -0
  645. data/lib/mt-libcouchbase/ext/mt-libcouchbase/enums.rb +1007 -0
  646. data/lib/mt-libcouchbase/ext/mt-libcouchbase/fragbuf.rb +18 -0
  647. data/lib/mt-libcouchbase/ext/mt-libcouchbase/ftshandle.rb +7 -0
  648. data/lib/mt-libcouchbase/ext/mt-libcouchbase/histogram.rb +34 -0
  649. data/lib/mt-libcouchbase/ext/mt-libcouchbase/http_request_t.rb +7 -0
  650. data/lib/mt-libcouchbase/ext/mt-libcouchbase/keybuf.rb +20 -0
  651. data/lib/mt-libcouchbase/ext/mt-libcouchbase/multicmd_ctx.rb +30 -0
  652. data/lib/mt-libcouchbase/ext/mt-libcouchbase/mutation_token.rb +17 -0
  653. data/lib/mt-libcouchbase/ext/mt-libcouchbase/n1qlhandle.rb +7 -0
  654. data/lib/mt-libcouchbase/ext/mt-libcouchbase/n1qlparams.rb +7 -0
  655. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respbase.rb +29 -0
  656. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respcounter.rb +32 -0
  657. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respendure.rb +49 -0
  658. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respfts.rb +40 -0
  659. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respget.rb +44 -0
  660. data/lib/mt-libcouchbase/ext/mt-libcouchbase/resphttp.rb +48 -0
  661. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respmcversion.rb +38 -0
  662. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respn1ql.rb +41 -0
  663. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respobseqno.rb +52 -0
  664. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respobserve.rb +41 -0
  665. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respserverbase.rb +32 -0
  666. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respstats.rb +38 -0
  667. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respstore.rb +32 -0
  668. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respstoredur.rb +38 -0
  669. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respsubdoc.rb +35 -0
  670. data/lib/mt-libcouchbase/ext/mt-libcouchbase/respviewquery.rb +67 -0
  671. data/lib/mt-libcouchbase/ext/mt-libcouchbase/sdentry.rb +22 -0
  672. data/lib/mt-libcouchbase/ext/mt-libcouchbase/sdspec.rb +31 -0
  673. data/lib/mt-libcouchbase/ext/mt-libcouchbase/t.rb +7 -0
  674. data/lib/mt-libcouchbase/ext/mt-libcouchbase/valbuf.rb +22 -0
  675. data/lib/mt-libcouchbase/ext/mt-libcouchbase/valbuf_u_buf.rb +14 -0
  676. data/lib/mt-libcouchbase/ext/mt-libcouchbase/viewhandle.rb +7 -0
  677. data/lib/mt-libcouchbase/ext/mt-libcouchbase.rb +1175 -0
  678. data/lib/mt-libcouchbase/ext/mt-libcouchbase_libuv.rb +22 -0
  679. data/lib/mt-libcouchbase/ext/tasks.rb +39 -0
  680. data/lib/mt-libcouchbase/n1ql.rb +80 -0
  681. data/lib/mt-libcouchbase/query_full_text.rb +147 -0
  682. data/lib/mt-libcouchbase/query_n1ql.rb +123 -0
  683. data/lib/mt-libcouchbase/query_view.rb +135 -0
  684. data/lib/mt-libcouchbase/results_fiber.rb +281 -0
  685. data/lib/mt-libcouchbase/results_native.rb +220 -0
  686. data/lib/mt-libcouchbase/subdoc_request.rb +139 -0
  687. data/lib/mt-libcouchbase/version.rb +5 -0
  688. data/lib/mt-libcouchbase.rb +40 -0
  689. data/mt-libcouchbase.gemspec +68 -0
  690. data/spec/bucket_spec.rb +290 -0
  691. data/spec/connection_spec.rb +257 -0
  692. data/spec/design_docs_spec.rb +31 -0
  693. data/spec/error_spec.rb +26 -0
  694. data/spec/fts_spec.rb +135 -0
  695. data/spec/n1ql_spec.rb +260 -0
  696. data/spec/results_libuv_spec.rb +244 -0
  697. data/spec/results_native_spec.rb +259 -0
  698. data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/design.json +1 -0
  699. data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/data-0000.cbb +0 -0
  700. data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/failover.json +1 -0
  701. data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/meta.json +1 -0
  702. data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/seqno.json +1 -0
  703. data/spec/seed/2016-10-25T043505Z/2016-10-25T043505Z-full/bucket-default/node-127.0.0.1%3A8091/snapshot_markers.json +1 -0
  704. data/spec/subdoc_spec.rb +192 -0
  705. data/spec/view_spec.rb +201 -0
  706. data/windows_build.md +36 -0
  707. metadata +873 -0
@@ -0,0 +1,2562 @@
1
+ [
2
+ {
3
+ "hash": 19069626,
4
+ "hostname": "192.168.1.104:11210"
5
+ },
6
+ {
7
+ "hash": 28439255,
8
+ "hostname": "192.168.1.101:11210"
9
+ },
10
+ {
11
+ "hash": 36078660,
12
+ "hostname": "192.168.1.104:11210"
13
+ },
14
+ {
15
+ "hash": 46162273,
16
+ "hostname": "192.168.1.104:11210"
17
+ },
18
+ {
19
+ "hash": 54096687,
20
+ "hostname": "192.168.1.104:11210"
21
+ },
22
+ {
23
+ "hash": 73548791,
24
+ "hostname": "192.168.1.102:11210"
25
+ },
26
+ {
27
+ "hash": 78634244,
28
+ "hostname": "192.168.1.102:11210"
29
+ },
30
+ {
31
+ "hash": 80168850,
32
+ "hostname": "192.168.1.104:11210"
33
+ },
34
+ {
35
+ "hash": 89070946,
36
+ "hostname": "192.168.1.101:11210"
37
+ },
38
+ {
39
+ "hash": 106146674,
40
+ "hostname": "192.168.1.101:11210"
41
+ },
42
+ {
43
+ "hash": 107634595,
44
+ "hostname": "192.168.1.103:11210"
45
+ },
46
+ {
47
+ "hash": 109207346,
48
+ "hostname": "192.168.1.104:11210"
49
+ },
50
+ {
51
+ "hash": 114418334,
52
+ "hostname": "192.168.1.101:11210"
53
+ },
54
+ {
55
+ "hash": 116192786,
56
+ "hostname": "192.168.1.102:11210"
57
+ },
58
+ {
59
+ "hash": 116819884,
60
+ "hostname": "192.168.1.104:11210"
61
+ },
62
+ {
63
+ "hash": 117887929,
64
+ "hostname": "192.168.1.102:11210"
65
+ },
66
+ {
67
+ "hash": 122969554,
68
+ "hostname": "192.168.1.104:11210"
69
+ },
70
+ {
71
+ "hash": 124989096,
72
+ "hostname": "192.168.1.101:11210"
73
+ },
74
+ {
75
+ "hash": 125944238,
76
+ "hostname": "192.168.1.101:11210"
77
+ },
78
+ {
79
+ "hash": 134898327,
80
+ "hostname": "192.168.1.103:11210"
81
+ },
82
+ {
83
+ "hash": 138971009,
84
+ "hostname": "192.168.1.101:11210"
85
+ },
86
+ {
87
+ "hash": 141424941,
88
+ "hostname": "192.168.1.104:11210"
89
+ },
90
+ {
91
+ "hash": 174283728,
92
+ "hostname": "192.168.1.101:11210"
93
+ },
94
+ {
95
+ "hash": 177156971,
96
+ "hostname": "192.168.1.101:11210"
97
+ },
98
+ {
99
+ "hash": 189013923,
100
+ "hostname": "192.168.1.104:11210"
101
+ },
102
+ {
103
+ "hash": 195580098,
104
+ "hostname": "192.168.1.104:11210"
105
+ },
106
+ {
107
+ "hash": 197376764,
108
+ "hostname": "192.168.1.101:11210"
109
+ },
110
+ {
111
+ "hash": 204881655,
112
+ "hostname": "192.168.1.104:11210"
113
+ },
114
+ {
115
+ "hash": 221328852,
116
+ "hostname": "192.168.1.103:11210"
117
+ },
118
+ {
119
+ "hash": 221825036,
120
+ "hostname": "192.168.1.103:11210"
121
+ },
122
+ {
123
+ "hash": 226881827,
124
+ "hostname": "192.168.1.103:11210"
125
+ },
126
+ {
127
+ "hash": 229775500,
128
+ "hostname": "192.168.1.104:11210"
129
+ },
130
+ {
131
+ "hash": 230916412,
132
+ "hostname": "192.168.1.103:11210"
133
+ },
134
+ {
135
+ "hash": 233103339,
136
+ "hostname": "192.168.1.101:11210"
137
+ },
138
+ {
139
+ "hash": 236483250,
140
+ "hostname": "192.168.1.104:11210"
141
+ },
142
+ {
143
+ "hash": 237247010,
144
+ "hostname": "192.168.1.101:11210"
145
+ },
146
+ {
147
+ "hash": 240982556,
148
+ "hostname": "192.168.1.104:11210"
149
+ },
150
+ {
151
+ "hash": 250488495,
152
+ "hostname": "192.168.1.101:11210"
153
+ },
154
+ {
155
+ "hash": 251475825,
156
+ "hostname": "192.168.1.101:11210"
157
+ },
158
+ {
159
+ "hash": 252096145,
160
+ "hostname": "192.168.1.103:11210"
161
+ },
162
+ {
163
+ "hash": 253143406,
164
+ "hostname": "192.168.1.102:11210"
165
+ },
166
+ {
167
+ "hash": 258979488,
168
+ "hostname": "192.168.1.104:11210"
169
+ },
170
+ {
171
+ "hash": 265532244,
172
+ "hostname": "192.168.1.102:11210"
173
+ },
174
+ {
175
+ "hash": 269783905,
176
+ "hostname": "192.168.1.103:11210"
177
+ },
178
+ {
179
+ "hash": 278992281,
180
+ "hostname": "192.168.1.104:11210"
181
+ },
182
+ {
183
+ "hash": 287721687,
184
+ "hostname": "192.168.1.101:11210"
185
+ },
186
+ {
187
+ "hash": 295572049,
188
+ "hostname": "192.168.1.103:11210"
189
+ },
190
+ {
191
+ "hash": 302101964,
192
+ "hostname": "192.168.1.104:11210"
193
+ },
194
+ {
195
+ "hash": 306204168,
196
+ "hostname": "192.168.1.104:11210"
197
+ },
198
+ {
199
+ "hash": 323245875,
200
+ "hostname": "192.168.1.101:11210"
201
+ },
202
+ {
203
+ "hash": 329843148,
204
+ "hostname": "192.168.1.102:11210"
205
+ },
206
+ {
207
+ "hash": 330007156,
208
+ "hostname": "192.168.1.101:11210"
209
+ },
210
+ {
211
+ "hash": 330462531,
212
+ "hostname": "192.168.1.103:11210"
213
+ },
214
+ {
215
+ "hash": 338167152,
216
+ "hostname": "192.168.1.103:11210"
217
+ },
218
+ {
219
+ "hash": 342765396,
220
+ "hostname": "192.168.1.102:11210"
221
+ },
222
+ {
223
+ "hash": 349955341,
224
+ "hostname": "192.168.1.103:11210"
225
+ },
226
+ {
227
+ "hash": 350647398,
228
+ "hostname": "192.168.1.104:11210"
229
+ },
230
+ {
231
+ "hash": 363285076,
232
+ "hostname": "192.168.1.103:11210"
233
+ },
234
+ {
235
+ "hash": 370128717,
236
+ "hostname": "192.168.1.103:11210"
237
+ },
238
+ {
239
+ "hash": 371151731,
240
+ "hostname": "192.168.1.103:11210"
241
+ },
242
+ {
243
+ "hash": 377487383,
244
+ "hostname": "192.168.1.101:11210"
245
+ },
246
+ {
247
+ "hash": 394925729,
248
+ "hostname": "192.168.1.104:11210"
249
+ },
250
+ {
251
+ "hash": 394973222,
252
+ "hostname": "192.168.1.103:11210"
253
+ },
254
+ {
255
+ "hash": 424265197,
256
+ "hostname": "192.168.1.104:11210"
257
+ },
258
+ {
259
+ "hash": 436318905,
260
+ "hostname": "192.168.1.104:11210"
261
+ },
262
+ {
263
+ "hash": 445032835,
264
+ "hostname": "192.168.1.101:11210"
265
+ },
266
+ {
267
+ "hash": 453145686,
268
+ "hostname": "192.168.1.101:11210"
269
+ },
270
+ {
271
+ "hash": 486511573,
272
+ "hostname": "192.168.1.103:11210"
273
+ },
274
+ {
275
+ "hash": 489905595,
276
+ "hostname": "192.168.1.101:11210"
277
+ },
278
+ {
279
+ "hash": 490420931,
280
+ "hostname": "192.168.1.101:11210"
281
+ },
282
+ {
283
+ "hash": 491940307,
284
+ "hostname": "192.168.1.104:11210"
285
+ },
286
+ {
287
+ "hash": 492889501,
288
+ "hostname": "192.168.1.102:11210"
289
+ },
290
+ {
291
+ "hash": 494938935,
292
+ "hostname": "192.168.1.101:11210"
293
+ },
294
+ {
295
+ "hash": 510089961,
296
+ "hostname": "192.168.1.102:11210"
297
+ },
298
+ {
299
+ "hash": 520408876,
300
+ "hostname": "192.168.1.103:11210"
301
+ },
302
+ {
303
+ "hash": 529078722,
304
+ "hostname": "192.168.1.101:11210"
305
+ },
306
+ {
307
+ "hash": 532838876,
308
+ "hostname": "192.168.1.102:11210"
309
+ },
310
+ {
311
+ "hash": 540377407,
312
+ "hostname": "192.168.1.101:11210"
313
+ },
314
+ {
315
+ "hash": 541139782,
316
+ "hostname": "192.168.1.103:11210"
317
+ },
318
+ {
319
+ "hash": 544198715,
320
+ "hostname": "192.168.1.101:11210"
321
+ },
322
+ {
323
+ "hash": 555178880,
324
+ "hostname": "192.168.1.102:11210"
325
+ },
326
+ {
327
+ "hash": 561135136,
328
+ "hostname": "192.168.1.102:11210"
329
+ },
330
+ {
331
+ "hash": 564585952,
332
+ "hostname": "192.168.1.104:11210"
333
+ },
334
+ {
335
+ "hash": 575342925,
336
+ "hostname": "192.168.1.103:11210"
337
+ },
338
+ {
339
+ "hash": 583085724,
340
+ "hostname": "192.168.1.103:11210"
341
+ },
342
+ {
343
+ "hash": 583240905,
344
+ "hostname": "192.168.1.103:11210"
345
+ },
346
+ {
347
+ "hash": 585982423,
348
+ "hostname": "192.168.1.102:11210"
349
+ },
350
+ {
351
+ "hash": 586327671,
352
+ "hostname": "192.168.1.102:11210"
353
+ },
354
+ {
355
+ "hash": 590622979,
356
+ "hostname": "192.168.1.102:11210"
357
+ },
358
+ {
359
+ "hash": 598997574,
360
+ "hostname": "192.168.1.102:11210"
361
+ },
362
+ {
363
+ "hash": 630924060,
364
+ "hostname": "192.168.1.103:11210"
365
+ },
366
+ {
367
+ "hash": 631103086,
368
+ "hostname": "192.168.1.101:11210"
369
+ },
370
+ {
371
+ "hash": 641204285,
372
+ "hostname": "192.168.1.102:11210"
373
+ },
374
+ {
375
+ "hash": 666591819,
376
+ "hostname": "192.168.1.103:11210"
377
+ },
378
+ {
379
+ "hash": 669666999,
380
+ "hostname": "192.168.1.101:11210"
381
+ },
382
+ {
383
+ "hash": 671994654,
384
+ "hostname": "192.168.1.102:11210"
385
+ },
386
+ {
387
+ "hash": 691110923,
388
+ "hostname": "192.168.1.101:11210"
389
+ },
390
+ {
391
+ "hash": 692426619,
392
+ "hostname": "192.168.1.103:11210"
393
+ },
394
+ {
395
+ "hash": 698675292,
396
+ "hostname": "192.168.1.102:11210"
397
+ },
398
+ {
399
+ "hash": 699389677,
400
+ "hostname": "192.168.1.102:11210"
401
+ },
402
+ {
403
+ "hash": 699608446,
404
+ "hostname": "192.168.1.102:11210"
405
+ },
406
+ {
407
+ "hash": 701782241,
408
+ "hostname": "192.168.1.104:11210"
409
+ },
410
+ {
411
+ "hash": 702399262,
412
+ "hostname": "192.168.1.101:11210"
413
+ },
414
+ {
415
+ "hash": 708671794,
416
+ "hostname": "192.168.1.101:11210"
417
+ },
418
+ {
419
+ "hash": 718195277,
420
+ "hostname": "192.168.1.102:11210"
421
+ },
422
+ {
423
+ "hash": 722842804,
424
+ "hostname": "192.168.1.102:11210"
425
+ },
426
+ {
427
+ "hash": 727911248,
428
+ "hostname": "192.168.1.101:11210"
429
+ },
430
+ {
431
+ "hash": 753756233,
432
+ "hostname": "192.168.1.104:11210"
433
+ },
434
+ {
435
+ "hash": 758993901,
436
+ "hostname": "192.168.1.103:11210"
437
+ },
438
+ {
439
+ "hash": 766711013,
440
+ "hostname": "192.168.1.101:11210"
441
+ },
442
+ {
443
+ "hash": 768138373,
444
+ "hostname": "192.168.1.104:11210"
445
+ },
446
+ {
447
+ "hash": 769330150,
448
+ "hostname": "192.168.1.102:11210"
449
+ },
450
+ {
451
+ "hash": 772534296,
452
+ "hostname": "192.168.1.104:11210"
453
+ },
454
+ {
455
+ "hash": 778247980,
456
+ "hostname": "192.168.1.104:11210"
457
+ },
458
+ {
459
+ "hash": 790837551,
460
+ "hostname": "192.168.1.102:11210"
461
+ },
462
+ {
463
+ "hash": 810701676,
464
+ "hostname": "192.168.1.101:11210"
465
+ },
466
+ {
467
+ "hash": 816674281,
468
+ "hostname": "192.168.1.104:11210"
469
+ },
470
+ {
471
+ "hash": 819918969,
472
+ "hostname": "192.168.1.101:11210"
473
+ },
474
+ {
475
+ "hash": 826472800,
476
+ "hostname": "192.168.1.104:11210"
477
+ },
478
+ {
479
+ "hash": 858385273,
480
+ "hostname": "192.168.1.103:11210"
481
+ },
482
+ {
483
+ "hash": 867125393,
484
+ "hostname": "192.168.1.102:11210"
485
+ },
486
+ {
487
+ "hash": 871280272,
488
+ "hostname": "192.168.1.102:11210"
489
+ },
490
+ {
491
+ "hash": 872780223,
492
+ "hostname": "192.168.1.103:11210"
493
+ },
494
+ {
495
+ "hash": 881225053,
496
+ "hostname": "192.168.1.101:11210"
497
+ },
498
+ {
499
+ "hash": 909141728,
500
+ "hostname": "192.168.1.101:11210"
501
+ },
502
+ {
503
+ "hash": 910544146,
504
+ "hostname": "192.168.1.104:11210"
505
+ },
506
+ {
507
+ "hash": 918888567,
508
+ "hostname": "192.168.1.103:11210"
509
+ },
510
+ {
511
+ "hash": 919027776,
512
+ "hostname": "192.168.1.104:11210"
513
+ },
514
+ {
515
+ "hash": 923680201,
516
+ "hostname": "192.168.1.103:11210"
517
+ },
518
+ {
519
+ "hash": 930351365,
520
+ "hostname": "192.168.1.104:11210"
521
+ },
522
+ {
523
+ "hash": 932570765,
524
+ "hostname": "192.168.1.101:11210"
525
+ },
526
+ {
527
+ "hash": 935591131,
528
+ "hostname": "192.168.1.102:11210"
529
+ },
530
+ {
531
+ "hash": 939781252,
532
+ "hostname": "192.168.1.102:11210"
533
+ },
534
+ {
535
+ "hash": 940953539,
536
+ "hostname": "192.168.1.104:11210"
537
+ },
538
+ {
539
+ "hash": 943806405,
540
+ "hostname": "192.168.1.103:11210"
541
+ },
542
+ {
543
+ "hash": 945498781,
544
+ "hostname": "192.168.1.101:11210"
545
+ },
546
+ {
547
+ "hash": 945763682,
548
+ "hostname": "192.168.1.104:11210"
549
+ },
550
+ {
551
+ "hash": 962692775,
552
+ "hostname": "192.168.1.104:11210"
553
+ },
554
+ {
555
+ "hash": 968833118,
556
+ "hostname": "192.168.1.104:11210"
557
+ },
558
+ {
559
+ "hash": 999690858,
560
+ "hostname": "192.168.1.102:11210"
561
+ },
562
+ {
563
+ "hash": 1007142169,
564
+ "hostname": "192.168.1.103:11210"
565
+ },
566
+ {
567
+ "hash": 1008964311,
568
+ "hostname": "192.168.1.103:11210"
569
+ },
570
+ {
571
+ "hash": 1012707706,
572
+ "hostname": "192.168.1.102:11210"
573
+ },
574
+ {
575
+ "hash": 1015023825,
576
+ "hostname": "192.168.1.102:11210"
577
+ },
578
+ {
579
+ "hash": 1018520630,
580
+ "hostname": "192.168.1.101:11210"
581
+ },
582
+ {
583
+ "hash": 1019027891,
584
+ "hostname": "192.168.1.101:11210"
585
+ },
586
+ {
587
+ "hash": 1022849166,
588
+ "hostname": "192.168.1.101:11210"
589
+ },
590
+ {
591
+ "hash": 1027098373,
592
+ "hostname": "192.168.1.104:11210"
593
+ },
594
+ {
595
+ "hash": 1041580422,
596
+ "hostname": "192.168.1.102:11210"
597
+ },
598
+ {
599
+ "hash": 1046330260,
600
+ "hostname": "192.168.1.101:11210"
601
+ },
602
+ {
603
+ "hash": 1055262259,
604
+ "hostname": "192.168.1.103:11210"
605
+ },
606
+ {
607
+ "hash": 1058318892,
608
+ "hostname": "192.168.1.104:11210"
609
+ },
610
+ {
611
+ "hash": 1060240316,
612
+ "hostname": "192.168.1.102:11210"
613
+ },
614
+ {
615
+ "hash": 1062074793,
616
+ "hostname": "192.168.1.101:11210"
617
+ },
618
+ {
619
+ "hash": 1063611448,
620
+ "hostname": "192.168.1.104:11210"
621
+ },
622
+ {
623
+ "hash": 1067275689,
624
+ "hostname": "192.168.1.104:11210"
625
+ },
626
+ {
627
+ "hash": 1085810731,
628
+ "hostname": "192.168.1.101:11210"
629
+ },
630
+ {
631
+ "hash": 1094200442,
632
+ "hostname": "192.168.1.103:11210"
633
+ },
634
+ {
635
+ "hash": 1099174745,
636
+ "hostname": "192.168.1.102:11210"
637
+ },
638
+ {
639
+ "hash": 1100436001,
640
+ "hostname": "192.168.1.103:11210"
641
+ },
642
+ {
643
+ "hash": 1108283090,
644
+ "hostname": "192.168.1.102:11210"
645
+ },
646
+ {
647
+ "hash": 1110310791,
648
+ "hostname": "192.168.1.103:11210"
649
+ },
650
+ {
651
+ "hash": 1117281934,
652
+ "hostname": "192.168.1.102:11210"
653
+ },
654
+ {
655
+ "hash": 1127928092,
656
+ "hostname": "192.168.1.102:11210"
657
+ },
658
+ {
659
+ "hash": 1137328711,
660
+ "hostname": "192.168.1.102:11210"
661
+ },
662
+ {
663
+ "hash": 1139815532,
664
+ "hostname": "192.168.1.104:11210"
665
+ },
666
+ {
667
+ "hash": 1140655534,
668
+ "hostname": "192.168.1.101:11210"
669
+ },
670
+ {
671
+ "hash": 1142692723,
672
+ "hostname": "192.168.1.102:11210"
673
+ },
674
+ {
675
+ "hash": 1151488666,
676
+ "hostname": "192.168.1.104:11210"
677
+ },
678
+ {
679
+ "hash": 1151529816,
680
+ "hostname": "192.168.1.102:11210"
681
+ },
682
+ {
683
+ "hash": 1157487792,
684
+ "hostname": "192.168.1.103:11210"
685
+ },
686
+ {
687
+ "hash": 1167712898,
688
+ "hostname": "192.168.1.102:11210"
689
+ },
690
+ {
691
+ "hash": 1180429171,
692
+ "hostname": "192.168.1.101:11210"
693
+ },
694
+ {
695
+ "hash": 1192399470,
696
+ "hostname": "192.168.1.101:11210"
697
+ },
698
+ {
699
+ "hash": 1195734349,
700
+ "hostname": "192.168.1.101:11210"
701
+ },
702
+ {
703
+ "hash": 1203353966,
704
+ "hostname": "192.168.1.101:11210"
705
+ },
706
+ {
707
+ "hash": 1206998026,
708
+ "hostname": "192.168.1.102:11210"
709
+ },
710
+ {
711
+ "hash": 1209848401,
712
+ "hostname": "192.168.1.101:11210"
713
+ },
714
+ {
715
+ "hash": 1218492630,
716
+ "hostname": "192.168.1.101:11210"
717
+ },
718
+ {
719
+ "hash": 1227679098,
720
+ "hostname": "192.168.1.101:11210"
721
+ },
722
+ {
723
+ "hash": 1234533217,
724
+ "hostname": "192.168.1.102:11210"
725
+ },
726
+ {
727
+ "hash": 1235508656,
728
+ "hostname": "192.168.1.103:11210"
729
+ },
730
+ {
731
+ "hash": 1253457448,
732
+ "hostname": "192.168.1.102:11210"
733
+ },
734
+ {
735
+ "hash": 1256548443,
736
+ "hostname": "192.168.1.104:11210"
737
+ },
738
+ {
739
+ "hash": 1260185553,
740
+ "hostname": "192.168.1.101:11210"
741
+ },
742
+ {
743
+ "hash": 1263462232,
744
+ "hostname": "192.168.1.102:11210"
745
+ },
746
+ {
747
+ "hash": 1264453408,
748
+ "hostname": "192.168.1.103:11210"
749
+ },
750
+ {
751
+ "hash": 1287773147,
752
+ "hostname": "192.168.1.102:11210"
753
+ },
754
+ {
755
+ "hash": 1295230060,
756
+ "hostname": "192.168.1.101:11210"
757
+ },
758
+ {
759
+ "hash": 1296864920,
760
+ "hostname": "192.168.1.104:11210"
761
+ },
762
+ {
763
+ "hash": 1297688598,
764
+ "hostname": "192.168.1.104:11210"
765
+ },
766
+ {
767
+ "hash": 1307776246,
768
+ "hostname": "192.168.1.101:11210"
769
+ },
770
+ {
771
+ "hash": 1318355643,
772
+ "hostname": "192.168.1.101:11210"
773
+ },
774
+ {
775
+ "hash": 1327771477,
776
+ "hostname": "192.168.1.101:11210"
777
+ },
778
+ {
779
+ "hash": 1330252545,
780
+ "hostname": "192.168.1.101:11210"
781
+ },
782
+ {
783
+ "hash": 1340362009,
784
+ "hostname": "192.168.1.103:11210"
785
+ },
786
+ {
787
+ "hash": 1343837091,
788
+ "hostname": "192.168.1.103:11210"
789
+ },
790
+ {
791
+ "hash": 1346976196,
792
+ "hostname": "192.168.1.101:11210"
793
+ },
794
+ {
795
+ "hash": 1355620993,
796
+ "hostname": "192.168.1.101:11210"
797
+ },
798
+ {
799
+ "hash": 1364831825,
800
+ "hostname": "192.168.1.102:11210"
801
+ },
802
+ {
803
+ "hash": 1387658621,
804
+ "hostname": "192.168.1.102:11210"
805
+ },
806
+ {
807
+ "hash": 1395945330,
808
+ "hostname": "192.168.1.101:11210"
809
+ },
810
+ {
811
+ "hash": 1398232322,
812
+ "hostname": "192.168.1.102:11210"
813
+ },
814
+ {
815
+ "hash": 1399358043,
816
+ "hostname": "192.168.1.103:11210"
817
+ },
818
+ {
819
+ "hash": 1407310363,
820
+ "hostname": "192.168.1.102:11210"
821
+ },
822
+ {
823
+ "hash": 1408278116,
824
+ "hostname": "192.168.1.102:11210"
825
+ },
826
+ {
827
+ "hash": 1420552863,
828
+ "hostname": "192.168.1.102:11210"
829
+ },
830
+ {
831
+ "hash": 1421824352,
832
+ "hostname": "192.168.1.104:11210"
833
+ },
834
+ {
835
+ "hash": 1425141042,
836
+ "hostname": "192.168.1.104:11210"
837
+ },
838
+ {
839
+ "hash": 1434389382,
840
+ "hostname": "192.168.1.104:11210"
841
+ },
842
+ {
843
+ "hash": 1442394517,
844
+ "hostname": "192.168.1.103:11210"
845
+ },
846
+ {
847
+ "hash": 1445567364,
848
+ "hostname": "192.168.1.102:11210"
849
+ },
850
+ {
851
+ "hash": 1453176917,
852
+ "hostname": "192.168.1.104:11210"
853
+ },
854
+ {
855
+ "hash": 1456220109,
856
+ "hostname": "192.168.1.102:11210"
857
+ },
858
+ {
859
+ "hash": 1458330685,
860
+ "hostname": "192.168.1.103:11210"
861
+ },
862
+ {
863
+ "hash": 1460014940,
864
+ "hostname": "192.168.1.104:11210"
865
+ },
866
+ {
867
+ "hash": 1461988807,
868
+ "hostname": "192.168.1.101:11210"
869
+ },
870
+ {
871
+ "hash": 1463210126,
872
+ "hostname": "192.168.1.101:11210"
873
+ },
874
+ {
875
+ "hash": 1467428308,
876
+ "hostname": "192.168.1.104:11210"
877
+ },
878
+ {
879
+ "hash": 1478128221,
880
+ "hostname": "192.168.1.104:11210"
881
+ },
882
+ {
883
+ "hash": 1490955056,
884
+ "hostname": "192.168.1.101:11210"
885
+ },
886
+ {
887
+ "hash": 1493919468,
888
+ "hostname": "192.168.1.101:11210"
889
+ },
890
+ {
891
+ "hash": 1497320528,
892
+ "hostname": "192.168.1.104:11210"
893
+ },
894
+ {
895
+ "hash": 1510072232,
896
+ "hostname": "192.168.1.104:11210"
897
+ },
898
+ {
899
+ "hash": 1518501059,
900
+ "hostname": "192.168.1.101:11210"
901
+ },
902
+ {
903
+ "hash": 1527732360,
904
+ "hostname": "192.168.1.103:11210"
905
+ },
906
+ {
907
+ "hash": 1529673731,
908
+ "hostname": "192.168.1.103:11210"
909
+ },
910
+ {
911
+ "hash": 1537475357,
912
+ "hostname": "192.168.1.103:11210"
913
+ },
914
+ {
915
+ "hash": 1549564271,
916
+ "hostname": "192.168.1.102:11210"
917
+ },
918
+ {
919
+ "hash": 1572801611,
920
+ "hostname": "192.168.1.102:11210"
921
+ },
922
+ {
923
+ "hash": 1583086246,
924
+ "hostname": "192.168.1.102:11210"
925
+ },
926
+ {
927
+ "hash": 1600914963,
928
+ "hostname": "192.168.1.101:11210"
929
+ },
930
+ {
931
+ "hash": 1610884905,
932
+ "hostname": "192.168.1.103:11210"
933
+ },
934
+ {
935
+ "hash": 1638696607,
936
+ "hostname": "192.168.1.104:11210"
937
+ },
938
+ {
939
+ "hash": 1652298642,
940
+ "hostname": "192.168.1.104:11210"
941
+ },
942
+ {
943
+ "hash": 1656866504,
944
+ "hostname": "192.168.1.104:11210"
945
+ },
946
+ {
947
+ "hash": 1660090896,
948
+ "hostname": "192.168.1.104:11210"
949
+ },
950
+ {
951
+ "hash": 1660765832,
952
+ "hostname": "192.168.1.102:11210"
953
+ },
954
+ {
955
+ "hash": 1662536446,
956
+ "hostname": "192.168.1.102:11210"
957
+ },
958
+ {
959
+ "hash": 1684578542,
960
+ "hostname": "192.168.1.104:11210"
961
+ },
962
+ {
963
+ "hash": 1691435574,
964
+ "hostname": "192.168.1.104:11210"
965
+ },
966
+ {
967
+ "hash": 1692242296,
968
+ "hostname": "192.168.1.104:11210"
969
+ },
970
+ {
971
+ "hash": 1699701161,
972
+ "hostname": "192.168.1.104:11210"
973
+ },
974
+ {
975
+ "hash": 1700421117,
976
+ "hostname": "192.168.1.102:11210"
977
+ },
978
+ {
979
+ "hash": 1700506413,
980
+ "hostname": "192.168.1.101:11210"
981
+ },
982
+ {
983
+ "hash": 1701805508,
984
+ "hostname": "192.168.1.103:11210"
985
+ },
986
+ {
987
+ "hash": 1713637963,
988
+ "hostname": "192.168.1.101:11210"
989
+ },
990
+ {
991
+ "hash": 1718561750,
992
+ "hostname": "192.168.1.103:11210"
993
+ },
994
+ {
995
+ "hash": 1726031550,
996
+ "hostname": "192.168.1.102:11210"
997
+ },
998
+ {
999
+ "hash": 1745198567,
1000
+ "hostname": "192.168.1.103:11210"
1001
+ },
1002
+ {
1003
+ "hash": 1746909169,
1004
+ "hostname": "192.168.1.101:11210"
1005
+ },
1006
+ {
1007
+ "hash": 1747973980,
1008
+ "hostname": "192.168.1.103:11210"
1009
+ },
1010
+ {
1011
+ "hash": 1751536068,
1012
+ "hostname": "192.168.1.102:11210"
1013
+ },
1014
+ {
1015
+ "hash": 1754819221,
1016
+ "hostname": "192.168.1.103:11210"
1017
+ },
1018
+ {
1019
+ "hash": 1754899113,
1020
+ "hostname": "192.168.1.104:11210"
1021
+ },
1022
+ {
1023
+ "hash": 1775219375,
1024
+ "hostname": "192.168.1.104:11210"
1025
+ },
1026
+ {
1027
+ "hash": 1776796487,
1028
+ "hostname": "192.168.1.102:11210"
1029
+ },
1030
+ {
1031
+ "hash": 1777931427,
1032
+ "hostname": "192.168.1.103:11210"
1033
+ },
1034
+ {
1035
+ "hash": 1787977256,
1036
+ "hostname": "192.168.1.101:11210"
1037
+ },
1038
+ {
1039
+ "hash": 1795555871,
1040
+ "hostname": "192.168.1.103:11210"
1041
+ },
1042
+ {
1043
+ "hash": 1815146985,
1044
+ "hostname": "192.168.1.103:11210"
1045
+ },
1046
+ {
1047
+ "hash": 1819730406,
1048
+ "hostname": "192.168.1.104:11210"
1049
+ },
1050
+ {
1051
+ "hash": 1822851018,
1052
+ "hostname": "192.168.1.102:11210"
1053
+ },
1054
+ {
1055
+ "hash": 1829870189,
1056
+ "hostname": "192.168.1.104:11210"
1057
+ },
1058
+ {
1059
+ "hash": 1832269339,
1060
+ "hostname": "192.168.1.101:11210"
1061
+ },
1062
+ {
1063
+ "hash": 1838872803,
1064
+ "hostname": "192.168.1.103:11210"
1065
+ },
1066
+ {
1067
+ "hash": 1843018825,
1068
+ "hostname": "192.168.1.102:11210"
1069
+ },
1070
+ {
1071
+ "hash": 1844664089,
1072
+ "hostname": "192.168.1.103:11210"
1073
+ },
1074
+ {
1075
+ "hash": 1845430660,
1076
+ "hostname": "192.168.1.101:11210"
1077
+ },
1078
+ {
1079
+ "hash": 1850143483,
1080
+ "hostname": "192.168.1.102:11210"
1081
+ },
1082
+ {
1083
+ "hash": 1852932194,
1084
+ "hostname": "192.168.1.104:11210"
1085
+ },
1086
+ {
1087
+ "hash": 1858086050,
1088
+ "hostname": "192.168.1.101:11210"
1089
+ },
1090
+ {
1091
+ "hash": 1870789199,
1092
+ "hostname": "192.168.1.101:11210"
1093
+ },
1094
+ {
1095
+ "hash": 1876011566,
1096
+ "hostname": "192.168.1.103:11210"
1097
+ },
1098
+ {
1099
+ "hash": 1876776700,
1100
+ "hostname": "192.168.1.103:11210"
1101
+ },
1102
+ {
1103
+ "hash": 1881929376,
1104
+ "hostname": "192.168.1.102:11210"
1105
+ },
1106
+ {
1107
+ "hash": 1893395399,
1108
+ "hostname": "192.168.1.102:11210"
1109
+ },
1110
+ {
1111
+ "hash": 1895244427,
1112
+ "hostname": "192.168.1.103:11210"
1113
+ },
1114
+ {
1115
+ "hash": 1901721005,
1116
+ "hostname": "192.168.1.104:11210"
1117
+ },
1118
+ {
1119
+ "hash": 1902518607,
1120
+ "hostname": "192.168.1.102:11210"
1121
+ },
1122
+ {
1123
+ "hash": 1905064504,
1124
+ "hostname": "192.168.1.103:11210"
1125
+ },
1126
+ {
1127
+ "hash": 1907897417,
1128
+ "hostname": "192.168.1.104:11210"
1129
+ },
1130
+ {
1131
+ "hash": 1912283744,
1132
+ "hostname": "192.168.1.101:11210"
1133
+ },
1134
+ {
1135
+ "hash": 1912818248,
1136
+ "hostname": "192.168.1.101:11210"
1137
+ },
1138
+ {
1139
+ "hash": 1919087076,
1140
+ "hostname": "192.168.1.102:11210"
1141
+ },
1142
+ {
1143
+ "hash": 1921174426,
1144
+ "hostname": "192.168.1.103:11210"
1145
+ },
1146
+ {
1147
+ "hash": 1922820551,
1148
+ "hostname": "192.168.1.104:11210"
1149
+ },
1150
+ {
1151
+ "hash": 1925619634,
1152
+ "hostname": "192.168.1.102:11210"
1153
+ },
1154
+ {
1155
+ "hash": 1940563863,
1156
+ "hostname": "192.168.1.102:11210"
1157
+ },
1158
+ {
1159
+ "hash": 1940753642,
1160
+ "hostname": "192.168.1.104:11210"
1161
+ },
1162
+ {
1163
+ "hash": 1951894545,
1164
+ "hostname": "192.168.1.101:11210"
1165
+ },
1166
+ {
1167
+ "hash": 1955080382,
1168
+ "hostname": "192.168.1.103:11210"
1169
+ },
1170
+ {
1171
+ "hash": 1955327164,
1172
+ "hostname": "192.168.1.103:11210"
1173
+ },
1174
+ {
1175
+ "hash": 1965322581,
1176
+ "hostname": "192.168.1.101:11210"
1177
+ },
1178
+ {
1179
+ "hash": 1976354497,
1180
+ "hostname": "192.168.1.104:11210"
1181
+ },
1182
+ {
1183
+ "hash": 1978874718,
1184
+ "hostname": "192.168.1.102:11210"
1185
+ },
1186
+ {
1187
+ "hash": 1994262650,
1188
+ "hostname": "192.168.1.103:11210"
1189
+ },
1190
+ {
1191
+ "hash": 1997505868,
1192
+ "hostname": "192.168.1.101:11210"
1193
+ },
1194
+ {
1195
+ "hash": 2006804539,
1196
+ "hostname": "192.168.1.103:11210"
1197
+ },
1198
+ {
1199
+ "hash": 2008348877,
1200
+ "hostname": "192.168.1.103:11210"
1201
+ },
1202
+ {
1203
+ "hash": 2014757210,
1204
+ "hostname": "192.168.1.103:11210"
1205
+ },
1206
+ {
1207
+ "hash": 2026424384,
1208
+ "hostname": "192.168.1.103:11210"
1209
+ },
1210
+ {
1211
+ "hash": 2028650921,
1212
+ "hostname": "192.168.1.104:11210"
1213
+ },
1214
+ {
1215
+ "hash": 2030966872,
1216
+ "hostname": "192.168.1.104:11210"
1217
+ },
1218
+ {
1219
+ "hash": 2037148681,
1220
+ "hostname": "192.168.1.103:11210"
1221
+ },
1222
+ {
1223
+ "hash": 2044867649,
1224
+ "hostname": "192.168.1.102:11210"
1225
+ },
1226
+ {
1227
+ "hash": 2068323441,
1228
+ "hostname": "192.168.1.104:11210"
1229
+ },
1230
+ {
1231
+ "hash": 2072620702,
1232
+ "hostname": "192.168.1.103:11210"
1233
+ },
1234
+ {
1235
+ "hash": 2077167547,
1236
+ "hostname": "192.168.1.102:11210"
1237
+ },
1238
+ {
1239
+ "hash": 2081481397,
1240
+ "hostname": "192.168.1.102:11210"
1241
+ },
1242
+ {
1243
+ "hash": 2084977284,
1244
+ "hostname": "192.168.1.104:11210"
1245
+ },
1246
+ {
1247
+ "hash": 2085013487,
1248
+ "hostname": "192.168.1.102:11210"
1249
+ },
1250
+ {
1251
+ "hash": 2086771129,
1252
+ "hostname": "192.168.1.104:11210"
1253
+ },
1254
+ {
1255
+ "hash": 2088726669,
1256
+ "hostname": "192.168.1.102:11210"
1257
+ },
1258
+ {
1259
+ "hash": 2093238730,
1260
+ "hostname": "192.168.1.101:11210"
1261
+ },
1262
+ {
1263
+ "hash": 2111894100,
1264
+ "hostname": "192.168.1.101:11210"
1265
+ },
1266
+ {
1267
+ "hash": 2127177168,
1268
+ "hostname": "192.168.1.102:11210"
1269
+ },
1270
+ {
1271
+ "hash": 2142513798,
1272
+ "hostname": "192.168.1.103:11210"
1273
+ },
1274
+ {
1275
+ "hash": 2143415623,
1276
+ "hostname": "192.168.1.101:11210"
1277
+ },
1278
+ {
1279
+ "hash": 2144685537,
1280
+ "hostname": "192.168.1.101:11210"
1281
+ },
1282
+ {
1283
+ "hash": 2147967778,
1284
+ "hostname": "192.168.1.101:11210"
1285
+ },
1286
+ {
1287
+ "hash": 2152428879,
1288
+ "hostname": "192.168.1.101:11210"
1289
+ },
1290
+ {
1291
+ "hash": 2155478855,
1292
+ "hostname": "192.168.1.101:11210"
1293
+ },
1294
+ {
1295
+ "hash": 2160269083,
1296
+ "hostname": "192.168.1.103:11210"
1297
+ },
1298
+ {
1299
+ "hash": 2169671558,
1300
+ "hostname": "192.168.1.102:11210"
1301
+ },
1302
+ {
1303
+ "hash": 2171471105,
1304
+ "hostname": "192.168.1.104:11210"
1305
+ },
1306
+ {
1307
+ "hash": 2211736766,
1308
+ "hostname": "192.168.1.104:11210"
1309
+ },
1310
+ {
1311
+ "hash": 2216710184,
1312
+ "hostname": "192.168.1.104:11210"
1313
+ },
1314
+ {
1315
+ "hash": 2218101290,
1316
+ "hostname": "192.168.1.101:11210"
1317
+ },
1318
+ {
1319
+ "hash": 2219080297,
1320
+ "hostname": "192.168.1.101:11210"
1321
+ },
1322
+ {
1323
+ "hash": 2223775575,
1324
+ "hostname": "192.168.1.102:11210"
1325
+ },
1326
+ {
1327
+ "hash": 2233678815,
1328
+ "hostname": "192.168.1.101:11210"
1329
+ },
1330
+ {
1331
+ "hash": 2236058839,
1332
+ "hostname": "192.168.1.104:11210"
1333
+ },
1334
+ {
1335
+ "hash": 2238022417,
1336
+ "hostname": "192.168.1.101:11210"
1337
+ },
1338
+ {
1339
+ "hash": 2249775252,
1340
+ "hostname": "192.168.1.101:11210"
1341
+ },
1342
+ {
1343
+ "hash": 2250766122,
1344
+ "hostname": "192.168.1.103:11210"
1345
+ },
1346
+ {
1347
+ "hash": 2251495420,
1348
+ "hostname": "192.168.1.104:11210"
1349
+ },
1350
+ {
1351
+ "hash": 2254257267,
1352
+ "hostname": "192.168.1.102:11210"
1353
+ },
1354
+ {
1355
+ "hash": 2258203625,
1356
+ "hostname": "192.168.1.102:11210"
1357
+ },
1358
+ {
1359
+ "hash": 2263666758,
1360
+ "hostname": "192.168.1.101:11210"
1361
+ },
1362
+ {
1363
+ "hash": 2282166024,
1364
+ "hostname": "192.168.1.104:11210"
1365
+ },
1366
+ {
1367
+ "hash": 2289146413,
1368
+ "hostname": "192.168.1.103:11210"
1369
+ },
1370
+ {
1371
+ "hash": 2289379975,
1372
+ "hostname": "192.168.1.101:11210"
1373
+ },
1374
+ {
1375
+ "hash": 2295882815,
1376
+ "hostname": "192.168.1.103:11210"
1377
+ },
1378
+ {
1379
+ "hash": 2297824343,
1380
+ "hostname": "192.168.1.103:11210"
1381
+ },
1382
+ {
1383
+ "hash": 2301819088,
1384
+ "hostname": "192.168.1.101:11210"
1385
+ },
1386
+ {
1387
+ "hash": 2304508114,
1388
+ "hostname": "192.168.1.102:11210"
1389
+ },
1390
+ {
1391
+ "hash": 2332679241,
1392
+ "hostname": "192.168.1.101:11210"
1393
+ },
1394
+ {
1395
+ "hash": 2335965224,
1396
+ "hostname": "192.168.1.102:11210"
1397
+ },
1398
+ {
1399
+ "hash": 2342426717,
1400
+ "hostname": "192.168.1.102:11210"
1401
+ },
1402
+ {
1403
+ "hash": 2348874897,
1404
+ "hostname": "192.168.1.103:11210"
1405
+ },
1406
+ {
1407
+ "hash": 2349006639,
1408
+ "hostname": "192.168.1.101:11210"
1409
+ },
1410
+ {
1411
+ "hash": 2355349899,
1412
+ "hostname": "192.168.1.104:11210"
1413
+ },
1414
+ {
1415
+ "hash": 2356201675,
1416
+ "hostname": "192.168.1.103:11210"
1417
+ },
1418
+ {
1419
+ "hash": 2359705285,
1420
+ "hostname": "192.168.1.102:11210"
1421
+ },
1422
+ {
1423
+ "hash": 2359763964,
1424
+ "hostname": "192.168.1.104:11210"
1425
+ },
1426
+ {
1427
+ "hash": 2363504191,
1428
+ "hostname": "192.168.1.101:11210"
1429
+ },
1430
+ {
1431
+ "hash": 2371536737,
1432
+ "hostname": "192.168.1.103:11210"
1433
+ },
1434
+ {
1435
+ "hash": 2372768095,
1436
+ "hostname": "192.168.1.104:11210"
1437
+ },
1438
+ {
1439
+ "hash": 2382165012,
1440
+ "hostname": "192.168.1.103:11210"
1441
+ },
1442
+ {
1443
+ "hash": 2392356161,
1444
+ "hostname": "192.168.1.103:11210"
1445
+ },
1446
+ {
1447
+ "hash": 2395816258,
1448
+ "hostname": "192.168.1.104:11210"
1449
+ },
1450
+ {
1451
+ "hash": 2398476477,
1452
+ "hostname": "192.168.1.103:11210"
1453
+ },
1454
+ {
1455
+ "hash": 2403335694,
1456
+ "hostname": "192.168.1.104:11210"
1457
+ },
1458
+ {
1459
+ "hash": 2407024307,
1460
+ "hostname": "192.168.1.101:11210"
1461
+ },
1462
+ {
1463
+ "hash": 2410540931,
1464
+ "hostname": "192.168.1.101:11210"
1465
+ },
1466
+ {
1467
+ "hash": 2413548584,
1468
+ "hostname": "192.168.1.101:11210"
1469
+ },
1470
+ {
1471
+ "hash": 2414826936,
1472
+ "hostname": "192.168.1.104:11210"
1473
+ },
1474
+ {
1475
+ "hash": 2418881400,
1476
+ "hostname": "192.168.1.103:11210"
1477
+ },
1478
+ {
1479
+ "hash": 2420302499,
1480
+ "hostname": "192.168.1.102:11210"
1481
+ },
1482
+ {
1483
+ "hash": 2421909589,
1484
+ "hostname": "192.168.1.102:11210"
1485
+ },
1486
+ {
1487
+ "hash": 2429102580,
1488
+ "hostname": "192.168.1.102:11210"
1489
+ },
1490
+ {
1491
+ "hash": 2429746059,
1492
+ "hostname": "192.168.1.102:11210"
1493
+ },
1494
+ {
1495
+ "hash": 2430854044,
1496
+ "hostname": "192.168.1.103:11210"
1497
+ },
1498
+ {
1499
+ "hash": 2436785953,
1500
+ "hostname": "192.168.1.102:11210"
1501
+ },
1502
+ {
1503
+ "hash": 2455445641,
1504
+ "hostname": "192.168.1.104:11210"
1505
+ },
1506
+ {
1507
+ "hash": 2459208395,
1508
+ "hostname": "192.168.1.102:11210"
1509
+ },
1510
+ {
1511
+ "hash": 2464565055,
1512
+ "hostname": "192.168.1.101:11210"
1513
+ },
1514
+ {
1515
+ "hash": 2468406008,
1516
+ "hostname": "192.168.1.103:11210"
1517
+ },
1518
+ {
1519
+ "hash": 2477268426,
1520
+ "hostname": "192.168.1.103:11210"
1521
+ },
1522
+ {
1523
+ "hash": 2480447510,
1524
+ "hostname": "192.168.1.104:11210"
1525
+ },
1526
+ {
1527
+ "hash": 2481939854,
1528
+ "hostname": "192.168.1.103:11210"
1529
+ },
1530
+ {
1531
+ "hash": 2485173990,
1532
+ "hostname": "192.168.1.104:11210"
1533
+ },
1534
+ {
1535
+ "hash": 2493258189,
1536
+ "hostname": "192.168.1.101:11210"
1537
+ },
1538
+ {
1539
+ "hash": 2495599826,
1540
+ "hostname": "192.168.1.102:11210"
1541
+ },
1542
+ {
1543
+ "hash": 2499898057,
1544
+ "hostname": "192.168.1.104:11210"
1545
+ },
1546
+ {
1547
+ "hash": 2513777571,
1548
+ "hostname": "192.168.1.102:11210"
1549
+ },
1550
+ {
1551
+ "hash": 2529639808,
1552
+ "hostname": "192.168.1.102:11210"
1553
+ },
1554
+ {
1555
+ "hash": 2537528735,
1556
+ "hostname": "192.168.1.102:11210"
1557
+ },
1558
+ {
1559
+ "hash": 2548861117,
1560
+ "hostname": "192.168.1.102:11210"
1561
+ },
1562
+ {
1563
+ "hash": 2554663784,
1564
+ "hostname": "192.168.1.102:11210"
1565
+ },
1566
+ {
1567
+ "hash": 2562538911,
1568
+ "hostname": "192.168.1.103:11210"
1569
+ },
1570
+ {
1571
+ "hash": 2569502935,
1572
+ "hostname": "192.168.1.104:11210"
1573
+ },
1574
+ {
1575
+ "hash": 2572842691,
1576
+ "hostname": "192.168.1.103:11210"
1577
+ },
1578
+ {
1579
+ "hash": 2576658191,
1580
+ "hostname": "192.168.1.104:11210"
1581
+ },
1582
+ {
1583
+ "hash": 2576939683,
1584
+ "hostname": "192.168.1.103:11210"
1585
+ },
1586
+ {
1587
+ "hash": 2579498837,
1588
+ "hostname": "192.168.1.103:11210"
1589
+ },
1590
+ {
1591
+ "hash": 2591144892,
1592
+ "hostname": "192.168.1.101:11210"
1593
+ },
1594
+ {
1595
+ "hash": 2593043323,
1596
+ "hostname": "192.168.1.103:11210"
1597
+ },
1598
+ {
1599
+ "hash": 2607467931,
1600
+ "hostname": "192.168.1.101:11210"
1601
+ },
1602
+ {
1603
+ "hash": 2636022808,
1604
+ "hostname": "192.168.1.102:11210"
1605
+ },
1606
+ {
1607
+ "hash": 2655218654,
1608
+ "hostname": "192.168.1.103:11210"
1609
+ },
1610
+ {
1611
+ "hash": 2659073428,
1612
+ "hostname": "192.168.1.102:11210"
1613
+ },
1614
+ {
1615
+ "hash": 2680751277,
1616
+ "hostname": "192.168.1.103:11210"
1617
+ },
1618
+ {
1619
+ "hash": 2687299612,
1620
+ "hostname": "192.168.1.102:11210"
1621
+ },
1622
+ {
1623
+ "hash": 2703217871,
1624
+ "hostname": "192.168.1.103:11210"
1625
+ },
1626
+ {
1627
+ "hash": 2706353444,
1628
+ "hostname": "192.168.1.104:11210"
1629
+ },
1630
+ {
1631
+ "hash": 2708807363,
1632
+ "hostname": "192.168.1.103:11210"
1633
+ },
1634
+ {
1635
+ "hash": 2721103368,
1636
+ "hostname": "192.168.1.101:11210"
1637
+ },
1638
+ {
1639
+ "hash": 2722413406,
1640
+ "hostname": "192.168.1.102:11210"
1641
+ },
1642
+ {
1643
+ "hash": 2725409619,
1644
+ "hostname": "192.168.1.103:11210"
1645
+ },
1646
+ {
1647
+ "hash": 2734192211,
1648
+ "hostname": "192.168.1.101:11210"
1649
+ },
1650
+ {
1651
+ "hash": 2736400772,
1652
+ "hostname": "192.168.1.104:11210"
1653
+ },
1654
+ {
1655
+ "hash": 2740430169,
1656
+ "hostname": "192.168.1.102:11210"
1657
+ },
1658
+ {
1659
+ "hash": 2740539610,
1660
+ "hostname": "192.168.1.102:11210"
1661
+ },
1662
+ {
1663
+ "hash": 2744399580,
1664
+ "hostname": "192.168.1.104:11210"
1665
+ },
1666
+ {
1667
+ "hash": 2765199427,
1668
+ "hostname": "192.168.1.103:11210"
1669
+ },
1670
+ {
1671
+ "hash": 2771445995,
1672
+ "hostname": "192.168.1.103:11210"
1673
+ },
1674
+ {
1675
+ "hash": 2774814571,
1676
+ "hostname": "192.168.1.102:11210"
1677
+ },
1678
+ {
1679
+ "hash": 2784785794,
1680
+ "hostname": "192.168.1.101:11210"
1681
+ },
1682
+ {
1683
+ "hash": 2788691413,
1684
+ "hostname": "192.168.1.103:11210"
1685
+ },
1686
+ {
1687
+ "hash": 2797020385,
1688
+ "hostname": "192.168.1.101:11210"
1689
+ },
1690
+ {
1691
+ "hash": 2799293607,
1692
+ "hostname": "192.168.1.102:11210"
1693
+ },
1694
+ {
1695
+ "hash": 2810088578,
1696
+ "hostname": "192.168.1.104:11210"
1697
+ },
1698
+ {
1699
+ "hash": 2817861607,
1700
+ "hostname": "192.168.1.103:11210"
1701
+ },
1702
+ {
1703
+ "hash": 2850802315,
1704
+ "hostname": "192.168.1.104:11210"
1705
+ },
1706
+ {
1707
+ "hash": 2855531287,
1708
+ "hostname": "192.168.1.103:11210"
1709
+ },
1710
+ {
1711
+ "hash": 2857842115,
1712
+ "hostname": "192.168.1.102:11210"
1713
+ },
1714
+ {
1715
+ "hash": 2860486928,
1716
+ "hostname": "192.168.1.103:11210"
1717
+ },
1718
+ {
1719
+ "hash": 2861023495,
1720
+ "hostname": "192.168.1.102:11210"
1721
+ },
1722
+ {
1723
+ "hash": 2869328868,
1724
+ "hostname": "192.168.1.102:11210"
1725
+ },
1726
+ {
1727
+ "hash": 2873411391,
1728
+ "hostname": "192.168.1.104:11210"
1729
+ },
1730
+ {
1731
+ "hash": 2874168212,
1732
+ "hostname": "192.168.1.101:11210"
1733
+ },
1734
+ {
1735
+ "hash": 2880510360,
1736
+ "hostname": "192.168.1.101:11210"
1737
+ },
1738
+ {
1739
+ "hash": 2892016739,
1740
+ "hostname": "192.168.1.103:11210"
1741
+ },
1742
+ {
1743
+ "hash": 2901562036,
1744
+ "hostname": "192.168.1.103:11210"
1745
+ },
1746
+ {
1747
+ "hash": 2901902003,
1748
+ "hostname": "192.168.1.103:11210"
1749
+ },
1750
+ {
1751
+ "hash": 2912678606,
1752
+ "hostname": "192.168.1.104:11210"
1753
+ },
1754
+ {
1755
+ "hash": 2914209347,
1756
+ "hostname": "192.168.1.101:11210"
1757
+ },
1758
+ {
1759
+ "hash": 2947922643,
1760
+ "hostname": "192.168.1.104:11210"
1761
+ },
1762
+ {
1763
+ "hash": 2950191403,
1764
+ "hostname": "192.168.1.101:11210"
1765
+ },
1766
+ {
1767
+ "hash": 2951941412,
1768
+ "hostname": "192.168.1.102:11210"
1769
+ },
1770
+ {
1771
+ "hash": 2964319141,
1772
+ "hostname": "192.168.1.102:11210"
1773
+ },
1774
+ {
1775
+ "hash": 2965358194,
1776
+ "hostname": "192.168.1.102:11210"
1777
+ },
1778
+ {
1779
+ "hash": 2970935924,
1780
+ "hostname": "192.168.1.102:11210"
1781
+ },
1782
+ {
1783
+ "hash": 2978244304,
1784
+ "hostname": "192.168.1.103:11210"
1785
+ },
1786
+ {
1787
+ "hash": 2979998647,
1788
+ "hostname": "192.168.1.103:11210"
1789
+ },
1790
+ {
1791
+ "hash": 2982630510,
1792
+ "hostname": "192.168.1.103:11210"
1793
+ },
1794
+ {
1795
+ "hash": 2994755518,
1796
+ "hostname": "192.168.1.102:11210"
1797
+ },
1798
+ {
1799
+ "hash": 2995593622,
1800
+ "hostname": "192.168.1.103:11210"
1801
+ },
1802
+ {
1803
+ "hash": 3003245810,
1804
+ "hostname": "192.168.1.103:11210"
1805
+ },
1806
+ {
1807
+ "hash": 3007631031,
1808
+ "hostname": "192.168.1.104:11210"
1809
+ },
1810
+ {
1811
+ "hash": 3011450496,
1812
+ "hostname": "192.168.1.101:11210"
1813
+ },
1814
+ {
1815
+ "hash": 3016538656,
1816
+ "hostname": "192.168.1.101:11210"
1817
+ },
1818
+ {
1819
+ "hash": 3031768590,
1820
+ "hostname": "192.168.1.103:11210"
1821
+ },
1822
+ {
1823
+ "hash": 3032508864,
1824
+ "hostname": "192.168.1.104:11210"
1825
+ },
1826
+ {
1827
+ "hash": 3033000907,
1828
+ "hostname": "192.168.1.104:11210"
1829
+ },
1830
+ {
1831
+ "hash": 3044985122,
1832
+ "hostname": "192.168.1.102:11210"
1833
+ },
1834
+ {
1835
+ "hash": 3045977562,
1836
+ "hostname": "192.168.1.101:11210"
1837
+ },
1838
+ {
1839
+ "hash": 3047943817,
1840
+ "hostname": "192.168.1.104:11210"
1841
+ },
1842
+ {
1843
+ "hash": 3057174511,
1844
+ "hostname": "192.168.1.103:11210"
1845
+ },
1846
+ {
1847
+ "hash": 3066795063,
1848
+ "hostname": "192.168.1.102:11210"
1849
+ },
1850
+ {
1851
+ "hash": 3071361797,
1852
+ "hostname": "192.168.1.104:11210"
1853
+ },
1854
+ {
1855
+ "hash": 3076892655,
1856
+ "hostname": "192.168.1.104:11210"
1857
+ },
1858
+ {
1859
+ "hash": 3092797124,
1860
+ "hostname": "192.168.1.101:11210"
1861
+ },
1862
+ {
1863
+ "hash": 3096058712,
1864
+ "hostname": "192.168.1.104:11210"
1865
+ },
1866
+ {
1867
+ "hash": 3097126221,
1868
+ "hostname": "192.168.1.102:11210"
1869
+ },
1870
+ {
1871
+ "hash": 3107195845,
1872
+ "hostname": "192.168.1.104:11210"
1873
+ },
1874
+ {
1875
+ "hash": 3110375837,
1876
+ "hostname": "192.168.1.103:11210"
1877
+ },
1878
+ {
1879
+ "hash": 3111017590,
1880
+ "hostname": "192.168.1.104:11210"
1881
+ },
1882
+ {
1883
+ "hash": 3112808764,
1884
+ "hostname": "192.168.1.104:11210"
1885
+ },
1886
+ {
1887
+ "hash": 3116821652,
1888
+ "hostname": "192.168.1.104:11210"
1889
+ },
1890
+ {
1891
+ "hash": 3122686777,
1892
+ "hostname": "192.168.1.101:11210"
1893
+ },
1894
+ {
1895
+ "hash": 3143272714,
1896
+ "hostname": "192.168.1.104:11210"
1897
+ },
1898
+ {
1899
+ "hash": 3145364190,
1900
+ "hostname": "192.168.1.104:11210"
1901
+ },
1902
+ {
1903
+ "hash": 3148465924,
1904
+ "hostname": "192.168.1.102:11210"
1905
+ },
1906
+ {
1907
+ "hash": 3156940389,
1908
+ "hostname": "192.168.1.101:11210"
1909
+ },
1910
+ {
1911
+ "hash": 3157185821,
1912
+ "hostname": "192.168.1.102:11210"
1913
+ },
1914
+ {
1915
+ "hash": 3162218946,
1916
+ "hostname": "192.168.1.101:11210"
1917
+ },
1918
+ {
1919
+ "hash": 3168713195,
1920
+ "hostname": "192.168.1.102:11210"
1921
+ },
1922
+ {
1923
+ "hash": 3176144561,
1924
+ "hostname": "192.168.1.101:11210"
1925
+ },
1926
+ {
1927
+ "hash": 3180049487,
1928
+ "hostname": "192.168.1.103:11210"
1929
+ },
1930
+ {
1931
+ "hash": 3184659286,
1932
+ "hostname": "192.168.1.102:11210"
1933
+ },
1934
+ {
1935
+ "hash": 3185122926,
1936
+ "hostname": "192.168.1.101:11210"
1937
+ },
1938
+ {
1939
+ "hash": 3186340757,
1940
+ "hostname": "192.168.1.104:11210"
1941
+ },
1942
+ {
1943
+ "hash": 3192978267,
1944
+ "hostname": "192.168.1.101:11210"
1945
+ },
1946
+ {
1947
+ "hash": 3194991910,
1948
+ "hostname": "192.168.1.104:11210"
1949
+ },
1950
+ {
1951
+ "hash": 3196228923,
1952
+ "hostname": "192.168.1.102:11210"
1953
+ },
1954
+ {
1955
+ "hash": 3197055256,
1956
+ "hostname": "192.168.1.102:11210"
1957
+ },
1958
+ {
1959
+ "hash": 3199555078,
1960
+ "hostname": "192.168.1.101:11210"
1961
+ },
1962
+ {
1963
+ "hash": 3204329566,
1964
+ "hostname": "192.168.1.103:11210"
1965
+ },
1966
+ {
1967
+ "hash": 3213366760,
1968
+ "hostname": "192.168.1.104:11210"
1969
+ },
1970
+ {
1971
+ "hash": 3217042089,
1972
+ "hostname": "192.168.1.102:11210"
1973
+ },
1974
+ {
1975
+ "hash": 3219645643,
1976
+ "hostname": "192.168.1.101:11210"
1977
+ },
1978
+ {
1979
+ "hash": 3220779703,
1980
+ "hostname": "192.168.1.104:11210"
1981
+ },
1982
+ {
1983
+ "hash": 3222388741,
1984
+ "hostname": "192.168.1.102:11210"
1985
+ },
1986
+ {
1987
+ "hash": 3231819178,
1988
+ "hostname": "192.168.1.102:11210"
1989
+ },
1990
+ {
1991
+ "hash": 3231983500,
1992
+ "hostname": "192.168.1.103:11210"
1993
+ },
1994
+ {
1995
+ "hash": 3241533416,
1996
+ "hostname": "192.168.1.103:11210"
1997
+ },
1998
+ {
1999
+ "hash": 3246762340,
2000
+ "hostname": "192.168.1.101:11210"
2001
+ },
2002
+ {
2003
+ "hash": 3254649564,
2004
+ "hostname": "192.168.1.103:11210"
2005
+ },
2006
+ {
2007
+ "hash": 3257755885,
2008
+ "hostname": "192.168.1.102:11210"
2009
+ },
2010
+ {
2011
+ "hash": 3257839211,
2012
+ "hostname": "192.168.1.102:11210"
2013
+ },
2014
+ {
2015
+ "hash": 3268036277,
2016
+ "hostname": "192.168.1.103:11210"
2017
+ },
2018
+ {
2019
+ "hash": 3270499507,
2020
+ "hostname": "192.168.1.102:11210"
2021
+ },
2022
+ {
2023
+ "hash": 3270541837,
2024
+ "hostname": "192.168.1.101:11210"
2025
+ },
2026
+ {
2027
+ "hash": 3273568827,
2028
+ "hostname": "192.168.1.101:11210"
2029
+ },
2030
+ {
2031
+ "hash": 3286913829,
2032
+ "hostname": "192.168.1.104:11210"
2033
+ },
2034
+ {
2035
+ "hash": 3293995327,
2036
+ "hostname": "192.168.1.104:11210"
2037
+ },
2038
+ {
2039
+ "hash": 3297369600,
2040
+ "hostname": "192.168.1.101:11210"
2041
+ },
2042
+ {
2043
+ "hash": 3319122936,
2044
+ "hostname": "192.168.1.102:11210"
2045
+ },
2046
+ {
2047
+ "hash": 3319386861,
2048
+ "hostname": "192.168.1.104:11210"
2049
+ },
2050
+ {
2051
+ "hash": 3320395408,
2052
+ "hostname": "192.168.1.103:11210"
2053
+ },
2054
+ {
2055
+ "hash": 3333090032,
2056
+ "hostname": "192.168.1.101:11210"
2057
+ },
2058
+ {
2059
+ "hash": 3333987526,
2060
+ "hostname": "192.168.1.103:11210"
2061
+ },
2062
+ {
2063
+ "hash": 3341021656,
2064
+ "hostname": "192.168.1.101:11210"
2065
+ },
2066
+ {
2067
+ "hash": 3345078307,
2068
+ "hostname": "192.168.1.101:11210"
2069
+ },
2070
+ {
2071
+ "hash": 3354480042,
2072
+ "hostname": "192.168.1.103:11210"
2073
+ },
2074
+ {
2075
+ "hash": 3363052232,
2076
+ "hostname": "192.168.1.104:11210"
2077
+ },
2078
+ {
2079
+ "hash": 3373431100,
2080
+ "hostname": "192.168.1.102:11210"
2081
+ },
2082
+ {
2083
+ "hash": 3375736893,
2084
+ "hostname": "192.168.1.101:11210"
2085
+ },
2086
+ {
2087
+ "hash": 3384443613,
2088
+ "hostname": "192.168.1.102:11210"
2089
+ },
2090
+ {
2091
+ "hash": 3388590673,
2092
+ "hostname": "192.168.1.103:11210"
2093
+ },
2094
+ {
2095
+ "hash": 3391063569,
2096
+ "hostname": "192.168.1.103:11210"
2097
+ },
2098
+ {
2099
+ "hash": 3391892171,
2100
+ "hostname": "192.168.1.101:11210"
2101
+ },
2102
+ {
2103
+ "hash": 3393020626,
2104
+ "hostname": "192.168.1.103:11210"
2105
+ },
2106
+ {
2107
+ "hash": 3394930397,
2108
+ "hostname": "192.168.1.101:11210"
2109
+ },
2110
+ {
2111
+ "hash": 3402531496,
2112
+ "hostname": "192.168.1.104:11210"
2113
+ },
2114
+ {
2115
+ "hash": 3408529577,
2116
+ "hostname": "192.168.1.103:11210"
2117
+ },
2118
+ {
2119
+ "hash": 3423692167,
2120
+ "hostname": "192.168.1.102:11210"
2121
+ },
2122
+ {
2123
+ "hash": 3438260135,
2124
+ "hostname": "192.168.1.104:11210"
2125
+ },
2126
+ {
2127
+ "hash": 3450364841,
2128
+ "hostname": "192.168.1.103:11210"
2129
+ },
2130
+ {
2131
+ "hash": 3451817594,
2132
+ "hostname": "192.168.1.103:11210"
2133
+ },
2134
+ {
2135
+ "hash": 3462159736,
2136
+ "hostname": "192.168.1.103:11210"
2137
+ },
2138
+ {
2139
+ "hash": 3464581770,
2140
+ "hostname": "192.168.1.104:11210"
2141
+ },
2142
+ {
2143
+ "hash": 3470631083,
2144
+ "hostname": "192.168.1.104:11210"
2145
+ },
2146
+ {
2147
+ "hash": 3471176825,
2148
+ "hostname": "192.168.1.102:11210"
2149
+ },
2150
+ {
2151
+ "hash": 3482712187,
2152
+ "hostname": "192.168.1.103:11210"
2153
+ },
2154
+ {
2155
+ "hash": 3486972016,
2156
+ "hostname": "192.168.1.102:11210"
2157
+ },
2158
+ {
2159
+ "hash": 3497900631,
2160
+ "hostname": "192.168.1.103:11210"
2161
+ },
2162
+ {
2163
+ "hash": 3501465358,
2164
+ "hostname": "192.168.1.102:11210"
2165
+ },
2166
+ {
2167
+ "hash": 3502395511,
2168
+ "hostname": "192.168.1.101:11210"
2169
+ },
2170
+ {
2171
+ "hash": 3508324624,
2172
+ "hostname": "192.168.1.103:11210"
2173
+ },
2174
+ {
2175
+ "hash": 3512415568,
2176
+ "hostname": "192.168.1.101:11210"
2177
+ },
2178
+ {
2179
+ "hash": 3515974254,
2180
+ "hostname": "192.168.1.102:11210"
2181
+ },
2182
+ {
2183
+ "hash": 3524345411,
2184
+ "hostname": "192.168.1.103:11210"
2185
+ },
2186
+ {
2187
+ "hash": 3537448334,
2188
+ "hostname": "192.168.1.104:11210"
2189
+ },
2190
+ {
2191
+ "hash": 3544483423,
2192
+ "hostname": "192.168.1.101:11210"
2193
+ },
2194
+ {
2195
+ "hash": 3576230515,
2196
+ "hostname": "192.168.1.102:11210"
2197
+ },
2198
+ {
2199
+ "hash": 3592072640,
2200
+ "hostname": "192.168.1.101:11210"
2201
+ },
2202
+ {
2203
+ "hash": 3592362276,
2204
+ "hostname": "192.168.1.104:11210"
2205
+ },
2206
+ {
2207
+ "hash": 3597725255,
2208
+ "hostname": "192.168.1.104:11210"
2209
+ },
2210
+ {
2211
+ "hash": 3601062619,
2212
+ "hostname": "192.168.1.101:11210"
2213
+ },
2214
+ {
2215
+ "hash": 3616203529,
2216
+ "hostname": "192.168.1.101:11210"
2217
+ },
2218
+ {
2219
+ "hash": 3631339946,
2220
+ "hostname": "192.168.1.104:11210"
2221
+ },
2222
+ {
2223
+ "hash": 3647231444,
2224
+ "hostname": "192.168.1.103:11210"
2225
+ },
2226
+ {
2227
+ "hash": 3647767317,
2228
+ "hostname": "192.168.1.103:11210"
2229
+ },
2230
+ {
2231
+ "hash": 3653620851,
2232
+ "hostname": "192.168.1.104:11210"
2233
+ },
2234
+ {
2235
+ "hash": 3653965921,
2236
+ "hostname": "192.168.1.102:11210"
2237
+ },
2238
+ {
2239
+ "hash": 3665376586,
2240
+ "hostname": "192.168.1.102:11210"
2241
+ },
2242
+ {
2243
+ "hash": 3667582053,
2244
+ "hostname": "192.168.1.104:11210"
2245
+ },
2246
+ {
2247
+ "hash": 3674583581,
2248
+ "hostname": "192.168.1.102:11210"
2249
+ },
2250
+ {
2251
+ "hash": 3679616294,
2252
+ "hostname": "192.168.1.103:11210"
2253
+ },
2254
+ {
2255
+ "hash": 3689202246,
2256
+ "hostname": "192.168.1.104:11210"
2257
+ },
2258
+ {
2259
+ "hash": 3695766635,
2260
+ "hostname": "192.168.1.101:11210"
2261
+ },
2262
+ {
2263
+ "hash": 3701598384,
2264
+ "hostname": "192.168.1.103:11210"
2265
+ },
2266
+ {
2267
+ "hash": 3705953317,
2268
+ "hostname": "192.168.1.104:11210"
2269
+ },
2270
+ {
2271
+ "hash": 3708039394,
2272
+ "hostname": "192.168.1.104:11210"
2273
+ },
2274
+ {
2275
+ "hash": 3709046009,
2276
+ "hostname": "192.168.1.101:11210"
2277
+ },
2278
+ {
2279
+ "hash": 3721227880,
2280
+ "hostname": "192.168.1.104:11210"
2281
+ },
2282
+ {
2283
+ "hash": 3726163235,
2284
+ "hostname": "192.168.1.103:11210"
2285
+ },
2286
+ {
2287
+ "hash": 3727568624,
2288
+ "hostname": "192.168.1.104:11210"
2289
+ },
2290
+ {
2291
+ "hash": 3733467519,
2292
+ "hostname": "192.168.1.104:11210"
2293
+ },
2294
+ {
2295
+ "hash": 3733758920,
2296
+ "hostname": "192.168.1.104:11210"
2297
+ },
2298
+ {
2299
+ "hash": 3737697895,
2300
+ "hostname": "192.168.1.104:11210"
2301
+ },
2302
+ {
2303
+ "hash": 3765531054,
2304
+ "hostname": "192.168.1.104:11210"
2305
+ },
2306
+ {
2307
+ "hash": 3766966027,
2308
+ "hostname": "192.168.1.101:11210"
2309
+ },
2310
+ {
2311
+ "hash": 3771032913,
2312
+ "hostname": "192.168.1.101:11210"
2313
+ },
2314
+ {
2315
+ "hash": 3773813579,
2316
+ "hostname": "192.168.1.103:11210"
2317
+ },
2318
+ {
2319
+ "hash": 3774248922,
2320
+ "hostname": "192.168.1.103:11210"
2321
+ },
2322
+ {
2323
+ "hash": 3787479627,
2324
+ "hostname": "192.168.1.103:11210"
2325
+ },
2326
+ {
2327
+ "hash": 3792304980,
2328
+ "hostname": "192.168.1.104:11210"
2329
+ },
2330
+ {
2331
+ "hash": 3810779832,
2332
+ "hostname": "192.168.1.102:11210"
2333
+ },
2334
+ {
2335
+ "hash": 3817523306,
2336
+ "hostname": "192.168.1.104:11210"
2337
+ },
2338
+ {
2339
+ "hash": 3820073934,
2340
+ "hostname": "192.168.1.104:11210"
2341
+ },
2342
+ {
2343
+ "hash": 3824057754,
2344
+ "hostname": "192.168.1.101:11210"
2345
+ },
2346
+ {
2347
+ "hash": 3826741669,
2348
+ "hostname": "192.168.1.103:11210"
2349
+ },
2350
+ {
2351
+ "hash": 3835418783,
2352
+ "hostname": "192.168.1.103:11210"
2353
+ },
2354
+ {
2355
+ "hash": 3837701794,
2356
+ "hostname": "192.168.1.101:11210"
2357
+ },
2358
+ {
2359
+ "hash": 3856930252,
2360
+ "hostname": "192.168.1.102:11210"
2361
+ },
2362
+ {
2363
+ "hash": 3859300461,
2364
+ "hostname": "192.168.1.104:11210"
2365
+ },
2366
+ {
2367
+ "hash": 3869451309,
2368
+ "hostname": "192.168.1.103:11210"
2369
+ },
2370
+ {
2371
+ "hash": 3869487590,
2372
+ "hostname": "192.168.1.103:11210"
2373
+ },
2374
+ {
2375
+ "hash": 3874470339,
2376
+ "hostname": "192.168.1.103:11210"
2377
+ },
2378
+ {
2379
+ "hash": 3906931626,
2380
+ "hostname": "192.168.1.104:11210"
2381
+ },
2382
+ {
2383
+ "hash": 3907887959,
2384
+ "hostname": "192.168.1.104:11210"
2385
+ },
2386
+ {
2387
+ "hash": 3913217777,
2388
+ "hostname": "192.168.1.102:11210"
2389
+ },
2390
+ {
2391
+ "hash": 3916300028,
2392
+ "hostname": "192.168.1.103:11210"
2393
+ },
2394
+ {
2395
+ "hash": 3929242298,
2396
+ "hostname": "192.168.1.103:11210"
2397
+ },
2398
+ {
2399
+ "hash": 3935840426,
2400
+ "hostname": "192.168.1.103:11210"
2401
+ },
2402
+ {
2403
+ "hash": 3938091434,
2404
+ "hostname": "192.168.1.101:11210"
2405
+ },
2406
+ {
2407
+ "hash": 3939046082,
2408
+ "hostname": "192.168.1.104:11210"
2409
+ },
2410
+ {
2411
+ "hash": 3944055381,
2412
+ "hostname": "192.168.1.104:11210"
2413
+ },
2414
+ {
2415
+ "hash": 3952202271,
2416
+ "hostname": "192.168.1.101:11210"
2417
+ },
2418
+ {
2419
+ "hash": 3967157600,
2420
+ "hostname": "192.168.1.103:11210"
2421
+ },
2422
+ {
2423
+ "hash": 3969988969,
2424
+ "hostname": "192.168.1.102:11210"
2425
+ },
2426
+ {
2427
+ "hash": 3970801588,
2428
+ "hostname": "192.168.1.102:11210"
2429
+ },
2430
+ {
2431
+ "hash": 3988459743,
2432
+ "hostname": "192.168.1.102:11210"
2433
+ },
2434
+ {
2435
+ "hash": 4000600944,
2436
+ "hostname": "192.168.1.102:11210"
2437
+ },
2438
+ {
2439
+ "hash": 4012546291,
2440
+ "hostname": "192.168.1.103:11210"
2441
+ },
2442
+ {
2443
+ "hash": 4018500867,
2444
+ "hostname": "192.168.1.102:11210"
2445
+ },
2446
+ {
2447
+ "hash": 4037553434,
2448
+ "hostname": "192.168.1.103:11210"
2449
+ },
2450
+ {
2451
+ "hash": 4039158619,
2452
+ "hostname": "192.168.1.103:11210"
2453
+ },
2454
+ {
2455
+ "hash": 4040122138,
2456
+ "hostname": "192.168.1.101:11210"
2457
+ },
2458
+ {
2459
+ "hash": 4042130982,
2460
+ "hostname": "192.168.1.101:11210"
2461
+ },
2462
+ {
2463
+ "hash": 4050330934,
2464
+ "hostname": "192.168.1.102:11210"
2465
+ },
2466
+ {
2467
+ "hash": 4054981044,
2468
+ "hostname": "192.168.1.103:11210"
2469
+ },
2470
+ {
2471
+ "hash": 4055893391,
2472
+ "hostname": "192.168.1.104:11210"
2473
+ },
2474
+ {
2475
+ "hash": 4064007189,
2476
+ "hostname": "192.168.1.101:11210"
2477
+ },
2478
+ {
2479
+ "hash": 4073624003,
2480
+ "hostname": "192.168.1.104:11210"
2481
+ },
2482
+ {
2483
+ "hash": 4075391690,
2484
+ "hostname": "192.168.1.102:11210"
2485
+ },
2486
+ {
2487
+ "hash": 4084891055,
2488
+ "hostname": "192.168.1.104:11210"
2489
+ },
2490
+ {
2491
+ "hash": 4092596632,
2492
+ "hostname": "192.168.1.103:11210"
2493
+ },
2494
+ {
2495
+ "hash": 4099199622,
2496
+ "hostname": "192.168.1.101:11210"
2497
+ },
2498
+ {
2499
+ "hash": 4106037692,
2500
+ "hostname": "192.168.1.103:11210"
2501
+ },
2502
+ {
2503
+ "hash": 4120322167,
2504
+ "hostname": "192.168.1.101:11210"
2505
+ },
2506
+ {
2507
+ "hash": 4152176114,
2508
+ "hostname": "192.168.1.101:11210"
2509
+ },
2510
+ {
2511
+ "hash": 4165291207,
2512
+ "hostname": "192.168.1.104:11210"
2513
+ },
2514
+ {
2515
+ "hash": 4166546806,
2516
+ "hostname": "192.168.1.102:11210"
2517
+ },
2518
+ {
2519
+ "hash": 4195612479,
2520
+ "hostname": "192.168.1.102:11210"
2521
+ },
2522
+ {
2523
+ "hash": 4196018177,
2524
+ "hostname": "192.168.1.104:11210"
2525
+ },
2526
+ {
2527
+ "hash": 4240258066,
2528
+ "hostname": "192.168.1.102:11210"
2529
+ },
2530
+ {
2531
+ "hash": 4248973251,
2532
+ "hostname": "192.168.1.104:11210"
2533
+ },
2534
+ {
2535
+ "hash": 4261792465,
2536
+ "hostname": "192.168.1.101:11210"
2537
+ },
2538
+ {
2539
+ "hash": 4264824551,
2540
+ "hostname": "192.168.1.101:11210"
2541
+ },
2542
+ {
2543
+ "hash": 4275762582,
2544
+ "hostname": "192.168.1.101:11210"
2545
+ },
2546
+ {
2547
+ "hash": 4280142414,
2548
+ "hostname": "192.168.1.101:11210"
2549
+ },
2550
+ {
2551
+ "hash": 4280309254,
2552
+ "hostname": "192.168.1.102:11210"
2553
+ },
2554
+ {
2555
+ "hash": 4281097143,
2556
+ "hostname": "192.168.1.102:11210"
2557
+ },
2558
+ {
2559
+ "hash": 4294628205,
2560
+ "hostname": "192.168.1.102:11210"
2561
+ }
2562
+ ]