grpc 1.6.7 → 1.7.0.pre1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (277) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +579 -77
  3. data/include/grpc/byte_buffer.h +1 -63
  4. data/include/grpc/compression.h +27 -5
  5. data/include/grpc/fork.h +24 -0
  6. data/include/grpc/grpc.h +12 -6
  7. data/include/grpc/grpc_security.h +28 -7
  8. data/include/grpc/impl/codegen/atm.h +1 -0
  9. data/include/grpc/impl/codegen/byte_buffer.h +86 -0
  10. data/include/grpc/impl/codegen/compression_types.h +63 -5
  11. data/include/grpc/impl/codegen/fork.h +48 -0
  12. data/include/grpc/impl/codegen/grpc_types.h +26 -9
  13. data/include/grpc/impl/codegen/port_platform.h +11 -4
  14. data/include/grpc/impl/codegen/slice.h +6 -1
  15. data/include/grpc/impl/codegen/sync.h +3 -1
  16. data/include/grpc/impl/codegen/sync_custom.h +36 -0
  17. data/include/grpc/module.modulemap +75 -3
  18. data/include/grpc/slice.h +1 -5
  19. data/include/grpc/support/sync_custom.h +24 -0
  20. data/src/core/ext/census/base_resources.c +14 -14
  21. data/src/core/ext/census/context.c +7 -5
  22. data/src/core/ext/census/grpc_filter.c +12 -14
  23. data/src/core/ext/census/mlog.c +2 -1
  24. data/src/core/ext/census/resource.c +13 -9
  25. data/src/core/ext/filters/client_channel/channel_connectivity.c +15 -8
  26. data/src/core/ext/filters/client_channel/client_channel.c +418 -439
  27. data/src/core/ext/filters/client_channel/client_channel_factory.c +4 -5
  28. data/src/core/ext/filters/client_channel/client_channel_plugin.c +2 -2
  29. data/src/core/ext/filters/client_channel/http_connect_handshaker.c +7 -5
  30. data/src/core/ext/filters/client_channel/http_proxy.c +17 -21
  31. data/src/core/ext/filters/client_channel/lb_policy.c +1 -1
  32. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.c +7 -7
  33. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c +371 -257
  34. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.c +7 -5
  35. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c +25 -14
  36. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c +16 -16
  37. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c +33 -28
  38. data/src/core/ext/filters/client_channel/lb_policy_factory.c +10 -8
  39. data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -1
  40. data/src/core/ext/filters/client_channel/proxy_mapper_registry.c +1 -1
  41. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c +7 -6
  42. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c +62 -28
  43. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c +29 -23
  44. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.c +25 -14
  45. data/src/core/ext/filters/client_channel/retry_throttle.c +9 -6
  46. data/src/core/ext/filters/client_channel/subchannel.c +30 -30
  47. data/src/core/ext/filters/client_channel/subchannel.h +1 -4
  48. data/src/core/ext/filters/client_channel/subchannel_index.c +31 -15
  49. data/src/core/ext/filters/client_channel/subchannel_index.h +7 -0
  50. data/src/core/ext/filters/client_channel/uri_parser.c +4 -3
  51. data/src/core/ext/filters/deadline/deadline_filter.c +78 -39
  52. data/src/core/ext/filters/deadline/deadline_filter.h +7 -1
  53. data/src/core/ext/filters/http/client/http_client_filter.c +14 -14
  54. data/src/core/ext/filters/http/http_filters_plugin.c +1 -1
  55. data/src/core/ext/filters/http/message_compress/message_compress_filter.c +240 -175
  56. data/src/core/ext/filters/http/server/http_server_filter.c +48 -36
  57. data/src/core/ext/filters/load_reporting/{load_reporting_filter.c → server_load_reporting_filter.c} +11 -12
  58. data/src/core/ext/filters/load_reporting/{load_reporting_filter.h → server_load_reporting_filter.h} +6 -5
  59. data/src/core/ext/filters/load_reporting/{load_reporting.c → server_load_reporting_plugin.c} +19 -13
  60. data/src/core/ext/filters/load_reporting/{load_reporting.h → server_load_reporting_plugin.h} +4 -3
  61. data/src/core/ext/filters/max_age/max_age_filter.c +2 -3
  62. data/src/core/ext/filters/message_size/message_size_filter.c +4 -2
  63. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.c +0 -1
  64. data/src/core/ext/transport/chttp2/client/chttp2_connector.c +5 -5
  65. data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +1 -1
  66. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c +1 -1
  67. data/src/core/ext/transport/chttp2/server/chttp2_server.c +20 -18
  68. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.c +1 -0
  69. data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +493 -210
  70. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
  71. data/src/core/ext/transport/chttp2/transport/flow_control.c +9 -8
  72. data/src/core/ext/transport/chttp2/transport/frame_data.c +2 -2
  73. data/src/core/ext/transport/chttp2/transport/frame_goaway.c +2 -2
  74. data/src/core/ext/transport/chttp2/transport/frame_ping.c +5 -4
  75. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +1 -1
  76. data/src/core/ext/transport/chttp2/transport/frame_settings.c +10 -9
  77. data/src/core/ext/transport/chttp2/transport/frame_window_update.c +9 -5
  78. data/src/core/ext/transport/chttp2/transport/hpack_encoder.c +62 -41
  79. data/src/core/ext/transport/chttp2/transport/hpack_parser.c +52 -8
  80. data/src/core/ext/transport/chttp2/transport/hpack_table.c +2 -2
  81. data/src/core/ext/transport/chttp2/transport/incoming_metadata.c +3 -2
  82. data/src/core/ext/transport/chttp2/transport/internal.h +60 -30
  83. data/src/core/ext/transport/chttp2/transport/parsing.c +16 -5
  84. data/src/core/ext/transport/chttp2/transport/stream_lists.c +36 -16
  85. data/src/core/ext/transport/chttp2/transport/stream_map.c +6 -4
  86. data/src/core/ext/transport/chttp2/transport/writing.c +133 -105
  87. data/src/core/ext/transport/inproc/inproc_transport.c +61 -65
  88. data/src/core/lib/channel/channel_args.c +112 -12
  89. data/src/core/lib/channel/channel_args.h +31 -0
  90. data/src/core/lib/channel/channel_stack.c +1 -15
  91. data/src/core/lib/channel/channel_stack.h +3 -10
  92. data/src/core/lib/channel/channel_stack_builder.c +41 -10
  93. data/src/core/lib/channel/channel_stack_builder.h +10 -0
  94. data/src/core/lib/channel/connected_channel.c +94 -23
  95. data/src/core/lib/channel/handshaker.c +8 -6
  96. data/src/core/lib/channel/handshaker_registry.c +1 -1
  97. data/src/core/lib/compression/algorithm_metadata.h +14 -0
  98. data/src/core/lib/compression/compression.c +101 -1
  99. data/src/core/lib/compression/stream_compression.c +32 -146
  100. data/src/core/lib/compression/stream_compression.h +28 -4
  101. data/src/core/lib/compression/stream_compression_gzip.c +228 -0
  102. data/src/core/lib/{iomgr/ev_epoll_thread_pool_linux.h → compression/stream_compression_gzip.h} +5 -7
  103. data/src/core/lib/compression/stream_compression_identity.c +94 -0
  104. data/src/core/lib/{iomgr/ev_epoll_limited_pollers_linux.h → compression/stream_compression_identity.h} +7 -8
  105. data/src/core/lib/debug/stats.c +174 -0
  106. data/src/core/lib/debug/stats.h +61 -0
  107. data/src/core/lib/debug/stats_data.c +687 -0
  108. data/src/core/lib/debug/stats_data.h +470 -0
  109. data/src/core/lib/debug/trace.c +3 -3
  110. data/src/core/lib/debug/trace.h +1 -1
  111. data/src/core/lib/http/format_request.c +1 -1
  112. data/src/core/lib/http/httpcli.c +8 -7
  113. data/src/core/lib/http/httpcli_security_connector.c +2 -1
  114. data/src/core/lib/http/parser.c +4 -3
  115. data/src/core/lib/iomgr/call_combiner.c +202 -0
  116. data/src/core/lib/iomgr/call_combiner.h +121 -0
  117. data/src/core/lib/iomgr/closure.c +18 -4
  118. data/src/core/lib/iomgr/combiner.c +11 -4
  119. data/src/core/lib/iomgr/error.c +26 -24
  120. data/src/core/lib/iomgr/ev_epoll1_linux.c +395 -212
  121. data/src/core/lib/iomgr/ev_epollex_linux.c +141 -128
  122. data/src/core/lib/iomgr/ev_epollsig_linux.c +44 -41
  123. data/src/core/lib/iomgr/ev_poll_posix.c +99 -75
  124. data/src/core/lib/iomgr/ev_posix.c +5 -9
  125. data/src/core/lib/iomgr/ev_posix.h +1 -1
  126. data/src/core/lib/iomgr/exec_ctx.h +6 -1
  127. data/src/core/lib/iomgr/executor.c +142 -36
  128. data/src/core/lib/iomgr/executor.h +6 -1
  129. data/src/core/lib/iomgr/fork_posix.c +88 -0
  130. data/src/core/lib/iomgr/fork_windows.c +39 -0
  131. data/src/core/lib/iomgr/iocp_windows.c +2 -0
  132. data/src/core/lib/iomgr/iomgr.c +2 -8
  133. data/src/core/lib/iomgr/is_epollexclusive_available.c +6 -6
  134. data/src/core/lib/iomgr/load_file.c +2 -1
  135. data/src/core/lib/iomgr/polling_entity.c +9 -9
  136. data/src/core/lib/iomgr/polling_entity.h +7 -1
  137. data/src/core/lib/iomgr/pollset.h +1 -1
  138. data/src/core/lib/iomgr/pollset_uv.c +1 -1
  139. data/src/core/lib/iomgr/pollset_windows.c +3 -3
  140. data/src/core/lib/iomgr/port.h +4 -0
  141. data/src/core/lib/iomgr/resolve_address_posix.c +8 -7
  142. data/src/core/lib/iomgr/resolve_address_windows.c +1 -1
  143. data/src/core/lib/iomgr/resource_quota.c +24 -19
  144. data/src/core/lib/iomgr/socket_factory_posix.c +4 -4
  145. data/src/core/lib/iomgr/socket_mutator.c +4 -4
  146. data/src/core/lib/iomgr/socket_utils_windows.c +0 -4
  147. data/src/core/lib/iomgr/tcp_client_posix.c +5 -4
  148. data/src/core/lib/iomgr/tcp_posix.c +181 -20
  149. data/src/core/lib/iomgr/tcp_server_posix.c +8 -7
  150. data/src/core/lib/iomgr/tcp_server_utils_posix_common.c +1 -1
  151. data/src/core/lib/iomgr/timer.h +4 -0
  152. data/src/core/lib/iomgr/timer_generic.c +138 -3
  153. data/src/core/lib/iomgr/timer_generic.h +3 -0
  154. data/src/core/lib/iomgr/timer_heap.c +4 -4
  155. data/src/core/lib/iomgr/timer_manager.c +2 -2
  156. data/src/core/lib/iomgr/timer_uv.c +2 -0
  157. data/src/core/lib/iomgr/udp_server.c +10 -8
  158. data/src/core/lib/iomgr/unix_sockets_posix.c +4 -2
  159. data/src/core/lib/iomgr/wakeup_fd_cv.c +9 -8
  160. data/src/core/lib/iomgr/wakeup_fd_cv.h +2 -2
  161. data/src/core/lib/json/json.c +1 -1
  162. data/src/core/lib/json/json_string.c +13 -13
  163. data/src/core/lib/profiling/timers.h +18 -8
  164. data/src/core/lib/security/credentials/composite/composite_credentials.c +4 -10
  165. data/src/core/lib/security/credentials/google_default/google_default_credentials.c +2 -1
  166. data/src/core/lib/security/credentials/jwt/jwt_verifier.c +11 -6
  167. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +4 -4
  168. data/src/core/lib/security/credentials/plugin/plugin_credentials.c +132 -50
  169. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
  170. data/src/core/lib/security/transport/client_auth_filter.c +68 -135
  171. data/src/core/lib/security/transport/secure_endpoint.c +110 -90
  172. data/src/core/lib/security/transport/secure_endpoint.h +8 -3
  173. data/src/core/lib/security/transport/security_connector.c +10 -12
  174. data/src/core/lib/security/transport/security_handshaker.c +45 -24
  175. data/src/core/lib/security/transport/server_auth_filter.c +71 -20
  176. data/src/core/lib/slice/b64.c +2 -2
  177. data/src/core/lib/slice/slice.c +16 -14
  178. data/src/core/lib/slice/slice_buffer.c +5 -4
  179. data/src/core/lib/slice/slice_hash_table.c +3 -2
  180. data/src/core/lib/slice/slice_intern.c +8 -5
  181. data/src/core/lib/support/block_annotate.h +22 -0
  182. data/src/core/lib/support/fork.c +62 -0
  183. data/src/core/lib/support/fork.h +35 -0
  184. data/src/core/lib/support/log_linux.c +1 -1
  185. data/src/core/lib/support/string.c +15 -1
  186. data/src/core/lib/support/string.h +3 -0
  187. data/src/core/lib/support/thd_internal.h +6 -0
  188. data/src/core/lib/support/thd_posix.c +56 -0
  189. data/src/core/lib/support/thd_windows.c +2 -0
  190. data/src/core/lib/surface/alarm.c +22 -15
  191. data/src/core/lib/surface/byte_buffer.c +4 -2
  192. data/src/core/lib/surface/call.c +442 -141
  193. data/src/core/lib/surface/call.h +6 -6
  194. data/src/core/lib/surface/call_log_batch.c +1 -1
  195. data/src/core/lib/surface/call_test_only.h +12 -0
  196. data/src/core/lib/surface/channel.c +39 -4
  197. data/src/core/lib/surface/channel_init.c +6 -6
  198. data/src/core/lib/surface/channel_ping.c +2 -2
  199. data/src/core/lib/surface/completion_queue.c +56 -57
  200. data/src/core/lib/surface/init.c +17 -3
  201. data/src/core/lib/surface/init_secure.c +5 -1
  202. data/src/core/lib/surface/lame_client.cc +9 -10
  203. data/src/core/lib/surface/server.c +81 -72
  204. data/src/core/lib/surface/version.c +2 -2
  205. data/src/core/lib/transport/byte_stream.c +1 -0
  206. data/src/core/lib/transport/byte_stream.h +3 -1
  207. data/src/core/lib/transport/connectivity_state.c +2 -1
  208. data/src/core/lib/transport/metadata.c +7 -4
  209. data/src/core/lib/transport/metadata_batch.c +18 -16
  210. data/src/core/lib/transport/metadata_batch.h +1 -0
  211. data/src/core/lib/transport/service_config.c +5 -3
  212. data/src/core/lib/transport/static_metadata.c +395 -614
  213. data/src/core/lib/transport/static_metadata.h +165 -133
  214. data/src/core/lib/transport/status_conversion.c +1 -1
  215. data/src/core/lib/transport/transport.c +20 -20
  216. data/src/core/lib/transport/transport.h +8 -5
  217. data/src/core/lib/transport/transport_impl.h +0 -3
  218. data/src/core/lib/transport/transport_op_string.c +8 -1
  219. data/src/core/plugin_registry/grpc_plugin_registry.c +4 -4
  220. data/src/core/tsi/fake_transport_security.c +133 -2
  221. data/src/core/tsi/fake_transport_security.h +5 -0
  222. data/src/core/tsi/ssl_transport_security.c +105 -8
  223. data/src/core/tsi/ssl_transport_security.h +30 -7
  224. data/src/core/tsi/transport_security.h +8 -2
  225. data/src/core/tsi/transport_security_grpc.c +20 -13
  226. data/src/core/tsi/transport_security_grpc.h +13 -9
  227. data/src/ruby/ext/grpc/rb_call_credentials.c +6 -2
  228. data/src/ruby/ext/grpc/rb_grpc.c +1 -1
  229. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +30 -20
  230. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +50 -35
  231. data/src/ruby/lib/grpc.rb +1 -0
  232. data/src/ruby/lib/grpc/generic/active_call.rb +34 -9
  233. data/src/ruby/lib/grpc/generic/bidi_call.rb +19 -10
  234. data/src/ruby/lib/grpc/generic/client_stub.rb +95 -38
  235. data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
  236. data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
  237. data/src/ruby/lib/grpc/generic/rpc_desc.rb +66 -20
  238. data/src/ruby/lib/grpc/generic/rpc_server.rb +15 -3
  239. data/src/ruby/lib/grpc/google_rpc_status_utils.rb +1 -2
  240. data/src/ruby/lib/grpc/version.rb +1 -1
  241. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +1 -0
  242. data/src/ruby/spec/channel_connection_spec.rb +1 -34
  243. data/src/ruby/spec/client_server_spec.rb +188 -82
  244. data/src/ruby/spec/generic/active_call_spec.rb +65 -11
  245. data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
  246. data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
  247. data/src/ruby/spec/generic/rpc_desc_spec.rb +38 -0
  248. data/src/ruby/spec/generic/rpc_server_spec.rb +1 -34
  249. data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
  250. data/src/ruby/spec/spec_helper.rb +4 -0
  251. data/src/ruby/spec/support/helpers.rb +73 -0
  252. data/src/ruby/spec/support/services.rb +147 -0
  253. data/third_party/cares/ares_build.h +21 -62
  254. data/third_party/cares/cares/ares.h +23 -1
  255. data/third_party/cares/cares/ares__close_sockets.c +2 -2
  256. data/third_party/cares/cares/ares_create_query.c +3 -3
  257. data/third_party/cares/cares/ares_expand_name.c +6 -2
  258. data/third_party/cares/cares/ares_expand_string.c +1 -1
  259. data/third_party/cares/cares/ares_getnameinfo.c +27 -7
  260. data/third_party/cares/cares/ares_init.c +407 -39
  261. data/third_party/cares/cares/ares_library_init.c +10 -0
  262. data/third_party/cares/cares/ares_library_init.h +2 -1
  263. data/third_party/cares/cares/ares_nowarn.c +6 -6
  264. data/third_party/cares/cares/ares_nowarn.h +2 -2
  265. data/third_party/cares/cares/ares_parse_naptr_reply.c +6 -1
  266. data/third_party/cares/cares/ares_private.h +11 -0
  267. data/third_party/cares/cares/ares_process.c +126 -37
  268. data/third_party/cares/cares/ares_version.h +2 -2
  269. data/third_party/cares/cares/ares_writev.c +2 -2
  270. data/third_party/cares/cares/config-win32.h +8 -34
  271. data/third_party/cares/cares/inet_net_pton.c +2 -2
  272. data/third_party/cares/cares/setup_once.h +5 -5
  273. data/third_party/cares/config_darwin/ares_config.h +98 -196
  274. data/third_party/cares/config_linux/ares_config.h +103 -203
  275. metadata +47 -20
  276. data/src/core/lib/iomgr/ev_epoll_limited_pollers_linux.c +0 -1957
  277. data/src/core/lib/iomgr/ev_epoll_thread_pool_linux.c +0 -1182
@@ -1,35 +1,34 @@
1
- /* ares_config.h. Generated from ares_config.h.in by configure. */
2
- /* ares_config.h.in. Generated from configure.ac by autoheader. */
1
+ /* Generated from ares_config.h.cmake*/
3
2
 
4
3
  /* Define if building universal (internal helper macro) */
5
- /* #undef AC_APPLE_UNIVERSAL_BUILD */
4
+ #undef AC_APPLE_UNIVERSAL_BUILD
6
5
 
7
6
  /* define this if ares is built for a big endian system */
8
- /* #undef ARES_BIG_ENDIAN */
7
+ #undef ARES_BIG_ENDIAN
9
8
 
10
9
  /* when building as static part of libcurl */
11
- /* #undef BUILDING_LIBCURL */
10
+ #undef BUILDING_LIBCURL
12
11
 
13
12
  /* Defined for build that exposes internal static functions for testing. */
14
- /* #undef CARES_EXPOSE_STATICS */
13
+ #undef CARES_EXPOSE_STATICS
15
14
 
16
15
  /* Defined for build with symbol hiding. */
17
- #define CARES_SYMBOL_HIDING 1
16
+ #undef CARES_SYMBOL_HIDING
18
17
 
19
18
  /* Definition to make a library symbol externally visible. */
20
- #define CARES_SYMBOL_SCOPE_EXTERN __attribute__ ((__visibility__ ("default")))
19
+ #undef CARES_SYMBOL_SCOPE_EXTERN
21
20
 
22
21
  /* Use resolver library to configure cares */
23
22
  /* #undef CARES_USE_LIBRESOLV */
24
23
 
25
24
  /* if a /etc/inet dir is being used */
26
- /* #undef ETC_INET */
25
+ #undef ETC_INET
27
26
 
28
27
  /* Define to the type of arg 2 for gethostname. */
29
28
  #define GETHOSTNAME_TYPE_ARG2 size_t
30
29
 
31
30
  /* Define to the type qualifier of arg 1 for getnameinfo. */
32
- #define GETNAMEINFO_QUAL_ARG1 const
31
+ #define GETNAMEINFO_QUAL_ARG1
33
32
 
34
33
  /* Define to the type of arg 1 for getnameinfo. */
35
34
  #define GETNAMEINFO_TYPE_ARG1 struct sockaddr *
@@ -46,37 +45,35 @@
46
45
  /* Specifies the number of arguments to getservbyport_r */
47
46
  #define GETSERVBYPORT_R_ARGS 6
48
47
 
49
- /* Specifies the size of the buffer to pass to getservbyport_r */
50
- #define GETSERVBYPORT_R_BUFSIZE 4096
51
-
52
48
  /* Define to 1 if you have AF_INET6. */
53
- #define HAVE_AF_INET6 1
49
+ #define HAVE_AF_INET6
54
50
 
55
51
  /* Define to 1 if you have the <arpa/inet.h> header file. */
56
- #define HAVE_ARPA_INET_H 1
52
+ #define HAVE_ARPA_INET_H
57
53
 
58
54
  /* Define to 1 if you have the <arpa/nameser_compat.h> header file. */
59
- #define HAVE_ARPA_NAMESER_COMPAT_H 1
55
+ #define HAVE_ARPA_NAMESER_COMPAT_H
60
56
 
61
57
  /* Define to 1 if you have the <arpa/nameser.h> header file. */
62
- #define HAVE_ARPA_NAMESER_H 1
58
+ #define HAVE_ARPA_NAMESER_H
63
59
 
64
60
  /* Define to 1 if you have the <assert.h> header file. */
65
- #define HAVE_ASSERT_H 1
61
+ #define HAVE_ASSERT_H
66
62
 
67
63
  /* Define to 1 if you have the `bitncmp' function. */
68
64
  /* #undef HAVE_BITNCMP */
69
65
 
70
66
  /* Define to 1 if bool is an available type. */
71
- #define HAVE_BOOL_T 1
67
+ #define HAVE_BOOL_T
72
68
 
73
- /* Define HAVE_CLOCK_GETTIME_MONOTONIC to 1 if you have the clock_gettime
69
+ /* Define HAVE_CLOCK_GETTIME_MONOTONIC if you have the clock_gettime
74
70
  * function and monotonic timer.
75
71
  *
72
+ * IMPORTANT: gRPC MANUAL EDIT HERE!
76
73
  * Note: setting HAVE_CLOCK_GETTIME_MONOTONIC causes use of the clock_gettime
77
74
  * function from glibc, don't set it to support glibc < 2.17 */
78
75
  #ifndef GPR_BACKWARDS_COMPATIBILITY_MODE
79
- #define HAVE_CLOCK_GETTIME_MONOTONIC 1
76
+ #define HAVE_CLOCK_GETTIME_MONOTONIC
80
77
  #endif
81
78
 
82
79
  /* Define to 1 if you have the closesocket function. */
@@ -86,73 +83,73 @@
86
83
  /* #undef HAVE_CLOSESOCKET_CAMEL */
87
84
 
88
85
  /* Define to 1 if you have the connect function. */
89
- #define HAVE_CONNECT 1
86
+ #define HAVE_CONNECT
90
87
 
91
88
  /* define if the compiler supports basic C++11 syntax */
92
- #define HAVE_CXX11 1
89
+ /* #undef HAVE_CXX11 */
93
90
 
94
91
  /* Define to 1 if you have the <dlfcn.h> header file. */
95
- #define HAVE_DLFCN_H 1
92
+ #define HAVE_DLFCN_H
96
93
 
97
94
  /* Define to 1 if you have the <errno.h> header file. */
98
- #define HAVE_ERRNO_H 1
95
+ #define HAVE_ERRNO_H
99
96
 
100
97
  /* Define to 1 if you have the fcntl function. */
101
- #define HAVE_FCNTL 1
98
+ #define HAVE_FCNTL
102
99
 
103
100
  /* Define to 1 if you have the <fcntl.h> header file. */
104
- #define HAVE_FCNTL_H 1
101
+ #define HAVE_FCNTL_H
105
102
 
106
103
  /* Define to 1 if you have a working fcntl O_NONBLOCK function. */
107
- #define HAVE_FCNTL_O_NONBLOCK 1
104
+ #define HAVE_FCNTL_O_NONBLOCK
108
105
 
109
106
  /* Define to 1 if you have the freeaddrinfo function. */
110
- #define HAVE_FREEADDRINFO 1
107
+ #define HAVE_FREEADDRINFO
111
108
 
112
109
  /* Define to 1 if you have a working getaddrinfo function. */
113
- #define HAVE_GETADDRINFO 1
110
+ #define HAVE_GETADDRINFO
114
111
 
115
112
  /* Define to 1 if the getaddrinfo function is threadsafe. */
116
- #define HAVE_GETADDRINFO_THREADSAFE 1
113
+ /* #undef HAVE_GETADDRINFO_THREADSAFE */
117
114
 
118
115
  /* Define to 1 if you have the getenv function. */
119
- #define HAVE_GETENV 1
116
+ #define HAVE_GETENV
120
117
 
121
118
  /* Define to 1 if you have the gethostbyaddr function. */
122
- #define HAVE_GETHOSTBYADDR 1
119
+ #define HAVE_GETHOSTBYADDR
123
120
 
124
121
  /* Define to 1 if you have the gethostbyname function. */
125
- #define HAVE_GETHOSTBYNAME 1
122
+ #define HAVE_GETHOSTBYNAME
126
123
 
127
124
  /* Define to 1 if you have the gethostname function. */
128
- #define HAVE_GETHOSTNAME 1
125
+ #define HAVE_GETHOSTNAME
129
126
 
130
127
  /* Define to 1 if you have the getnameinfo function. */
131
- #define HAVE_GETNAMEINFO 1
128
+ #define HAVE_GETNAMEINFO
132
129
 
133
130
  /* Define to 1 if you have the getservbyport_r function. */
134
- #define HAVE_GETSERVBYPORT_R 1
131
+ #define HAVE_GETSERVBYPORT_R
135
132
 
136
133
  /* Define to 1 if you have the `gettimeofday' function. */
137
- #define HAVE_GETTIMEOFDAY 1
134
+ #define HAVE_GETTIMEOFDAY
138
135
 
139
136
  /* Define to 1 if you have the `if_indextoname' function. */
140
- #define HAVE_IF_INDEXTONAME 1
137
+ #define HAVE_IF_INDEXTONAME
141
138
 
142
139
  /* Define to 1 if you have a IPv6 capable working inet_net_pton function. */
143
140
  /* #undef HAVE_INET_NET_PTON */
144
141
 
145
142
  /* Define to 1 if you have a IPv6 capable working inet_ntop function. */
146
- #define HAVE_INET_NTOP 1
143
+ #define HAVE_INET_NTOP
147
144
 
148
145
  /* Define to 1 if you have a IPv6 capable working inet_pton function. */
149
- #define HAVE_INET_PTON 1
146
+ #define HAVE_INET_PTON
150
147
 
151
148
  /* Define to 1 if you have the <inttypes.h> header file. */
152
- #define HAVE_INTTYPES_H 1
149
+ #define HAVE_INTTYPES_H
153
150
 
154
151
  /* Define to 1 if you have the ioctl function. */
155
- #define HAVE_IOCTL 1
152
+ #define HAVE_IOCTL
156
153
 
157
154
  /* Define to 1 if you have the ioctlsocket function. */
158
155
  /* #undef HAVE_IOCTLSOCKET */
@@ -168,109 +165,109 @@
168
165
  /* #undef HAVE_IOCTLSOCKET_FIONBIO */
169
166
 
170
167
  /* Define to 1 if you have a working ioctl FIONBIO function. */
171
- #define HAVE_IOCTL_FIONBIO 1
168
+ #define HAVE_IOCTL_FIONBIO
172
169
 
173
170
  /* Define to 1 if you have a working ioctl SIOCGIFADDR function. */
174
- #define HAVE_IOCTL_SIOCGIFADDR 1
171
+ #define HAVE_IOCTL_SIOCGIFADDR
175
172
 
176
173
  /* Define to 1 if you have the `resolve' library (-lresolve). */
177
- /* #undef HAVE_LIBRESOLVE */
174
+ /* #undef HAVE_LIBRESOLV */
178
175
 
179
176
  /* Define to 1 if you have the <limits.h> header file. */
180
- #define HAVE_LIMITS_H 1
177
+ #define HAVE_LIMITS_H
181
178
 
182
179
  /* if your compiler supports LL */
183
- #define HAVE_LL 1
180
+ #define HAVE_LL
184
181
 
185
182
  /* Define to 1 if the compiler supports the 'long long' data type. */
186
- #define HAVE_LONGLONG 1
183
+ #define HAVE_LONGLONG
187
184
 
188
185
  /* Define to 1 if you have the malloc.h header file. */
189
- #define HAVE_MALLOC_H 1
186
+ #define HAVE_MALLOC_H
190
187
 
191
188
  /* Define to 1 if you have the memory.h header file. */
192
- #define HAVE_MEMORY_H 1
189
+ #define HAVE_MEMORY_H
193
190
 
194
191
  /* Define to 1 if you have the MSG_NOSIGNAL flag. */
195
- #define HAVE_MSG_NOSIGNAL 1
192
+ #define HAVE_MSG_NOSIGNAL
196
193
 
197
194
  /* Define to 1 if you have the <netdb.h> header file. */
198
- #define HAVE_NETDB_H 1
195
+ #define HAVE_NETDB_H
199
196
 
200
197
  /* Define to 1 if you have the <netinet/in.h> header file. */
201
- #define HAVE_NETINET_IN_H 1
198
+ #define HAVE_NETINET_IN_H
202
199
 
203
200
  /* Define to 1 if you have the <netinet/tcp.h> header file. */
204
- #define HAVE_NETINET_TCP_H 1
201
+ #define HAVE_NETINET_TCP_H
205
202
 
206
203
  /* Define to 1 if you have the <net/if.h> header file. */
207
- #define HAVE_NET_IF_H 1
204
+ #define HAVE_NET_IF_H
208
205
 
209
206
  /* Define to 1 if you have PF_INET6. */
210
- #define HAVE_PF_INET6 1
207
+ #define HAVE_PF_INET6
211
208
 
212
209
  /* Define to 1 if you have the recv function. */
213
- #define HAVE_RECV 1
210
+ #define HAVE_RECV
214
211
 
215
212
  /* Define to 1 if you have the recvfrom function. */
216
- #define HAVE_RECVFROM 1
213
+ #define HAVE_RECVFROM
217
214
 
218
215
  /* Define to 1 if you have the send function. */
219
- #define HAVE_SEND 1
216
+ #define HAVE_SEND
220
217
 
221
218
  /* Define to 1 if you have the setsockopt function. */
222
- #define HAVE_SETSOCKOPT 1
219
+ #define HAVE_SETSOCKOPT
223
220
 
224
221
  /* Define to 1 if you have a working setsockopt SO_NONBLOCK function. */
225
222
  /* #undef HAVE_SETSOCKOPT_SO_NONBLOCK */
226
223
 
227
224
  /* Define to 1 if you have the <signal.h> header file. */
228
- #define HAVE_SIGNAL_H 1
225
+ #define HAVE_SIGNAL_H
229
226
 
230
227
  /* Define to 1 if sig_atomic_t is an available typedef. */
231
- #define HAVE_SIG_ATOMIC_T 1
228
+ #define HAVE_SIG_ATOMIC_T
232
229
 
233
230
  /* Define to 1 if sig_atomic_t is already defined as volatile. */
234
231
  /* #undef HAVE_SIG_ATOMIC_T_VOLATILE */
235
232
 
236
233
  /* Define to 1 if your struct sockaddr_in6 has sin6_scope_id. */
237
- #define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1
234
+ #define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
238
235
 
239
236
  /* Define to 1 if you have the socket function. */
240
- #define HAVE_SOCKET 1
237
+ #define HAVE_SOCKET
241
238
 
242
239
  /* Define to 1 if you have the <socket.h> header file. */
243
240
  /* #undef HAVE_SOCKET_H */
244
241
 
245
242
  /* Define to 1 if you have the <stdbool.h> header file. */
246
- #define HAVE_STDBOOL_H 1
243
+ #define HAVE_STDBOOL_H
247
244
 
248
245
  /* Define to 1 if you have the <stdint.h> header file. */
249
- #define HAVE_STDINT_H 1
246
+ #define HAVE_STDINT_H
250
247
 
251
248
  /* Define to 1 if you have the <stdlib.h> header file. */
252
- #define HAVE_STDLIB_H 1
249
+ #define HAVE_STDLIB_H
253
250
 
254
251
  /* Define to 1 if you have the strcasecmp function. */
255
- #define HAVE_STRCASECMP 1
252
+ #define HAVE_STRCASECMP
256
253
 
257
254
  /* Define to 1 if you have the strcmpi function. */
258
255
  /* #undef HAVE_STRCMPI */
259
256
 
260
257
  /* Define to 1 if you have the strdup function. */
261
- #define HAVE_STRDUP 1
258
+ #define HAVE_STRDUP
262
259
 
263
260
  /* Define to 1 if you have the stricmp function. */
264
261
  /* #undef HAVE_STRICMP */
265
262
 
266
263
  /* Define to 1 if you have the <strings.h> header file. */
267
- #define HAVE_STRINGS_H 1
264
+ #define HAVE_STRINGS_H
268
265
 
269
266
  /* Define to 1 if you have the <string.h> header file. */
270
- #define HAVE_STRING_H 1
267
+ #define HAVE_STRING_H
271
268
 
272
269
  /* Define to 1 if you have the strncasecmp function. */
273
- #define HAVE_STRNCASECMP 1
270
+ #define HAVE_STRNCASECMP
274
271
 
275
272
  /* Define to 1 if you have the strncmpi function. */
276
273
  /* #undef HAVE_STRNCMPI */
@@ -279,52 +276,52 @@
279
276
  /* #undef HAVE_STRNICMP */
280
277
 
281
278
  /* Define to 1 if you have the <stropts.h> header file. */
282
- #define HAVE_STROPTS_H 1
279
+ #define HAVE_STROPTS_H
283
280
 
284
281
  /* Define to 1 if you have struct addrinfo. */
285
- #define HAVE_STRUCT_ADDRINFO 1
282
+ #define HAVE_STRUCT_ADDRINFO
286
283
 
287
284
  /* Define to 1 if you have struct in6_addr. */
288
- #define HAVE_STRUCT_IN6_ADDR 1
285
+ #define HAVE_STRUCT_IN6_ADDR
289
286
 
290
287
  /* Define to 1 if you have struct sockaddr_in6. */
291
- #define HAVE_STRUCT_SOCKADDR_IN6 1
288
+ #define HAVE_STRUCT_SOCKADDR_IN6
292
289
 
293
290
  /* if struct sockaddr_storage is defined */
294
- #define HAVE_STRUCT_SOCKADDR_STORAGE 1
291
+ #define HAVE_STRUCT_SOCKADDR_STORAGE
295
292
 
296
293
  /* Define to 1 if you have the timeval struct. */
297
- #define HAVE_STRUCT_TIMEVAL 1
294
+ #define HAVE_STRUCT_TIMEVAL
298
295
 
299
296
  /* Define to 1 if you have the <sys/ioctl.h> header file. */
300
- #define HAVE_SYS_IOCTL_H 1
297
+ #define HAVE_SYS_IOCTL_H
301
298
 
302
299
  /* Define to 1 if you have the <sys/param.h> header file. */
303
- #define HAVE_SYS_PARAM_H 1
300
+ #define HAVE_SYS_PARAM_H
304
301
 
305
302
  /* Define to 1 if you have the <sys/select.h> header file. */
306
- #define HAVE_SYS_SELECT_H 1
303
+ #define HAVE_SYS_SELECT_H
307
304
 
308
305
  /* Define to 1 if you have the <sys/socket.h> header file. */
309
- #define HAVE_SYS_SOCKET_H 1
306
+ #define HAVE_SYS_SOCKET_H
310
307
 
311
308
  /* Define to 1 if you have the <sys/stat.h> header file. */
312
- #define HAVE_SYS_STAT_H 1
309
+ #define HAVE_SYS_STAT_H
313
310
 
314
311
  /* Define to 1 if you have the <sys/time.h> header file. */
315
- #define HAVE_SYS_TIME_H 1
312
+ #define HAVE_SYS_TIME_H
316
313
 
317
314
  /* Define to 1 if you have the <sys/types.h> header file. */
318
- #define HAVE_SYS_TYPES_H 1
315
+ #define HAVE_SYS_TYPES_H
319
316
 
320
317
  /* Define to 1 if you have the <sys/uio.h> header file. */
321
- #define HAVE_SYS_UIO_H 1
318
+ #define HAVE_SYS_UIO_H
322
319
 
323
320
  /* Define to 1 if you have the <time.h> header file. */
324
- #define HAVE_TIME_H 1
321
+ #define HAVE_TIME_H
325
322
 
326
323
  /* Define to 1 if you have the <unistd.h> header file. */
327
- #define HAVE_UNISTD_H 1
324
+ #define HAVE_UNISTD_H
328
325
 
329
326
  /* Define to 1 if you have the windows.h header file. */
330
327
  /* #undef HAVE_WINDOWS_H */
@@ -336,53 +333,19 @@
336
333
  /* #undef HAVE_WINSOCK_H */
337
334
 
338
335
  /* Define to 1 if you have the writev function. */
339
- #define HAVE_WRITEV 1
336
+ #define HAVE_WRITEV
340
337
 
341
338
  /* Define to 1 if you have the ws2tcpip.h header file. */
342
339
  /* #undef HAVE_WS2TCPIP_H */
343
340
 
344
- /* Define to the sub-directory in which libtool stores uninstalled libraries.
345
- */
346
- #define LT_OBJDIR ".libs/"
347
-
348
341
  /* Define to 1 if you need the malloc.h header file even with stdlib.h */
349
342
  /* #undef NEED_MALLOC_H */
350
343
 
351
344
  /* Define to 1 if you need the memory.h header file even with stdlib.h */
352
345
  /* #undef NEED_MEMORY_H */
353
346
 
354
- /* Define to 1 if _REENTRANT preprocessor symbol must be defined. */
355
- /* #undef NEED_REENTRANT */
356
-
357
- /* Define to 1 if _THREAD_SAFE preprocessor symbol must be defined. */
358
- /* #undef NEED_THREAD_SAFE */
359
-
360
- /* cpu-machine-OS */
361
- #define OS "i386-unknown-linux-gnu"
362
-
363
- /* Name of package */
364
- #define PACKAGE "c-ares"
365
-
366
- /* Define to the address where bug reports for this package should be sent. */
367
- #define PACKAGE_BUGREPORT "c-ares mailing list: http://cool.haxx.se/mailman/listinfo/c-ares"
368
-
369
- /* Define to the full name of this package. */
370
- #define PACKAGE_NAME "c-ares"
371
-
372
- /* Define to the full name and version of this package. */
373
- #define PACKAGE_STRING "c-ares -"
374
-
375
- /* Define to the one symbol short name of this package. */
376
- #define PACKAGE_TARNAME "c-ares"
377
-
378
- /* Define to the home page for this package. */
379
- #define PACKAGE_URL ""
380
-
381
- /* Define to the version of this package. */
382
- #define PACKAGE_VERSION "-"
383
-
384
347
  /* a suitable file/device to read random data from */
385
- #define RANDOM_FILE "/dev/urandom"
348
+ /* #undef RANDOM_FILE */
386
349
 
387
350
  /* Define to the type qualifier pointed by arg 5 for recvfrom. */
388
351
  #define RECVFROM_QUAL_ARG5
@@ -391,10 +354,10 @@
391
354
  #define RECVFROM_TYPE_ARG1 int
392
355
 
393
356
  /* Define to the type pointed by arg 2 for recvfrom. */
394
- #define RECVFROM_TYPE_ARG2 void
357
+ #define RECVFROM_TYPE_ARG2 void *
395
358
 
396
359
  /* Define to 1 if the type pointed by arg 2 for recvfrom is void. */
397
- #define RECVFROM_TYPE_ARG2_IS_VOID 1
360
+ #define RECVFROM_TYPE_ARG2_IS_VOID 0
398
361
 
399
362
  /* Define to the type of arg 3 for recvfrom. */
400
363
  #define RECVFROM_TYPE_ARG3 size_t
@@ -403,16 +366,16 @@
403
366
  #define RECVFROM_TYPE_ARG4 int
404
367
 
405
368
  /* Define to the type pointed by arg 5 for recvfrom. */
406
- #define RECVFROM_TYPE_ARG5 struct sockaddr
369
+ #define RECVFROM_TYPE_ARG5 struct sockaddr *
407
370
 
408
371
  /* Define to 1 if the type pointed by arg 5 for recvfrom is void. */
409
- /* #undef RECVFROM_TYPE_ARG5_IS_VOID */
372
+ #define RECVFROM_TYPE_ARG5_IS_VOID 0
410
373
 
411
374
  /* Define to the type pointed by arg 6 for recvfrom. */
412
- #define RECVFROM_TYPE_ARG6 socklen_t
375
+ #define RECVFROM_TYPE_ARG6 socklen_t *
413
376
 
414
377
  /* Define to 1 if the type pointed by arg 6 for recvfrom is void. */
415
- /* #undef RECVFROM_TYPE_ARG6_IS_VOID */
378
+ #define RECVFROM_TYPE_ARG6_IS_VOID 0
416
379
 
417
380
  /* Define to the function return type for recvfrom. */
418
381
  #define RECVFROM_TYPE_RETV ssize_t
@@ -433,10 +396,10 @@
433
396
  #define RECV_TYPE_RETV ssize_t
434
397
 
435
398
  /* Define as the return type of signal handlers (`int' or `void'). */
436
- #define RETSIGTYPE void
399
+ #define RETSIGTYPE
437
400
 
438
401
  /* Define to the type qualifier of arg 2 for send. */
439
- #define SEND_QUAL_ARG2 const
402
+ #define SEND_QUAL_ARG2
440
403
 
441
404
  /* Define to the type of arg 1 for send. */
442
405
  #define SEND_TYPE_ARG1 int
@@ -453,66 +416,21 @@
453
416
  /* Define to the function return type for send. */
454
417
  #define SEND_TYPE_RETV ssize_t
455
418
 
456
- /* The size of `int', as computed by sizeof. */
457
- #define SIZEOF_INT 4
458
-
459
- /* The size of `long', as computed by sizeof. */
460
- #define SIZEOF_LONG 4
461
-
462
- /* The size of `short', as computed by sizeof. */
463
- #define SIZEOF_SHORT 2
464
-
465
- /* The size of `size_t', as computed by sizeof. */
466
- #define SIZEOF_SIZE_T 4
467
-
468
- /* The size of `struct in6_addr', as computed by sizeof. */
469
- #define SIZEOF_STRUCT_IN6_ADDR 16
470
-
471
- /* The size of `struct in_addr', as computed by sizeof. */
472
- #define SIZEOF_STRUCT_IN_ADDR 4
473
-
474
- /* The size of `time_t', as computed by sizeof. */
475
- #define SIZEOF_TIME_T 4
476
-
477
- /* Define to 1 if you have the ANSI C header files. */
478
- #define STDC_HEADERS 1
479
-
480
419
  /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
481
- #define TIME_WITH_SYS_TIME 1
420
+ #define TIME_WITH_SYS_TIME
482
421
 
483
422
  /* Define to disable non-blocking sockets. */
484
- /* #undef USE_BLOCKING_SOCKETS */
485
-
486
- /* Version number of package */
487
- #define VERSION "-"
423
+ #undef USE_BLOCKING_SOCKETS
488
424
 
489
425
  /* Define to avoid automatic inclusion of winsock.h */
490
- /* #undef WIN32_LEAN_AND_MEAN */
491
-
492
- /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
493
- significant byte first (like Motorola and SPARC, unlike Intel). */
494
- #if defined AC_APPLE_UNIVERSAL_BUILD
495
- # if defined __BIG_ENDIAN__
496
- # define WORDS_BIGENDIAN 1
497
- # endif
498
- #else
499
- # ifndef WORDS_BIGENDIAN
500
- /* # undef WORDS_BIGENDIAN */
501
- # endif
502
- #endif
503
-
504
- /* Define to 1 if OS is AIX. */
505
- #ifndef _ALL_SOURCE
506
- /* # undef _ALL_SOURCE */
507
- #endif
426
+ #undef WIN32_LEAN_AND_MEAN
508
427
 
509
- /* Enable large inode numbers on Mac OS X 10.5. */
510
- #ifndef _DARWIN_USE_64_BIT_INODE
511
- # define _DARWIN_USE_64_BIT_INODE 1
512
- #endif
428
+ /* Type to use in place of in_addr_t when system does not provide it. */
429
+ #undef in_addr_t
513
430
 
514
431
  #ifdef GPR_BACKWARDS_COMPATIBILITY_MODE
515
- /* Redefine the fd_set macros for GLIBC < 2.15 support.
432
+ /* IMPORTANT: gRPC MANUAL EDIT HERE!
433
+ * Redefine the fd_set macros for GLIBC < 2.15 support.
516
434
  * This is a backwards compatibility hack. At version 2.15, GLIBC introduces
517
435
  * the __fdelt_chk function, and starts using it within its fd_set macros
518
436
  * (which c-ares uses). For compatibility with GLIBC < 2.15, we need to redefine
@@ -538,21 +456,3 @@
538
456
  #define FD_ISSET(d, set) \
539
457
  ((GRPC_CARES_FDS_BITS (set)[ (d) / NFDBITS ] & GRPC_CARES_FD_MASK(d)) != 0)
540
458
  #endif /* GPR_BACKWARDS_COMPATIBILITY_MODE */
541
-
542
- /* Number of bits in a file offset, on hosts where this is settable. */
543
- /* #undef _FILE_OFFSET_BITS */
544
-
545
- /* Define for large files, on AIX-style hosts. */
546
- /* #undef _LARGE_FILES */
547
-
548
- /* Define to empty if `const' does not conform to ANSI C. */
549
- /* #undef const */
550
-
551
- /* Type to use in place of in_addr_t when system does not provide it. */
552
- /* #undef in_addr_t */
553
-
554
- /* Define to `unsigned int' if <sys/types.h> does not define. */
555
- /* #undef size_t */
556
-
557
- /* the signed version of size_t */
558
- /* #undef ssize_t */