grpc 1.10.0 → 1.11.0.pre2

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 (762) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +2098 -501
  3. data/include/grpc/byte_buffer.h +2 -0
  4. data/include/grpc/byte_buffer_reader.h +2 -0
  5. data/include/grpc/census.h +2 -0
  6. data/include/grpc/fork.h +2 -0
  7. data/include/grpc/grpc.h +10 -0
  8. data/include/grpc/grpc_cronet.h +2 -0
  9. data/include/grpc/grpc_posix.h +2 -1
  10. data/include/grpc/grpc_security.h +21 -0
  11. data/include/grpc/grpc_security_constants.h +1 -0
  12. data/include/grpc/impl/codegen/byte_buffer.h +2 -0
  13. data/include/grpc/impl/codegen/grpc_types.h +24 -0
  14. data/include/grpc/impl/codegen/slice.h +1 -1
  15. data/include/grpc/impl/codegen/sync.h +1 -0
  16. data/include/grpc/impl/codegen/sync_custom.h +2 -0
  17. data/include/grpc/impl/codegen/sync_generic.h +2 -0
  18. data/include/grpc/impl/codegen/sync_posix.h +2 -0
  19. data/include/grpc/impl/codegen/sync_windows.h +2 -0
  20. data/include/grpc/slice.h +2 -0
  21. data/include/grpc/slice_buffer.h +2 -0
  22. data/include/grpc/status.h +2 -0
  23. data/include/grpc/support/alloc.h +2 -2
  24. data/include/grpc/support/atm.h +2 -0
  25. data/include/grpc/support/atm_gcc_atomic.h +2 -0
  26. data/include/grpc/support/atm_gcc_sync.h +2 -0
  27. data/include/grpc/support/atm_windows.h +2 -0
  28. data/include/grpc/support/log.h +1 -1
  29. data/include/grpc/support/sync.h +2 -0
  30. data/include/grpc/support/sync_custom.h +2 -0
  31. data/include/grpc/support/sync_generic.h +2 -0
  32. data/include/grpc/support/sync_posix.h +2 -0
  33. data/include/grpc/support/sync_windows.h +2 -0
  34. data/include/grpc/support/time.h +2 -0
  35. data/src/boringssl/err_data.c +444 -438
  36. data/src/core/ext/census/grpc_context.cc +2 -0
  37. data/src/core/ext/filters/client_channel/backup_poller.cc +13 -8
  38. data/src/core/ext/filters/client_channel/backup_poller.h +3 -2
  39. data/src/core/ext/filters/client_channel/channel_connectivity.cc +2 -0
  40. data/src/core/ext/filters/client_channel/client_channel.cc +1988 -433
  41. data/src/core/ext/filters/client_channel/client_channel.h +2 -0
  42. data/src/core/ext/filters/client_channel/client_channel_factory.cc +2 -0
  43. data/src/core/ext/filters/client_channel/client_channel_factory.h +2 -0
  44. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +2 -27
  45. data/src/core/ext/filters/client_channel/connector.cc +2 -0
  46. data/src/core/ext/filters/client_channel/connector.h +2 -0
  47. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +2 -0
  48. data/src/core/ext/filters/client_channel/http_proxy.cc +2 -0
  49. data/src/core/ext/filters/client_channel/lb_policy.cc +2 -0
  50. data/src/core/ext/filters/client_channel/lb_policy.h +2 -0
  51. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +2 -0
  52. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +2 -0
  53. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +96 -78
  54. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +9 -17
  55. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +70 -62
  56. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +2 -0
  57. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +2 -0
  58. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +2 -0
  59. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +2 -0
  60. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +4 -2
  61. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +4 -2
  62. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc +2 -0
  63. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +2 -0
  64. data/src/core/ext/filters/client_channel/lb_policy_factory.cc +3 -1
  65. data/src/core/ext/filters/client_channel/lb_policy_factory.h +2 -1
  66. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +2 -0
  67. data/src/core/ext/filters/client_channel/lb_policy_registry.h +2 -1
  68. data/src/core/ext/filters/client_channel/method_params.cc +178 -0
  69. data/src/core/ext/filters/client_channel/method_params.h +74 -0
  70. data/src/core/ext/filters/client_channel/parse_address.cc +17 -13
  71. data/src/core/ext/filters/client_channel/parse_address.h +2 -0
  72. data/src/core/ext/filters/client_channel/proxy_mapper.cc +2 -0
  73. data/src/core/ext/filters/client_channel/proxy_mapper.h +2 -0
  74. data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +2 -0
  75. data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +2 -0
  76. data/src/core/ext/filters/client_channel/resolver.cc +2 -0
  77. data/src/core/ext/filters/client_channel/resolver.h +6 -0
  78. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +24 -5
  79. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +2 -1
  80. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +1 -0
  81. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +55 -1
  82. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +8 -1
  83. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +1 -0
  84. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +30 -3
  85. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +7 -0
  86. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +2 -1
  87. data/src/core/ext/filters/client_channel/resolver_factory.h +2 -0
  88. data/src/core/ext/filters/client_channel/resolver_registry.cc +2 -0
  89. data/src/core/ext/filters/client_channel/resolver_registry.h +2 -0
  90. data/src/core/ext/filters/client_channel/retry_throttle.cc +102 -120
  91. data/src/core/ext/filters/client_channel/retry_throttle.h +52 -25
  92. data/src/core/ext/filters/client_channel/subchannel.cc +14 -4
  93. data/src/core/ext/filters/client_channel/subchannel.h +10 -1
  94. data/src/core/ext/filters/client_channel/subchannel_index.cc +2 -0
  95. data/src/core/ext/filters/client_channel/subchannel_index.h +2 -0
  96. data/src/core/ext/filters/client_channel/uri_parser.cc +2 -1
  97. data/src/core/ext/filters/client_channel/uri_parser.h +2 -1
  98. data/src/core/ext/filters/deadline/deadline_filter.cc +2 -1
  99. data/src/core/ext/filters/deadline/deadline_filter.h +2 -0
  100. data/src/core/ext/filters/http/client/http_client_filter.cc +27 -25
  101. data/src/core/ext/filters/http/client/http_client_filter.h +2 -0
  102. data/src/core/ext/filters/http/client_authority_filter.cc +156 -0
  103. data/src/core/ext/filters/http/client_authority_filter.h +34 -0
  104. data/src/core/ext/filters/http/http_filters_plugin.cc +2 -0
  105. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +21 -22
  106. data/src/core/ext/filters/http/message_compress/message_compress_filter.h +2 -0
  107. data/src/core/ext/filters/http/server/http_server_filter.cc +11 -8
  108. data/src/core/ext/filters/http/server/http_server_filter.h +2 -0
  109. data/src/core/ext/filters/load_reporting/server_load_reporting_filter.cc +2 -0
  110. data/src/core/ext/filters/load_reporting/server_load_reporting_filter.h +2 -0
  111. data/src/core/ext/filters/load_reporting/server_load_reporting_plugin.h +2 -0
  112. data/src/core/ext/filters/max_age/max_age_filter.cc +2 -0
  113. data/src/core/ext/filters/max_age/max_age_filter.h +2 -0
  114. data/src/core/ext/filters/message_size/message_size_filter.cc +52 -49
  115. data/src/core/ext/filters/message_size/message_size_filter.h +2 -0
  116. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +5 -1
  117. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h +2 -0
  118. data/src/core/ext/filters/workarounds/workaround_utils.cc +2 -0
  119. data/src/core/ext/filters/workarounds/workaround_utils.h +2 -0
  120. data/src/core/ext/transport/chttp2/alpn/alpn.cc +3 -1
  121. data/src/core/ext/transport/chttp2/alpn/alpn.h +2 -0
  122. data/src/core/ext/transport/chttp2/client/authority.cc +42 -0
  123. data/src/core/ext/transport/chttp2/client/authority.h +36 -0
  124. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +2 -0
  125. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +2 -0
  126. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +10 -3
  127. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +2 -2
  128. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +37 -25
  129. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +2 -0
  130. data/src/core/ext/transport/chttp2/server/chttp2_server.h +3 -1
  131. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +2 -1
  132. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +2 -1
  133. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +2 -0
  134. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +3 -1
  135. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -0
  136. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +2 -0
  137. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +2 -0
  138. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +2 -0
  139. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +152 -182
  140. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +2 -0
  141. data/src/core/ext/transport/chttp2/transport/flow_control.cc +2 -0
  142. data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -0
  143. data/src/core/ext/transport/chttp2/transport/frame.h +2 -1
  144. data/src/core/ext/transport/chttp2/transport/frame_data.cc +15 -19
  145. data/src/core/ext/transport/chttp2/transport/frame_data.h +7 -5
  146. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +2 -0
  147. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -2
  148. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -0
  149. data/src/core/ext/transport/chttp2/transport/frame_ping.h +2 -1
  150. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +2 -0
  151. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -1
  152. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +2 -0
  153. data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -2
  154. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +2 -0
  155. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -1
  156. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +2 -0
  157. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -1
  158. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -1
  159. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -2
  160. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +2 -0
  161. data/src/core/ext/transport/chttp2/transport/hpack_table.h +2 -1
  162. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +2 -0
  163. data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -0
  164. data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -0
  165. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +3 -2
  166. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +2 -0
  167. data/src/core/ext/transport/chttp2/transport/internal.h +60 -24
  168. data/src/core/ext/transport/chttp2/transport/parsing.cc +2 -4
  169. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +2 -0
  170. data/src/core/ext/transport/chttp2/transport/stream_map.cc +2 -0
  171. data/src/core/ext/transport/chttp2/transport/varint.cc +2 -0
  172. data/src/core/ext/transport/chttp2/transport/writing.cc +10 -6
  173. data/src/core/ext/transport/inproc/inproc_plugin.cc +2 -0
  174. data/src/core/ext/transport/inproc/inproc_transport.cc +20 -23
  175. data/src/core/ext/transport/inproc/inproc_transport.h +2 -0
  176. data/src/core/lib/avl/avl.cc +2 -0
  177. data/src/core/lib/avl/avl.h +2 -0
  178. data/src/core/lib/backoff/backoff.cc +2 -0
  179. data/src/core/lib/backoff/backoff.h +2 -0
  180. data/src/core/lib/channel/channel_args.h +2 -0
  181. data/src/core/lib/channel/channel_stack.cc +3 -1
  182. data/src/core/lib/channel/channel_stack.h +2 -0
  183. data/src/core/lib/channel/channel_stack_builder.cc +2 -0
  184. data/src/core/lib/channel/channel_stack_builder.h +2 -0
  185. data/src/core/lib/channel/channel_trace.cc +239 -0
  186. data/src/core/lib/channel/channel_trace.h +133 -0
  187. data/src/core/lib/channel/channel_trace_registry.cc +80 -0
  188. data/src/core/lib/channel/channel_trace_registry.h +43 -0
  189. data/src/core/lib/channel/connected_channel.cc +2 -0
  190. data/src/core/lib/channel/connected_channel.h +2 -0
  191. data/src/core/lib/channel/handshaker.cc +2 -0
  192. data/src/core/lib/channel/handshaker.h +2 -0
  193. data/src/core/lib/channel/handshaker_factory.cc +2 -0
  194. data/src/core/lib/channel/handshaker_factory.h +2 -1
  195. data/src/core/lib/channel/handshaker_registry.cc +2 -0
  196. data/src/core/lib/channel/handshaker_registry.h +2 -1
  197. data/src/core/lib/channel/status_util.cc +100 -0
  198. data/src/core/lib/channel/status_util.h +58 -0
  199. data/src/core/lib/compression/algorithm_metadata.h +2 -0
  200. data/src/core/lib/compression/compression.cc +2 -0
  201. data/src/core/lib/compression/compression_internal.cc +2 -0
  202. data/src/core/lib/compression/compression_internal.h +2 -0
  203. data/src/core/lib/compression/message_compress.cc +2 -0
  204. data/src/core/lib/compression/message_compress.h +2 -0
  205. data/src/core/lib/compression/stream_compression.cc +2 -0
  206. data/src/core/lib/compression/stream_compression.h +2 -0
  207. data/src/core/lib/compression/stream_compression_gzip.cc +2 -0
  208. data/src/core/lib/compression/stream_compression_gzip.h +2 -0
  209. data/src/core/lib/compression/stream_compression_identity.cc +2 -1
  210. data/src/core/lib/compression/stream_compression_identity.h +2 -0
  211. data/src/core/lib/debug/stats.cc +2 -0
  212. data/src/core/lib/debug/stats.h +2 -0
  213. data/src/core/lib/debug/stats_data.cc +3 -1
  214. data/src/core/lib/debug/stats_data.h +2 -0
  215. data/src/core/lib/debug/trace.cc +2 -0
  216. data/src/core/lib/debug/trace.h +2 -1
  217. data/src/core/lib/gpr/alloc.cc +2 -1
  218. data/src/core/lib/gpr/arena.cc +47 -0
  219. data/src/core/lib/gpr/arena.h +2 -0
  220. data/src/core/lib/gpr/atm.cc +2 -0
  221. data/src/core/lib/gpr/cpu_linux.cc +5 -1
  222. data/src/core/lib/gpr/cpu_posix.cc +1 -1
  223. data/src/core/lib/gpr/env.h +2 -0
  224. data/src/core/lib/gpr/fork.cc +2 -0
  225. data/src/core/lib/gpr/host_port.cc +2 -0
  226. data/src/core/lib/gpr/log.cc +2 -1
  227. data/src/core/lib/gpr/log_linux.cc +1 -0
  228. data/src/core/lib/gpr/mpscq.cc +2 -0
  229. data/src/core/lib/gpr/mpscq.h +2 -0
  230. data/src/core/lib/gpr/murmur_hash.cc +2 -0
  231. data/src/core/lib/gpr/spinlock.h +2 -0
  232. data/src/core/lib/gpr/string.cc +2 -1
  233. data/src/core/lib/gpr/string.h +2 -2
  234. data/src/core/lib/gpr/sync.cc +2 -0
  235. data/src/core/lib/gpr/time.cc +2 -0
  236. data/src/core/lib/gpr/time_posix.cc +1 -0
  237. data/src/core/lib/gpr/time_precise.cc +2 -0
  238. data/src/core/lib/gpr/time_precise.h +2 -0
  239. data/src/core/lib/gpr/tls_gcc.h +2 -0
  240. data/src/core/lib/gpr/tls_msvc.h +2 -0
  241. data/src/core/lib/gpr/tls_pthread.h +2 -0
  242. data/src/core/lib/gpr/tmpfile.h +2 -0
  243. data/src/core/lib/gprpp/atomic_with_atm.h +2 -0
  244. data/src/core/lib/gprpp/atomic_with_std.h +2 -0
  245. data/src/core/lib/gprpp/inlined_vector.h +2 -0
  246. data/src/core/lib/gprpp/manual_constructor.h +3 -1
  247. data/src/core/lib/gprpp/memory.h +5 -3
  248. data/src/core/lib/gprpp/orphanable.h +3 -0
  249. data/src/core/lib/gprpp/ref_counted.h +4 -0
  250. data/src/core/lib/gprpp/ref_counted_ptr.h +3 -0
  251. data/src/core/lib/gprpp/thd.h +135 -0
  252. data/src/core/lib/gprpp/thd_posix.cc +209 -0
  253. data/src/core/lib/gprpp/thd_windows.cc +162 -0
  254. data/src/core/lib/http/format_request.cc +2 -0
  255. data/src/core/lib/http/format_request.h +2 -0
  256. data/src/core/lib/http/httpcli.cc +2 -0
  257. data/src/core/lib/http/httpcli.h +2 -0
  258. data/src/core/lib/http/httpcli_security_connector.cc +16 -7
  259. data/src/core/lib/http/parser.cc +2 -0
  260. data/src/core/lib/http/parser.h +2 -1
  261. data/src/core/lib/iomgr/call_combiner.cc +2 -0
  262. data/src/core/lib/iomgr/call_combiner.h +2 -1
  263. data/src/core/lib/iomgr/combiner.cc +2 -0
  264. data/src/core/lib/iomgr/combiner.h +2 -0
  265. data/src/core/lib/iomgr/endpoint.cc +4 -0
  266. data/src/core/lib/iomgr/endpoint.h +2 -0
  267. data/src/core/lib/iomgr/endpoint_pair.h +2 -0
  268. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -0
  269. data/src/core/lib/iomgr/endpoint_pair_uv.cc +2 -0
  270. data/src/core/lib/iomgr/endpoint_pair_windows.cc +7 -4
  271. data/src/core/lib/iomgr/error.h +2 -0
  272. data/src/core/lib/iomgr/error_internal.h +2 -0
  273. data/src/core/lib/iomgr/ev_epoll1_linux.cc +2 -0
  274. data/src/core/lib/iomgr/ev_epoll1_linux.h +2 -0
  275. data/src/core/lib/iomgr/ev_epollex_linux.cc +4 -18
  276. data/src/core/lib/iomgr/ev_epollex_linux.h +2 -0
  277. data/src/core/lib/iomgr/ev_epollsig_linux.cc +2 -0
  278. data/src/core/lib/iomgr/ev_epollsig_linux.h +2 -0
  279. data/src/core/lib/iomgr/ev_poll_posix.cc +61 -31
  280. data/src/core/lib/iomgr/ev_poll_posix.h +2 -0
  281. data/src/core/lib/iomgr/ev_posix.cc +35 -19
  282. data/src/core/lib/iomgr/ev_posix.h +2 -0
  283. data/src/core/lib/iomgr/ev_windows.cc +2 -0
  284. data/src/core/lib/iomgr/exec_ctx.cc +3 -1
  285. data/src/core/lib/iomgr/exec_ctx.h +21 -9
  286. data/src/core/lib/iomgr/executor.cc +13 -11
  287. data/src/core/lib/iomgr/executor.h +2 -0
  288. data/src/core/lib/iomgr/fork_posix.cc +4 -2
  289. data/src/core/lib/iomgr/fork_windows.cc +2 -0
  290. data/src/core/lib/iomgr/gethostname_fallback.cc +2 -0
  291. data/src/core/lib/iomgr/gethostname_host_name_max.cc +2 -0
  292. data/src/core/lib/iomgr/gethostname_sysconf.cc +2 -0
  293. data/src/core/lib/iomgr/iocp_windows.cc +3 -1
  294. data/src/core/lib/iomgr/iocp_windows.h +3 -0
  295. data/src/core/lib/iomgr/iomgr.cc +2 -1
  296. data/src/core/lib/iomgr/iomgr.h +2 -0
  297. data/src/core/lib/iomgr/iomgr_custom.cc +63 -0
  298. data/src/core/lib/iomgr/iomgr_custom.h +47 -0
  299. data/src/core/lib/iomgr/iomgr_internal.cc +43 -0
  300. data/src/core/lib/iomgr/iomgr_internal.h +14 -0
  301. data/src/core/lib/iomgr/iomgr_posix.cc +30 -3
  302. data/src/core/lib/iomgr/iomgr_posix.h +2 -0
  303. data/src/core/lib/iomgr/iomgr_uv.cc +17 -20
  304. data/src/core/lib/iomgr/iomgr_windows.cc +29 -3
  305. data/src/core/lib/iomgr/is_epollexclusive_available.cc +2 -0
  306. data/src/core/lib/iomgr/is_epollexclusive_available.h +2 -0
  307. data/src/core/lib/iomgr/load_file.cc +2 -0
  308. data/src/core/lib/iomgr/load_file.h +2 -0
  309. data/src/core/lib/iomgr/lockfree_event.cc +2 -0
  310. data/src/core/lib/iomgr/lockfree_event.h +14 -1
  311. data/src/core/lib/iomgr/nameser.h +2 -0
  312. data/src/core/lib/iomgr/network_status_tracker.cc +3 -1
  313. data/src/core/lib/iomgr/network_status_tracker.h +2 -0
  314. data/src/core/lib/iomgr/polling_entity.cc +2 -0
  315. data/src/core/lib/iomgr/polling_entity.h +2 -0
  316. data/src/core/lib/iomgr/pollset.cc +56 -0
  317. data/src/core/lib/iomgr/pollset.h +19 -0
  318. data/src/core/lib/iomgr/pollset_custom.cc +106 -0
  319. data/src/core/lib/iomgr/{timer_generic.h → pollset_custom.h} +15 -17
  320. data/src/core/lib/iomgr/pollset_set.cc +55 -0
  321. data/src/core/lib/iomgr/pollset_set.h +13 -0
  322. data/src/core/lib/iomgr/pollset_set_custom.cc +48 -0
  323. data/src/core/lib/iomgr/{pollset_uv.h → pollset_set_custom.h} +6 -7
  324. data/src/core/lib/iomgr/pollset_set_windows.cc +17 -10
  325. data/src/core/lib/iomgr/pollset_set_windows.h +2 -0
  326. data/src/core/lib/iomgr/pollset_uv.cc +42 -105
  327. data/src/core/lib/iomgr/pollset_windows.cc +20 -12
  328. data/src/core/lib/iomgr/pollset_windows.h +2 -0
  329. data/src/core/lib/iomgr/port.h +10 -19
  330. data/src/core/lib/iomgr/resolve_address.cc +50 -0
  331. data/src/core/lib/iomgr/resolve_address.h +39 -10
  332. data/src/core/lib/iomgr/resolve_address_custom.cc +187 -0
  333. data/src/core/lib/iomgr/resolve_address_custom.h +43 -0
  334. data/src/core/lib/iomgr/resolve_address_posix.cc +10 -22
  335. data/src/core/lib/iomgr/resolve_address_windows.cc +10 -22
  336. data/src/core/lib/iomgr/resource_quota.cc +2 -0
  337. data/src/core/lib/iomgr/resource_quota.h +3 -5
  338. data/src/core/lib/iomgr/sockaddr.h +3 -11
  339. data/src/core/lib/iomgr/sockaddr_custom.h +54 -0
  340. data/src/core/lib/iomgr/sockaddr_posix.h +26 -0
  341. data/src/core/lib/iomgr/sockaddr_utils.cc +91 -71
  342. data/src/core/lib/iomgr/sockaddr_utils.h +4 -0
  343. data/src/core/lib/iomgr/sockaddr_windows.h +21 -0
  344. data/src/core/lib/iomgr/socket_factory_posix.cc +2 -0
  345. data/src/core/lib/iomgr/socket_factory_posix.h +2 -0
  346. data/src/core/lib/iomgr/socket_mutator.cc +2 -0
  347. data/src/core/lib/iomgr/socket_mutator.h +2 -0
  348. data/src/core/lib/iomgr/socket_utils.h +11 -0
  349. data/src/core/lib/iomgr/socket_utils_common_posix.cc +15 -6
  350. data/src/core/lib/iomgr/socket_utils_linux.cc +4 -4
  351. data/src/core/lib/iomgr/socket_utils_posix.cc +3 -2
  352. data/src/core/lib/iomgr/socket_utils_posix.h +2 -0
  353. data/src/core/lib/iomgr/socket_utils_uv.cc +13 -2
  354. data/src/core/lib/iomgr/socket_utils_windows.cc +10 -0
  355. data/src/core/lib/iomgr/socket_windows.cc +2 -0
  356. data/src/core/lib/iomgr/socket_windows.h +2 -1
  357. data/src/core/lib/iomgr/sys_epoll_wrapper.h +2 -0
  358. data/src/core/lib/iomgr/tcp_client.cc +36 -0
  359. data/src/core/lib/iomgr/tcp_client.h +13 -0
  360. data/src/core/lib/iomgr/tcp_client_custom.cc +151 -0
  361. data/src/core/lib/iomgr/tcp_client_posix.cc +11 -24
  362. data/src/core/lib/iomgr/tcp_client_posix.h +2 -0
  363. data/src/core/lib/iomgr/tcp_client_windows.cc +10 -23
  364. data/src/core/lib/iomgr/tcp_custom.cc +365 -0
  365. data/src/core/lib/iomgr/tcp_custom.h +81 -0
  366. data/src/core/lib/iomgr/tcp_posix.cc +3 -1
  367. data/src/core/lib/iomgr/tcp_posix.h +2 -0
  368. data/src/core/lib/iomgr/tcp_server.cc +73 -0
  369. data/src/core/lib/iomgr/tcp_server.h +24 -0
  370. data/src/core/lib/iomgr/tcp_server_custom.cc +472 -0
  371. data/src/core/lib/iomgr/tcp_server_posix.cc +41 -23
  372. data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -0
  373. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -7
  374. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +8 -6
  375. data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +2 -0
  376. data/src/core/lib/iomgr/tcp_server_windows.cc +43 -21
  377. data/src/core/lib/iomgr/tcp_uv.cc +308 -314
  378. data/src/core/lib/iomgr/tcp_windows.cc +3 -1
  379. data/src/core/lib/iomgr/tcp_windows.h +2 -0
  380. data/src/core/lib/iomgr/time_averaged_stats.cc +2 -0
  381. data/src/core/lib/iomgr/timer.cc +45 -0
  382. data/src/core/lib/iomgr/timer.h +36 -15
  383. data/src/core/lib/iomgr/timer_custom.cc +93 -0
  384. data/src/core/lib/iomgr/timer_custom.h +43 -0
  385. data/src/core/lib/iomgr/timer_generic.cc +12 -10
  386. data/src/core/lib/iomgr/timer_heap.cc +2 -4
  387. data/src/core/lib/iomgr/timer_heap.h +2 -0
  388. data/src/core/lib/iomgr/timer_manager.cc +12 -20
  389. data/src/core/lib/iomgr/timer_manager.h +2 -0
  390. data/src/core/lib/iomgr/timer_uv.cc +15 -49
  391. data/src/core/lib/iomgr/udp_server.cc +271 -230
  392. data/src/core/lib/iomgr/udp_server.h +44 -20
  393. data/src/core/lib/iomgr/unix_sockets_posix.cc +10 -7
  394. data/src/core/lib/iomgr/unix_sockets_posix.h +2 -0
  395. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +2 -0
  396. data/src/core/lib/iomgr/wakeup_fd_cv.cc +3 -1
  397. data/src/core/lib/iomgr/wakeup_fd_cv.h +2 -0
  398. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -0
  399. data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +2 -0
  400. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +2 -0
  401. data/src/core/lib/iomgr/wakeup_fd_pipe.h +2 -0
  402. data/src/core/lib/iomgr/wakeup_fd_posix.cc +2 -0
  403. data/src/core/lib/iomgr/wakeup_fd_posix.h +2 -0
  404. data/src/core/lib/json/json.cc +38 -0
  405. data/src/core/lib/json/json.h +22 -1
  406. data/src/core/lib/json/json_reader.cc +2 -2
  407. data/src/core/lib/json/json_reader.h +1 -0
  408. data/src/core/lib/json/json_string.cc +2 -0
  409. data/src/core/lib/json/json_writer.cc +2 -2
  410. data/src/core/lib/json/json_writer.h +2 -0
  411. data/src/core/lib/profiling/basic_timers.cc +11 -9
  412. data/src/core/lib/profiling/timers.h +6 -3
  413. data/src/core/lib/security/context/security_context.cc +2 -0
  414. data/src/core/lib/security/context/security_context.h +2 -0
  415. data/src/core/lib/security/credentials/alts/alts_credentials.cc +119 -0
  416. data/src/core/lib/security/credentials/alts/alts_credentials.h +102 -0
  417. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +72 -0
  418. data/src/core/lib/security/credentials/alts/check_gcp_environment.h +57 -0
  419. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +67 -0
  420. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +33 -0
  421. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +114 -0
  422. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +126 -0
  423. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +46 -0
  424. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +112 -0
  425. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +58 -0
  426. data/src/core/lib/security/credentials/composite/composite_credentials.cc +2 -0
  427. data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -0
  428. data/src/core/lib/security/credentials/credentials.cc +2 -0
  429. data/src/core/lib/security/credentials/credentials.h +2 -0
  430. data/src/core/lib/security/credentials/credentials_metadata.cc +2 -0
  431. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -3
  432. data/src/core/lib/security/credentials/fake/fake_credentials.h +5 -0
  433. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +2 -0
  434. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -0
  435. data/src/core/lib/security/credentials/iam/iam_credentials.cc +2 -0
  436. data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -0
  437. data/src/core/lib/security/credentials/jwt/json_token.cc +2 -0
  438. data/src/core/lib/security/credentials/jwt/json_token.h +2 -0
  439. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -0
  440. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +2 -0
  441. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -0
  442. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +2 -0
  443. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +2 -0
  444. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +2 -0
  445. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
  446. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +11 -2
  447. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +2 -0
  448. data/src/core/lib/security/security_connector/alts_security_connector.cc +287 -0
  449. data/src/core/lib/security/security_connector/alts_security_connector.h +69 -0
  450. data/src/core/lib/security/security_connector/security_connector.cc +174 -74
  451. data/src/core/lib/security/security_connector/security_connector.h +41 -7
  452. data/src/core/lib/security/transport/auth_filters.h +2 -0
  453. data/src/core/lib/security/transport/client_auth_filter.cc +14 -28
  454. data/src/core/lib/security/transport/secure_endpoint.cc +2 -0
  455. data/src/core/lib/security/transport/secure_endpoint.h +2 -0
  456. data/src/core/lib/security/transport/security_handshaker.cc +2 -0
  457. data/src/core/lib/security/transport/security_handshaker.h +2 -1
  458. data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
  459. data/src/core/lib/security/transport/target_authority_table.cc +75 -0
  460. data/src/core/lib/security/transport/{lb_targets_info.h → target_authority_table.h} +16 -8
  461. data/src/core/lib/security/transport/tsi_error.cc +2 -0
  462. data/src/core/lib/security/transport/tsi_error.h +2 -0
  463. data/src/core/lib/security/util/json_util.cc +2 -0
  464. data/src/core/lib/security/util/json_util.h +2 -0
  465. data/src/core/lib/slice/b64.cc +2 -0
  466. data/src/core/lib/slice/b64.h +2 -0
  467. data/src/core/lib/slice/percent_encoding.cc +2 -0
  468. data/src/core/lib/slice/percent_encoding.h +2 -0
  469. data/src/core/lib/slice/slice.cc +2 -0
  470. data/src/core/lib/slice/slice_buffer.cc +3 -1
  471. data/src/core/lib/slice/slice_hash_table.h +178 -45
  472. data/src/core/lib/slice/slice_intern.cc +2 -0
  473. data/src/core/lib/slice/slice_internal.h +2 -2
  474. data/src/core/lib/slice/slice_string_helpers.cc +2 -0
  475. data/src/core/lib/slice/slice_string_helpers.h +2 -1
  476. data/src/core/lib/slice/slice_weak_hash_table.h +105 -0
  477. data/src/core/lib/surface/api_trace.cc +3 -1
  478. data/src/core/lib/surface/api_trace.h +2 -0
  479. data/src/core/lib/surface/byte_buffer.cc +3 -0
  480. data/src/core/lib/surface/byte_buffer_reader.cc +3 -0
  481. data/src/core/lib/surface/call.cc +46 -80
  482. data/src/core/lib/surface/call.h +2 -0
  483. data/src/core/lib/surface/call_details.cc +2 -0
  484. data/src/core/lib/surface/call_log_batch.cc +2 -0
  485. data/src/core/lib/surface/call_test_only.h +2 -0
  486. data/src/core/lib/surface/channel.cc +72 -41
  487. data/src/core/lib/surface/channel.h +2 -0
  488. data/src/core/lib/surface/channel_init.cc +2 -0
  489. data/src/core/lib/surface/channel_init.h +2 -0
  490. data/src/core/lib/surface/channel_ping.cc +2 -0
  491. data/src/core/lib/surface/channel_stack_type.cc +3 -2
  492. data/src/core/lib/surface/channel_stack_type.h +2 -0
  493. data/src/core/lib/surface/completion_queue.h +2 -0
  494. data/src/core/lib/surface/completion_queue_factory.cc +3 -1
  495. data/src/core/lib/surface/completion_queue_factory.h +2 -0
  496. data/src/core/lib/surface/event_string.cc +2 -0
  497. data/src/core/lib/surface/event_string.h +2 -0
  498. data/src/core/lib/surface/init.cc +5 -2
  499. data/src/core/lib/surface/init_secure.cc +5 -2
  500. data/src/core/lib/surface/lame_client.cc +7 -5
  501. data/src/core/lib/surface/lame_client.h +2 -0
  502. data/src/core/lib/surface/metadata_array.cc +2 -0
  503. data/src/core/lib/surface/server.cc +2 -0
  504. data/src/core/lib/surface/server.h +2 -0
  505. data/src/core/lib/surface/validate_metadata.cc +2 -1
  506. data/src/core/lib/surface/validate_metadata.h +2 -0
  507. data/src/core/lib/surface/version.cc +4 -2
  508. data/src/core/lib/transport/bdp_estimator.cc +2 -0
  509. data/src/core/lib/transport/byte_stream.cc +94 -116
  510. data/src/core/lib/transport/byte_stream.h +111 -78
  511. data/src/core/lib/transport/connectivity_state.cc +2 -0
  512. data/src/core/lib/transport/connectivity_state.h +3 -1
  513. data/src/core/lib/transport/error_utils.cc +2 -0
  514. data/src/core/lib/transport/error_utils.h +2 -0
  515. data/src/core/lib/transport/metadata.cc +2 -0
  516. data/src/core/lib/transport/metadata.h +3 -1
  517. data/src/core/lib/transport/metadata_batch.cc +26 -0
  518. data/src/core/lib/transport/metadata_batch.h +12 -1
  519. data/src/core/lib/transport/pid_controller.cc +2 -0
  520. data/src/core/lib/transport/pid_controller.h +2 -0
  521. data/src/core/lib/transport/service_config.cc +21 -175
  522. data/src/core/lib/transport/service_config.h +223 -35
  523. data/src/core/lib/transport/static_metadata.cc +310 -294
  524. data/src/core/lib/transport/static_metadata.h +96 -82
  525. data/src/core/lib/transport/status_conversion.cc +2 -0
  526. data/src/core/lib/transport/status_conversion.h +3 -0
  527. data/src/core/lib/transport/status_metadata.cc +54 -0
  528. data/src/core/lib/{iomgr/timer_uv.h → transport/status_metadata.h} +10 -12
  529. data/src/core/lib/transport/timeout_encoding.cc +2 -1
  530. data/src/core/lib/transport/timeout_encoding.h +2 -0
  531. data/src/core/lib/transport/transport.cc +3 -1
  532. data/src/core/lib/transport/transport.h +33 -7
  533. data/src/core/lib/transport/transport_impl.h +2 -0
  534. data/src/core/lib/transport/transport_op_string.cc +10 -3
  535. data/src/core/plugin_registry/grpc_plugin_registry.cc +10 -4
  536. data/src/core/tsi/alts/crypt/aes_gcm.cc +687 -0
  537. data/src/core/tsi/alts/crypt/gsec.cc +189 -0
  538. data/src/core/tsi/alts/crypt/gsec.h +454 -0
  539. data/src/core/tsi/alts/frame_protector/alts_counter.cc +118 -0
  540. data/src/core/tsi/alts/frame_protector/alts_counter.h +98 -0
  541. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +66 -0
  542. data/src/core/tsi/alts/frame_protector/alts_crypter.h +255 -0
  543. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +407 -0
  544. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +55 -0
  545. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +114 -0
  546. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +114 -0
  547. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +105 -0
  548. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +103 -0
  549. data/src/core/tsi/alts/frame_protector/frame_handler.cc +218 -0
  550. data/src/core/tsi/alts/frame_protector/frame_handler.h +236 -0
  551. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +316 -0
  552. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +137 -0
  553. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc +520 -0
  554. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.h +323 -0
  555. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc +143 -0
  556. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h +149 -0
  557. data/src/core/tsi/alts/handshaker/alts_tsi_event.cc +73 -0
  558. data/src/core/tsi/alts/handshaker/alts_tsi_event.h +93 -0
  559. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +483 -0
  560. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +83 -0
  561. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +52 -0
  562. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +58 -0
  563. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +52 -0
  564. data/src/core/tsi/alts/handshaker/altscontext.pb.c +48 -0
  565. data/src/core/tsi/alts/handshaker/altscontext.pb.h +64 -0
  566. data/src/core/tsi/alts/handshaker/handshaker.pb.c +123 -0
  567. data/src/core/tsi/alts/handshaker/handshaker.pb.h +255 -0
  568. data/src/core/tsi/alts/handshaker/transport_security_common.pb.c +50 -0
  569. data/src/core/tsi/alts/handshaker/transport_security_common.pb.h +78 -0
  570. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +196 -0
  571. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +163 -0
  572. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +180 -0
  573. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +52 -0
  574. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +144 -0
  575. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +49 -0
  576. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +91 -0
  577. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +174 -0
  578. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +100 -0
  579. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +476 -0
  580. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +199 -0
  581. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +296 -0
  582. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +52 -0
  583. data/src/core/tsi/alts_transport_security.cc +3 -1
  584. data/src/core/tsi/alts_transport_security.h +4 -2
  585. data/src/core/tsi/fake_transport_security.cc +2 -1
  586. data/src/core/tsi/fake_transport_security.h +2 -0
  587. data/src/core/tsi/ssl/session_cache/ssl_session.h +73 -0
  588. data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +58 -0
  589. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +211 -0
  590. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +93 -0
  591. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +76 -0
  592. data/src/core/tsi/ssl_transport_security.cc +266 -62
  593. data/src/core/tsi/ssl_transport_security.h +128 -6
  594. data/src/core/tsi/ssl_types.h +2 -0
  595. data/src/core/tsi/transport_security.cc +2 -0
  596. data/src/core/tsi/transport_security.h +2 -0
  597. data/src/core/tsi/transport_security_adapter.cc +2 -0
  598. data/src/core/tsi/transport_security_adapter.h +2 -0
  599. data/src/core/tsi/transport_security_grpc.cc +2 -0
  600. data/src/core/tsi/transport_security_grpc.h +2 -0
  601. data/src/core/tsi/transport_security_interface.h +2 -0
  602. data/src/ruby/ext/grpc/extconf.rb +1 -2
  603. data/src/ruby/ext/grpc/rb_call.c +1 -13
  604. data/src/ruby/ext/grpc/rb_channel.c +6 -6
  605. data/src/ruby/ext/grpc/rb_compression_options.c +1 -1
  606. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +10 -0
  607. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +15 -0
  608. data/src/ruby/lib/grpc/core/time_consts.rb +1 -1
  609. data/src/ruby/lib/grpc/generic/bidi_call.rb +19 -8
  610. data/src/ruby/lib/grpc/generic/client_stub.rb +6 -10
  611. data/src/ruby/lib/grpc/generic/interceptors.rb +1 -1
  612. data/src/ruby/lib/grpc/generic/rpc_server.rb +2 -2
  613. data/src/ruby/lib/grpc/version.rb +1 -1
  614. data/src/ruby/spec/generic/client_stub_spec.rb +133 -0
  615. data/src/ruby/spec/pb/package_with_underscore/checker_spec.rb +54 -0
  616. data/src/ruby/spec/pb/package_with_underscore/data.proto +23 -0
  617. data/src/ruby/spec/pb/package_with_underscore/service.proto +23 -0
  618. data/third_party/address_sorting/address_sorting.c +369 -0
  619. data/third_party/address_sorting/address_sorting_internal.h +70 -0
  620. data/third_party/address_sorting/address_sorting_posix.c +97 -0
  621. data/third_party/address_sorting/address_sorting_windows.c +55 -0
  622. data/third_party/address_sorting/include/address_sorting/address_sorting.h +110 -0
  623. data/third_party/boringssl/crypto/asn1/a_enum.c +20 -9
  624. data/third_party/boringssl/crypto/asn1/a_i2d_fp.c +3 -0
  625. data/third_party/boringssl/crypto/asn1/a_int.c +19 -8
  626. data/third_party/boringssl/crypto/asn1/a_object.c +0 -128
  627. data/third_party/boringssl/crypto/asn1/asn1_locl.h +3 -0
  628. data/third_party/boringssl/crypto/asn1/tasn_fre.c +2 -4
  629. data/third_party/boringssl/crypto/asn1/tasn_new.c +3 -2
  630. data/third_party/boringssl/crypto/bn_extra/bn_asn1.c +0 -16
  631. data/third_party/boringssl/crypto/buf/buf.c +14 -0
  632. data/third_party/boringssl/crypto/bytestring/cbb.c +93 -0
  633. data/third_party/boringssl/crypto/conf/conf.c +2 -2
  634. data/third_party/boringssl/crypto/cpu-intel.c +17 -17
  635. data/third_party/boringssl/crypto/crypto.c +16 -4
  636. data/third_party/boringssl/crypto/curve25519/spake25519.c +11 -11
  637. data/third_party/boringssl/crypto/curve25519/x25519-x86_64.c +1 -1
  638. data/third_party/boringssl/crypto/dsa/dsa.c +9 -21
  639. data/third_party/boringssl/crypto/ec_extra/ec_asn1.c +2 -2
  640. data/third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c +1 -8
  641. data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +2 -23
  642. data/third_party/boringssl/crypto/ex_data.c +0 -1
  643. data/third_party/boringssl/crypto/fipsmodule/bn/add.c +7 -11
  644. data/third_party/boringssl/crypto/fipsmodule/bn/asm/x86_64-gcc.c +19 -16
  645. data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +15 -0
  646. data/third_party/boringssl/crypto/fipsmodule/bn/div.c +53 -46
  647. data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +242 -85
  648. data/third_party/boringssl/crypto/fipsmodule/bn/generic.c +42 -47
  649. data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +176 -34
  650. data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +118 -65
  651. data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +94 -61
  652. data/third_party/boringssl/crypto/fipsmodule/bn/random.c +79 -63
  653. data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +26 -28
  654. data/third_party/boringssl/crypto/fipsmodule/cipher/cipher.c +2 -0
  655. data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +250 -149
  656. data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +0 -27
  657. data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +54 -20
  658. data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +3 -3
  659. data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +7 -41
  660. data/third_party/boringssl/crypto/fipsmodule/ec/p256-64.c +6 -40
  661. data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +17 -122
  662. data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +3 -64
  663. data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +27 -9
  664. data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +203 -205
  665. data/third_party/boringssl/crypto/fipsmodule/modes/cbc.c +14 -15
  666. data/third_party/boringssl/crypto/fipsmodule/modes/cfb.c +12 -8
  667. data/third_party/boringssl/crypto/fipsmodule/modes/ctr.c +4 -3
  668. data/third_party/boringssl/crypto/fipsmodule/modes/gcm.c +25 -36
  669. data/third_party/boringssl/crypto/fipsmodule/modes/internal.h +10 -0
  670. data/third_party/boringssl/crypto/fipsmodule/rsa/internal.h +0 -4
  671. data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +2 -0
  672. data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +9 -19
  673. data/third_party/boringssl/crypto/lhash/lhash.c +19 -0
  674. data/third_party/boringssl/crypto/obj/obj.c +29 -69
  675. data/third_party/boringssl/crypto/pem/pem_lib.c +2 -2
  676. data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +4 -55
  677. data/third_party/boringssl/crypto/rsa_extra/rsa_asn1.c +3 -22
  678. data/third_party/boringssl/crypto/x509/by_dir.c +1 -3
  679. data/third_party/boringssl/crypto/x509/by_file.c +0 -1
  680. data/third_party/boringssl/crypto/x509/x509_lu.c +0 -1
  681. data/third_party/boringssl/crypto/x509/x509_obj.c +1 -3
  682. data/third_party/boringssl/crypto/x509/x509_txt.c +0 -6
  683. data/third_party/boringssl/crypto/x509/x509_vfy.c +0 -1
  684. data/third_party/boringssl/crypto/x509/x509_vpm.c +0 -1
  685. data/third_party/boringssl/crypto/x509/x_algor.c +2 -2
  686. data/third_party/boringssl/crypto/x509v3/v3_alt.c +3 -4
  687. data/third_party/boringssl/crypto/x509v3/v3_genn.c +1 -0
  688. data/third_party/boringssl/crypto/x509v3/v3_info.c +1 -2
  689. data/third_party/boringssl/crypto/x509v3/v3_lib.c +15 -7
  690. data/third_party/boringssl/crypto/x509v3/v3_utl.c +41 -2
  691. data/third_party/boringssl/include/openssl/asn1.h +0 -1
  692. data/third_party/boringssl/include/openssl/base.h +1 -1
  693. data/third_party/boringssl/include/openssl/bio.h +5 -2
  694. data/third_party/boringssl/include/openssl/bn.h +2 -17
  695. data/third_party/boringssl/include/openssl/buf.h +4 -0
  696. data/third_party/boringssl/include/openssl/bytestring.h +11 -0
  697. data/third_party/boringssl/include/openssl/chacha.h +5 -1
  698. data/third_party/boringssl/include/openssl/cipher.h +10 -0
  699. data/third_party/boringssl/include/openssl/conf.h +4 -8
  700. data/third_party/boringssl/include/openssl/dsa.h +2 -18
  701. data/third_party/boringssl/include/openssl/ec.h +5 -5
  702. data/third_party/boringssl/include/openssl/ecdsa.h +10 -28
  703. data/third_party/boringssl/include/openssl/evp.h +0 -4
  704. data/third_party/boringssl/include/openssl/lhash.h +1 -18
  705. data/third_party/boringssl/include/openssl/obj.h +1 -0
  706. data/third_party/boringssl/include/openssl/rsa.h +3 -4
  707. data/third_party/boringssl/include/openssl/ssl.h +35 -54
  708. data/third_party/boringssl/include/openssl/ssl3.h +2 -0
  709. data/third_party/boringssl/include/openssl/stack.h +1 -1
  710. data/third_party/boringssl/include/openssl/tls1.h +1 -16
  711. data/third_party/boringssl/include/openssl/x509.h +3 -2
  712. data/third_party/boringssl/include/openssl/x509_vfy.h +0 -2
  713. data/third_party/boringssl/include/openssl/x509v3.h +1 -0
  714. data/third_party/boringssl/ssl/custom_extensions.cc +1 -1
  715. data/third_party/boringssl/ssl/d1_both.cc +120 -129
  716. data/third_party/boringssl/ssl/d1_lib.cc +23 -21
  717. data/third_party/boringssl/ssl/d1_pkt.cc +39 -143
  718. data/third_party/boringssl/ssl/dtls_method.cc +16 -23
  719. data/third_party/boringssl/ssl/dtls_record.cc +11 -4
  720. data/third_party/boringssl/ssl/handshake.cc +109 -40
  721. data/third_party/boringssl/ssl/handshake_client.cc +104 -96
  722. data/third_party/boringssl/ssl/handshake_server.cc +62 -72
  723. data/third_party/boringssl/ssl/internal.h +397 -318
  724. data/third_party/boringssl/ssl/s3_both.cc +173 -191
  725. data/third_party/boringssl/ssl/s3_lib.cc +26 -34
  726. data/third_party/boringssl/ssl/s3_pkt.cc +105 -247
  727. data/third_party/boringssl/ssl/ssl_asn1.cc +22 -22
  728. data/third_party/boringssl/ssl/ssl_buffer.cc +98 -108
  729. data/third_party/boringssl/ssl/ssl_cert.cc +12 -1
  730. data/third_party/boringssl/ssl/ssl_cipher.cc +23 -28
  731. data/third_party/boringssl/ssl/ssl_key_share.cc +11 -6
  732. data/third_party/boringssl/ssl/ssl_lib.cc +190 -113
  733. data/third_party/boringssl/ssl/ssl_privkey.cc +76 -106
  734. data/third_party/boringssl/ssl/ssl_session.cc +3 -3
  735. data/third_party/boringssl/ssl/ssl_stat.cc +3 -3
  736. data/third_party/boringssl/ssl/ssl_transcript.cc +38 -22
  737. data/third_party/boringssl/ssl/ssl_versions.cc +64 -31
  738. data/third_party/boringssl/ssl/t1_enc.cc +137 -154
  739. data/third_party/boringssl/ssl/t1_lib.cc +463 -478
  740. data/third_party/boringssl/ssl/tls13_both.cc +57 -58
  741. data/third_party/boringssl/ssl/tls13_client.cc +256 -121
  742. data/third_party/boringssl/ssl/tls13_enc.cc +187 -72
  743. data/third_party/boringssl/ssl/tls13_server.cc +187 -86
  744. data/third_party/boringssl/ssl/tls_method.cc +20 -30
  745. data/third_party/boringssl/ssl/tls_record.cc +77 -40
  746. data/third_party/boringssl/third_party/fiat/curve25519.c +5062 -0
  747. data/third_party/boringssl/{crypto/curve25519 → third_party/fiat}/internal.h +40 -27
  748. data/third_party/nanopb/pb.h +1 -1
  749. metadata +147 -45
  750. data/src/core/lib/gpr/thd.cc +0 -49
  751. data/src/core/lib/gpr/thd.h +0 -71
  752. data/src/core/lib/gpr/thd_posix.cc +0 -154
  753. data/src/core/lib/gpr/thd_windows.cc +0 -107
  754. data/src/core/lib/iomgr/iomgr_uv.h +0 -37
  755. data/src/core/lib/iomgr/pollset_set_uv.cc +0 -43
  756. data/src/core/lib/iomgr/resolve_address_uv.cc +0 -284
  757. data/src/core/lib/iomgr/tcp_client_uv.cc +0 -175
  758. data/src/core/lib/iomgr/tcp_server_uv.cc +0 -471
  759. data/src/core/lib/iomgr/tcp_uv.h +0 -51
  760. data/src/core/lib/security/transport/lb_targets_info.cc +0 -59
  761. data/src/core/lib/slice/slice_hash_table.cc +0 -145
  762. data/third_party/boringssl/crypto/curve25519/curve25519.c +0 -4938
@@ -24,6 +24,8 @@
24
24
  * an explanation of what's going on.
25
25
  */
26
26
 
27
+ #include <grpc/support/port_platform.h>
28
+
27
29
  #include "src/core/lib/transport/static_metadata.h"
28
30
 
29
31
  #include "src/core/lib/slice/slice_internal.h"
@@ -48,61 +50,64 @@ static uint8_t g_bytes[] = {
48
50
  114, 110, 97, 108, 45, 115, 116, 114, 101, 97, 109, 45, 101, 110, 99,
49
51
  111, 100, 105, 110, 103, 45, 114, 101, 113, 117, 101, 115, 116, 117, 115,
50
52
  101, 114, 45, 97, 103, 101, 110, 116, 104, 111, 115, 116, 108, 98, 45,
51
- 116, 111, 107, 101, 110, 103, 114, 112, 99, 45, 116, 105, 109, 101, 111,
52
- 117, 116, 103, 114, 112, 99, 46, 119, 97, 105, 116, 95, 102, 111, 114,
53
- 95, 114, 101, 97, 100, 121, 103, 114, 112, 99, 46, 116, 105, 109, 101,
54
- 111, 117, 116, 103, 114, 112, 99, 46, 109, 97, 120, 95, 114, 101, 113,
55
- 117, 101, 115, 116, 95, 109, 101, 115, 115, 97, 103, 101, 95, 98, 121,
56
- 116, 101, 115, 103, 114, 112, 99, 46, 109, 97, 120, 95, 114, 101, 115,
57
- 112, 111, 110, 115, 101, 95, 109, 101, 115, 115, 97, 103, 101, 95, 98,
58
- 121, 116, 101, 115, 47, 103, 114, 112, 99, 46, 108, 98, 46, 118, 49,
59
- 46, 76, 111, 97, 100, 66, 97, 108, 97, 110, 99, 101, 114, 47, 66,
60
- 97, 108, 97, 110, 99, 101, 76, 111, 97, 100, 100, 101, 102, 108, 97,
61
- 116, 101, 103, 122, 105, 112, 115, 116, 114, 101, 97, 109, 47, 103, 122,
62
- 105, 112, 48, 49, 50, 105, 100, 101, 110, 116, 105, 116, 121, 116, 114,
63
- 97, 105, 108, 101, 114, 115, 97, 112, 112, 108, 105, 99, 97, 116, 105,
64
- 111, 110, 47, 103, 114, 112, 99, 80, 79, 83, 84, 50, 48, 48, 52,
65
- 48, 52, 104, 116, 116, 112, 104, 116, 116, 112, 115, 103, 114, 112, 99,
66
- 71, 69, 84, 80, 85, 84, 47, 47, 105, 110, 100, 101, 120, 46, 104,
67
- 116, 109, 108, 50, 48, 52, 50, 48, 54, 51, 48, 52, 52, 48, 48,
68
- 53, 48, 48, 97, 99, 99, 101, 112, 116, 45, 99, 104, 97, 114, 115,
69
- 101, 116, 103, 122, 105, 112, 44, 32, 100, 101, 102, 108, 97, 116, 101,
70
- 97, 99, 99, 101, 112, 116, 45, 108, 97, 110, 103, 117, 97, 103, 101,
71
- 97, 99, 99, 101, 112, 116, 45, 114, 97, 110, 103, 101, 115, 97, 99,
72
- 99, 101, 112, 116, 97, 99, 99, 101, 115, 115, 45, 99, 111, 110, 116,
73
- 114, 111, 108, 45, 97, 108, 108, 111, 119, 45, 111, 114, 105, 103, 105,
74
- 110, 97, 103, 101, 97, 108, 108, 111, 119, 97, 117, 116, 104, 111, 114,
75
- 105, 122, 97, 116, 105, 111, 110, 99, 97, 99, 104, 101, 45, 99, 111,
76
- 110, 116, 114, 111, 108, 99, 111, 110, 116, 101, 110, 116, 45, 100, 105,
77
- 115, 112, 111, 115, 105, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110,
78
- 116, 45, 108, 97, 110, 103, 117, 97, 103, 101, 99, 111, 110, 116, 101,
79
- 110, 116, 45, 108, 101, 110, 103, 116, 104, 99, 111, 110, 116, 101, 110,
80
- 116, 45, 108, 111, 99, 97, 116, 105, 111, 110, 99, 111, 110, 116, 101,
81
- 110, 116, 45, 114, 97, 110, 103, 101, 99, 111, 111, 107, 105, 101, 100,
82
- 97, 116, 101, 101, 116, 97, 103, 101, 120, 112, 101, 99, 116, 101, 120,
83
- 112, 105, 114, 101, 115, 102, 114, 111, 109, 105, 102, 45, 109, 97, 116,
84
- 99, 104, 105, 102, 45, 109, 111, 100, 105, 102, 105, 101, 100, 45, 115,
85
- 105, 110, 99, 101, 105, 102, 45, 110, 111, 110, 101, 45, 109, 97, 116,
86
- 99, 104, 105, 102, 45, 114, 97, 110, 103, 101, 105, 102, 45, 117, 110,
87
- 109, 111, 100, 105, 102, 105, 101, 100, 45, 115, 105, 110, 99, 101, 108,
88
- 97, 115, 116, 45, 109, 111, 100, 105, 102, 105, 101, 100, 108, 98, 45,
89
- 99, 111, 115, 116, 45, 98, 105, 110, 108, 105, 110, 107, 108, 111, 99,
90
- 97, 116, 105, 111, 110, 109, 97, 120, 45, 102, 111, 114, 119, 97, 114,
91
- 100, 115, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 101, 110, 116,
92
- 105, 99, 97, 116, 101, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104,
93
- 111, 114, 105, 122, 97, 116, 105, 111, 110, 114, 97, 110, 103, 101, 114,
94
- 101, 102, 101, 114, 101, 114, 114, 101, 102, 114, 101, 115, 104, 114, 101,
95
- 116, 114, 121, 45, 97, 102, 116, 101, 114, 115, 101, 114, 118, 101, 114,
96
- 115, 101, 116, 45, 99, 111, 111, 107, 105, 101, 115, 116, 114, 105, 99,
97
- 116, 45, 116, 114, 97, 110, 115, 112, 111, 114, 116, 45, 115, 101, 99,
98
- 117, 114, 105, 116, 121, 116, 114, 97, 110, 115, 102, 101, 114, 45, 101,
99
- 110, 99, 111, 100, 105, 110, 103, 118, 97, 114, 121, 118, 105, 97, 119,
100
- 119, 119, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97, 116, 101,
101
- 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102, 108, 97, 116,
102
- 101, 105, 100, 101, 110, 116, 105, 116, 121, 44, 103, 122, 105, 112, 100,
103
- 101, 102, 108, 97, 116, 101, 44, 103, 122, 105, 112, 105, 100, 101, 110,
104
- 116, 105, 116, 121, 44, 100, 101, 102, 108, 97, 116, 101, 44, 103, 122,
105
- 105, 112};
53
+ 116, 111, 107, 101, 110, 103, 114, 112, 99, 45, 112, 114, 101, 118, 105,
54
+ 111, 117, 115, 45, 114, 112, 99, 45, 97, 116, 116, 101, 109, 112, 116,
55
+ 115, 103, 114, 112, 99, 45, 114, 101, 116, 114, 121, 45, 112, 117, 115,
56
+ 104, 98, 97, 99, 107, 45, 109, 115, 103, 114, 112, 99, 45, 116, 105,
57
+ 109, 101, 111, 117, 116, 49, 50, 51, 52, 103, 114, 112, 99, 46, 119,
58
+ 97, 105, 116, 95, 102, 111, 114, 95, 114, 101, 97, 100, 121, 103, 114,
59
+ 112, 99, 46, 116, 105, 109, 101, 111, 117, 116, 103, 114, 112, 99, 46,
60
+ 109, 97, 120, 95, 114, 101, 113, 117, 101, 115, 116, 95, 109, 101, 115,
61
+ 115, 97, 103, 101, 95, 98, 121, 116, 101, 115, 103, 114, 112, 99, 46,
62
+ 109, 97, 120, 95, 114, 101, 115, 112, 111, 110, 115, 101, 95, 109, 101,
63
+ 115, 115, 97, 103, 101, 95, 98, 121, 116, 101, 115, 47, 103, 114, 112,
64
+ 99, 46, 108, 98, 46, 118, 49, 46, 76, 111, 97, 100, 66, 97, 108,
65
+ 97, 110, 99, 101, 114, 47, 66, 97, 108, 97, 110, 99, 101, 76, 111,
66
+ 97, 100, 100, 101, 102, 108, 97, 116, 101, 103, 122, 105, 112, 115, 116,
67
+ 114, 101, 97, 109, 47, 103, 122, 105, 112, 48, 105, 100, 101, 110, 116,
68
+ 105, 116, 121, 116, 114, 97, 105, 108, 101, 114, 115, 97, 112, 112, 108,
69
+ 105, 99, 97, 116, 105, 111, 110, 47, 103, 114, 112, 99, 80, 79, 83,
70
+ 84, 50, 48, 48, 52, 48, 52, 104, 116, 116, 112, 104, 116, 116, 112,
71
+ 115, 103, 114, 112, 99, 71, 69, 84, 80, 85, 84, 47, 47, 105, 110,
72
+ 100, 101, 120, 46, 104, 116, 109, 108, 50, 48, 52, 50, 48, 54, 51,
73
+ 48, 52, 52, 48, 48, 53, 48, 48, 97, 99, 99, 101, 112, 116, 45,
74
+ 99, 104, 97, 114, 115, 101, 116, 103, 122, 105, 112, 44, 32, 100, 101,
75
+ 102, 108, 97, 116, 101, 97, 99, 99, 101, 112, 116, 45, 108, 97, 110,
76
+ 103, 117, 97, 103, 101, 97, 99, 99, 101, 112, 116, 45, 114, 97, 110,
77
+ 103, 101, 115, 97, 99, 99, 101, 112, 116, 97, 99, 99, 101, 115, 115,
78
+ 45, 99, 111, 110, 116, 114, 111, 108, 45, 97, 108, 108, 111, 119, 45,
79
+ 111, 114, 105, 103, 105, 110, 97, 103, 101, 97, 108, 108, 111, 119, 97,
80
+ 117, 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 99, 97, 99,
81
+ 104, 101, 45, 99, 111, 110, 116, 114, 111, 108, 99, 111, 110, 116, 101,
82
+ 110, 116, 45, 100, 105, 115, 112, 111, 115, 105, 116, 105, 111, 110, 99,
83
+ 111, 110, 116, 101, 110, 116, 45, 108, 97, 110, 103, 117, 97, 103, 101,
84
+ 99, 111, 110, 116, 101, 110, 116, 45, 108, 101, 110, 103, 116, 104, 99,
85
+ 111, 110, 116, 101, 110, 116, 45, 108, 111, 99, 97, 116, 105, 111, 110,
86
+ 99, 111, 110, 116, 101, 110, 116, 45, 114, 97, 110, 103, 101, 99, 111,
87
+ 111, 107, 105, 101, 100, 97, 116, 101, 101, 116, 97, 103, 101, 120, 112,
88
+ 101, 99, 116, 101, 120, 112, 105, 114, 101, 115, 102, 114, 111, 109, 105,
89
+ 102, 45, 109, 97, 116, 99, 104, 105, 102, 45, 109, 111, 100, 105, 102,
90
+ 105, 101, 100, 45, 115, 105, 110, 99, 101, 105, 102, 45, 110, 111, 110,
91
+ 101, 45, 109, 97, 116, 99, 104, 105, 102, 45, 114, 97, 110, 103, 101,
92
+ 105, 102, 45, 117, 110, 109, 111, 100, 105, 102, 105, 101, 100, 45, 115,
93
+ 105, 110, 99, 101, 108, 97, 115, 116, 45, 109, 111, 100, 105, 102, 105,
94
+ 101, 100, 108, 98, 45, 99, 111, 115, 116, 45, 98, 105, 110, 108, 105,
95
+ 110, 107, 108, 111, 99, 97, 116, 105, 111, 110, 109, 97, 120, 45, 102,
96
+ 111, 114, 119, 97, 114, 100, 115, 112, 114, 111, 120, 121, 45, 97, 117,
97
+ 116, 104, 101, 110, 116, 105, 99, 97, 116, 101, 112, 114, 111, 120, 121,
98
+ 45, 97, 117, 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 114,
99
+ 97, 110, 103, 101, 114, 101, 102, 101, 114, 101, 114, 114, 101, 102, 114,
100
+ 101, 115, 104, 114, 101, 116, 114, 121, 45, 97, 102, 116, 101, 114, 115,
101
+ 101, 114, 118, 101, 114, 115, 101, 116, 45, 99, 111, 111, 107, 105, 101,
102
+ 115, 116, 114, 105, 99, 116, 45, 116, 114, 97, 110, 115, 112, 111, 114,
103
+ 116, 45, 115, 101, 99, 117, 114, 105, 116, 121, 116, 114, 97, 110, 115,
104
+ 102, 101, 114, 45, 101, 110, 99, 111, 100, 105, 110, 103, 118, 97, 114,
105
+ 121, 118, 105, 97, 119, 119, 119, 45, 97, 117, 116, 104, 101, 110, 116,
106
+ 105, 99, 97, 116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100,
107
+ 101, 102, 108, 97, 116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44,
108
+ 103, 122, 105, 112, 100, 101, 102, 108, 97, 116, 101, 44, 103, 122, 105,
109
+ 112, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102, 108, 97,
110
+ 116, 101, 44, 103, 122, 105, 112};
106
111
 
107
112
  static void static_ref(void* unused) {}
108
113
  static void static_unref(void* unused) {}
@@ -215,6 +220,10 @@ grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
215
220
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
216
221
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
217
222
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
223
+ {&grpc_static_metadata_vtable, &static_sub_refcnt},
224
+ {&grpc_static_metadata_vtable, &static_sub_refcnt},
225
+ {&grpc_static_metadata_vtable, &static_sub_refcnt},
226
+ {&grpc_static_metadata_vtable, &static_sub_refcnt},
218
227
  };
219
228
 
220
229
  const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
@@ -240,85 +249,89 @@ const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
240
249
  {&grpc_static_metadata_refcounts[19], {{g_bytes + 268, 10}}},
241
250
  {&grpc_static_metadata_refcounts[20], {{g_bytes + 278, 4}}},
242
251
  {&grpc_static_metadata_refcounts[21], {{g_bytes + 282, 8}}},
243
- {&grpc_static_metadata_refcounts[22], {{g_bytes + 290, 12}}},
244
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}},
245
- {&grpc_static_metadata_refcounts[24], {{g_bytes + 302, 19}}},
246
- {&grpc_static_metadata_refcounts[25], {{g_bytes + 321, 12}}},
247
- {&grpc_static_metadata_refcounts[26], {{g_bytes + 333, 30}}},
248
- {&grpc_static_metadata_refcounts[27], {{g_bytes + 363, 31}}},
249
- {&grpc_static_metadata_refcounts[28], {{g_bytes + 394, 36}}},
250
- {&grpc_static_metadata_refcounts[29], {{g_bytes + 430, 7}}},
251
- {&grpc_static_metadata_refcounts[30], {{g_bytes + 437, 4}}},
252
- {&grpc_static_metadata_refcounts[31], {{g_bytes + 441, 11}}},
253
- {&grpc_static_metadata_refcounts[32], {{g_bytes + 452, 1}}},
254
- {&grpc_static_metadata_refcounts[33], {{g_bytes + 453, 1}}},
255
- {&grpc_static_metadata_refcounts[34], {{g_bytes + 454, 1}}},
256
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 455, 8}}},
257
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 463, 8}}},
258
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 471, 16}}},
259
- {&grpc_static_metadata_refcounts[38], {{g_bytes + 487, 4}}},
260
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 491, 3}}},
261
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 494, 3}}},
262
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 497, 4}}},
263
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 501, 5}}},
264
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 506, 4}}},
265
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 510, 3}}},
266
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 513, 3}}},
267
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 516, 1}}},
268
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 517, 11}}},
269
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 528, 3}}},
270
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 531, 3}}},
271
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 534, 3}}},
272
- {&grpc_static_metadata_refcounts[51], {{g_bytes + 537, 3}}},
273
- {&grpc_static_metadata_refcounts[52], {{g_bytes + 540, 3}}},
274
- {&grpc_static_metadata_refcounts[53], {{g_bytes + 543, 14}}},
275
- {&grpc_static_metadata_refcounts[54], {{g_bytes + 557, 13}}},
276
- {&grpc_static_metadata_refcounts[55], {{g_bytes + 570, 15}}},
277
- {&grpc_static_metadata_refcounts[56], {{g_bytes + 585, 13}}},
278
- {&grpc_static_metadata_refcounts[57], {{g_bytes + 598, 6}}},
279
- {&grpc_static_metadata_refcounts[58], {{g_bytes + 604, 27}}},
280
- {&grpc_static_metadata_refcounts[59], {{g_bytes + 631, 3}}},
281
- {&grpc_static_metadata_refcounts[60], {{g_bytes + 634, 5}}},
282
- {&grpc_static_metadata_refcounts[61], {{g_bytes + 639, 13}}},
283
- {&grpc_static_metadata_refcounts[62], {{g_bytes + 652, 13}}},
284
- {&grpc_static_metadata_refcounts[63], {{g_bytes + 665, 19}}},
285
- {&grpc_static_metadata_refcounts[64], {{g_bytes + 684, 16}}},
286
- {&grpc_static_metadata_refcounts[65], {{g_bytes + 700, 14}}},
287
- {&grpc_static_metadata_refcounts[66], {{g_bytes + 714, 16}}},
288
- {&grpc_static_metadata_refcounts[67], {{g_bytes + 730, 13}}},
289
- {&grpc_static_metadata_refcounts[68], {{g_bytes + 743, 6}}},
290
- {&grpc_static_metadata_refcounts[69], {{g_bytes + 749, 4}}},
291
- {&grpc_static_metadata_refcounts[70], {{g_bytes + 753, 4}}},
292
- {&grpc_static_metadata_refcounts[71], {{g_bytes + 757, 6}}},
293
- {&grpc_static_metadata_refcounts[72], {{g_bytes + 763, 7}}},
294
- {&grpc_static_metadata_refcounts[73], {{g_bytes + 770, 4}}},
295
- {&grpc_static_metadata_refcounts[74], {{g_bytes + 774, 8}}},
296
- {&grpc_static_metadata_refcounts[75], {{g_bytes + 782, 17}}},
297
- {&grpc_static_metadata_refcounts[76], {{g_bytes + 799, 13}}},
298
- {&grpc_static_metadata_refcounts[77], {{g_bytes + 812, 8}}},
299
- {&grpc_static_metadata_refcounts[78], {{g_bytes + 820, 19}}},
300
- {&grpc_static_metadata_refcounts[79], {{g_bytes + 839, 13}}},
301
- {&grpc_static_metadata_refcounts[80], {{g_bytes + 852, 11}}},
302
- {&grpc_static_metadata_refcounts[81], {{g_bytes + 863, 4}}},
303
- {&grpc_static_metadata_refcounts[82], {{g_bytes + 867, 8}}},
304
- {&grpc_static_metadata_refcounts[83], {{g_bytes + 875, 12}}},
305
- {&grpc_static_metadata_refcounts[84], {{g_bytes + 887, 18}}},
306
- {&grpc_static_metadata_refcounts[85], {{g_bytes + 905, 19}}},
307
- {&grpc_static_metadata_refcounts[86], {{g_bytes + 924, 5}}},
308
- {&grpc_static_metadata_refcounts[87], {{g_bytes + 929, 7}}},
309
- {&grpc_static_metadata_refcounts[88], {{g_bytes + 936, 7}}},
310
- {&grpc_static_metadata_refcounts[89], {{g_bytes + 943, 11}}},
311
- {&grpc_static_metadata_refcounts[90], {{g_bytes + 954, 6}}},
312
- {&grpc_static_metadata_refcounts[91], {{g_bytes + 960, 10}}},
313
- {&grpc_static_metadata_refcounts[92], {{g_bytes + 970, 25}}},
314
- {&grpc_static_metadata_refcounts[93], {{g_bytes + 995, 17}}},
315
- {&grpc_static_metadata_refcounts[94], {{g_bytes + 1012, 4}}},
316
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1016, 3}}},
317
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1019, 16}}},
318
- {&grpc_static_metadata_refcounts[97], {{g_bytes + 1035, 16}}},
319
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1051, 13}}},
320
- {&grpc_static_metadata_refcounts[99], {{g_bytes + 1064, 12}}},
321
- {&grpc_static_metadata_refcounts[100], {{g_bytes + 1076, 21}}},
252
+ {&grpc_static_metadata_refcounts[22], {{g_bytes + 290, 26}}},
253
+ {&grpc_static_metadata_refcounts[23], {{g_bytes + 316, 22}}},
254
+ {&grpc_static_metadata_refcounts[24], {{g_bytes + 338, 12}}},
255
+ {&grpc_static_metadata_refcounts[25], {{g_bytes + 350, 1}}},
256
+ {&grpc_static_metadata_refcounts[26], {{g_bytes + 351, 1}}},
257
+ {&grpc_static_metadata_refcounts[27], {{g_bytes + 352, 1}}},
258
+ {&grpc_static_metadata_refcounts[28], {{g_bytes + 353, 1}}},
259
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}},
260
+ {&grpc_static_metadata_refcounts[30], {{g_bytes + 354, 19}}},
261
+ {&grpc_static_metadata_refcounts[31], {{g_bytes + 373, 12}}},
262
+ {&grpc_static_metadata_refcounts[32], {{g_bytes + 385, 30}}},
263
+ {&grpc_static_metadata_refcounts[33], {{g_bytes + 415, 31}}},
264
+ {&grpc_static_metadata_refcounts[34], {{g_bytes + 446, 36}}},
265
+ {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}},
266
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}},
267
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 493, 11}}},
268
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 504, 1}}},
269
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}},
270
+ {&grpc_static_metadata_refcounts[40], {{g_bytes + 513, 8}}},
271
+ {&grpc_static_metadata_refcounts[41], {{g_bytes + 521, 16}}},
272
+ {&grpc_static_metadata_refcounts[42], {{g_bytes + 537, 4}}},
273
+ {&grpc_static_metadata_refcounts[43], {{g_bytes + 541, 3}}},
274
+ {&grpc_static_metadata_refcounts[44], {{g_bytes + 544, 3}}},
275
+ {&grpc_static_metadata_refcounts[45], {{g_bytes + 547, 4}}},
276
+ {&grpc_static_metadata_refcounts[46], {{g_bytes + 551, 5}}},
277
+ {&grpc_static_metadata_refcounts[47], {{g_bytes + 556, 4}}},
278
+ {&grpc_static_metadata_refcounts[48], {{g_bytes + 560, 3}}},
279
+ {&grpc_static_metadata_refcounts[49], {{g_bytes + 563, 3}}},
280
+ {&grpc_static_metadata_refcounts[50], {{g_bytes + 566, 1}}},
281
+ {&grpc_static_metadata_refcounts[51], {{g_bytes + 567, 11}}},
282
+ {&grpc_static_metadata_refcounts[52], {{g_bytes + 578, 3}}},
283
+ {&grpc_static_metadata_refcounts[53], {{g_bytes + 581, 3}}},
284
+ {&grpc_static_metadata_refcounts[54], {{g_bytes + 584, 3}}},
285
+ {&grpc_static_metadata_refcounts[55], {{g_bytes + 587, 3}}},
286
+ {&grpc_static_metadata_refcounts[56], {{g_bytes + 590, 3}}},
287
+ {&grpc_static_metadata_refcounts[57], {{g_bytes + 593, 14}}},
288
+ {&grpc_static_metadata_refcounts[58], {{g_bytes + 607, 13}}},
289
+ {&grpc_static_metadata_refcounts[59], {{g_bytes + 620, 15}}},
290
+ {&grpc_static_metadata_refcounts[60], {{g_bytes + 635, 13}}},
291
+ {&grpc_static_metadata_refcounts[61], {{g_bytes + 648, 6}}},
292
+ {&grpc_static_metadata_refcounts[62], {{g_bytes + 654, 27}}},
293
+ {&grpc_static_metadata_refcounts[63], {{g_bytes + 681, 3}}},
294
+ {&grpc_static_metadata_refcounts[64], {{g_bytes + 684, 5}}},
295
+ {&grpc_static_metadata_refcounts[65], {{g_bytes + 689, 13}}},
296
+ {&grpc_static_metadata_refcounts[66], {{g_bytes + 702, 13}}},
297
+ {&grpc_static_metadata_refcounts[67], {{g_bytes + 715, 19}}},
298
+ {&grpc_static_metadata_refcounts[68], {{g_bytes + 734, 16}}},
299
+ {&grpc_static_metadata_refcounts[69], {{g_bytes + 750, 14}}},
300
+ {&grpc_static_metadata_refcounts[70], {{g_bytes + 764, 16}}},
301
+ {&grpc_static_metadata_refcounts[71], {{g_bytes + 780, 13}}},
302
+ {&grpc_static_metadata_refcounts[72], {{g_bytes + 793, 6}}},
303
+ {&grpc_static_metadata_refcounts[73], {{g_bytes + 799, 4}}},
304
+ {&grpc_static_metadata_refcounts[74], {{g_bytes + 803, 4}}},
305
+ {&grpc_static_metadata_refcounts[75], {{g_bytes + 807, 6}}},
306
+ {&grpc_static_metadata_refcounts[76], {{g_bytes + 813, 7}}},
307
+ {&grpc_static_metadata_refcounts[77], {{g_bytes + 820, 4}}},
308
+ {&grpc_static_metadata_refcounts[78], {{g_bytes + 824, 8}}},
309
+ {&grpc_static_metadata_refcounts[79], {{g_bytes + 832, 17}}},
310
+ {&grpc_static_metadata_refcounts[80], {{g_bytes + 849, 13}}},
311
+ {&grpc_static_metadata_refcounts[81], {{g_bytes + 862, 8}}},
312
+ {&grpc_static_metadata_refcounts[82], {{g_bytes + 870, 19}}},
313
+ {&grpc_static_metadata_refcounts[83], {{g_bytes + 889, 13}}},
314
+ {&grpc_static_metadata_refcounts[84], {{g_bytes + 902, 11}}},
315
+ {&grpc_static_metadata_refcounts[85], {{g_bytes + 913, 4}}},
316
+ {&grpc_static_metadata_refcounts[86], {{g_bytes + 917, 8}}},
317
+ {&grpc_static_metadata_refcounts[87], {{g_bytes + 925, 12}}},
318
+ {&grpc_static_metadata_refcounts[88], {{g_bytes + 937, 18}}},
319
+ {&grpc_static_metadata_refcounts[89], {{g_bytes + 955, 19}}},
320
+ {&grpc_static_metadata_refcounts[90], {{g_bytes + 974, 5}}},
321
+ {&grpc_static_metadata_refcounts[91], {{g_bytes + 979, 7}}},
322
+ {&grpc_static_metadata_refcounts[92], {{g_bytes + 986, 7}}},
323
+ {&grpc_static_metadata_refcounts[93], {{g_bytes + 993, 11}}},
324
+ {&grpc_static_metadata_refcounts[94], {{g_bytes + 1004, 6}}},
325
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1010, 10}}},
326
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1020, 25}}},
327
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1045, 17}}},
328
+ {&grpc_static_metadata_refcounts[98], {{g_bytes + 1062, 4}}},
329
+ {&grpc_static_metadata_refcounts[99], {{g_bytes + 1066, 3}}},
330
+ {&grpc_static_metadata_refcounts[100], {{g_bytes + 1069, 16}}},
331
+ {&grpc_static_metadata_refcounts[101], {{g_bytes + 1085, 16}}},
332
+ {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}},
333
+ {&grpc_static_metadata_refcounts[103], {{g_bytes + 1114, 12}}},
334
+ {&grpc_static_metadata_refcounts[104], {{g_bytes + 1126, 21}}},
322
335
  };
323
336
 
324
337
  uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
@@ -328,50 +341,51 @@ uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
328
341
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};
329
342
 
330
343
  static const int8_t elems_r[] = {
331
- 13, 2, 1, 0, 15, 4, 0, 21, 0, 23, -3, 0, 0, 0, 10, 19, -4,
332
- 0, 0, 1, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
333
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
334
- 0, 0, -52, 0, -55, -36, -57, -58, -58, -58, 0, 40, 39, 38, 37, 36, 35,
335
- 34, 33, 32, 31, 30, 29, 28, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19,
336
- 18, 17, 16, 15, 18, 17, 16, 15, 14, 13, 12, 11, 11, 0};
344
+ 16, 11, -1, 0, 15, 2, -78, 24, 0, 18, -5, 0, 0, 0, 17, 14, -8, 0,
345
+ 0, 27, 8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
346
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
347
+ 0, 0, 0, -64, 0, -44, -43, -70, 0, 34, 33, 33, 32, 31, 30, 29, 28, 27,
348
+ 27, 26, 25, 24, 23, 22, 21, 20, 20, 19, 19, 18, 17, 16, 15, 14, 13, 12,
349
+ 11, 14, 13, 12, 11, 10, 9, 9, 8, 7, 6, 5, 0};
337
350
  static uint32_t elems_phash(uint32_t i) {
338
- i -= 46;
339
- uint32_t x = i % 99;
340
- uint32_t y = i / 99;
351
+ i -= 50;
352
+ uint32_t x = i % 103;
353
+ uint32_t y = i / 103;
341
354
  uint32_t h = x;
342
355
  if (y < GPR_ARRAY_SIZE(elems_r)) {
343
- uint32_t delta = static_cast<uint32_t>(elems_r[y]);
356
+ uint32_t delta = (uint32_t)elems_r[y];
344
357
  h += delta;
345
358
  }
346
359
  return h;
347
360
  }
348
361
 
349
362
  static const uint16_t elem_keys[] = {
350
- 1039, 1040, 145, 146, 541, 1639, 1045, 250, 251, 252, 253, 254,
351
- 1646, 46, 47, 1437, 1942, 1651, 445, 446, 447, 739, 740, 741,
352
- 938, 939, 1538, 2043, 2144, 1451, 944, 5376, 5578, 1545, 5780, 5881,
353
- 1670, 5982, 1550, 6083, 6184, 6285, 6386, 6487, 6588, 6689, 6790, 6891,
354
- 6992, 7093, 7194, 7295, 7396, 5679, 7497, 7598, 7699, 7800, 7901, 8002,
355
- 8103, 8204, 8305, 8406, 8507, 8608, 8709, 8810, 1107, 1108, 1109, 1110,
356
- 8911, 9012, 9113, 9214, 9315, 9416, 9517, 9618, 1714, 9719, 0, 326,
357
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
358
- 0, 0, 241, 242, 0, 0, 0, 0, 0, 0, 139, 0,
359
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
360
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
361
- 0, 0, 0, 0, 0, 0};
363
+ 1085, 1086, 565, 1709, 1089, 262, 263, 264, 265, 266, 1716,
364
+ 153, 154, 1719, 760, 761, 50, 51, 465, 466, 467, 980,
365
+ 981, 1604, 1499, 984, 773, 2129, 2234, 6014, 1611, 6434, 1738,
366
+ 1614, 6539, 6644, 1511, 6749, 6854, 6959, 7064, 7169, 7274, 7379,
367
+ 2024, 7484, 7589, 7694, 7799, 7904, 8009, 8114, 8219, 6224, 8324,
368
+ 8429, 6329, 8534, 8639, 8744, 8849, 8954, 9059, 9164, 9269, 9374,
369
+ 1151, 1152, 1153, 1154, 9479, 9584, 9689, 9794, 9899, 10004, 1782,
370
+ 10109, 10214, 10319, 10424, 10529, 0, 0, 0, 0, 0, 344,
371
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
372
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
373
+ 0, 253, 254, 147, 0, 0, 0, 0, 0, 0, 0,
374
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
375
+ 0, 0, 0, 0};
362
376
  static const uint8_t elem_idxs[] = {
363
- 77, 79, 15, 16, 6, 25, 76, 19, 20, 21, 22, 23, 84, 17,
364
- 18, 43, 72, 83, 11, 12, 13, 0, 1, 2, 5, 4, 38, 50,
365
- 57, 7, 3, 24, 27, 37, 29, 30, 26, 31, 36, 32, 33, 34,
366
- 35, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 28, 51, 52,
367
- 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 78, 80,
368
- 81, 82, 66, 67, 68, 69, 70, 71, 73, 74, 85, 75, 255, 14,
369
- 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
370
- 9, 10, 255, 255, 255, 255, 255, 255, 8};
377
+ 77, 79, 6, 25, 76, 19, 20, 21, 22, 23, 84, 15, 16, 83, 1,
378
+ 2, 17, 18, 11, 12, 13, 5, 4, 38, 43, 3, 0, 50, 57, 24,
379
+ 37, 29, 26, 36, 30, 31, 7, 32, 33, 34, 35, 39, 40, 41, 72,
380
+ 42, 44, 45, 46, 47, 48, 49, 51, 27, 52, 53, 28, 54, 55, 56,
381
+ 58, 59, 60, 61, 62, 63, 78, 80, 81, 82, 64, 65, 66, 67, 68,
382
+ 69, 85, 70, 71, 73, 74, 75, 255, 255, 255, 255, 255, 14, 255, 255,
383
+ 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
384
+ 255, 255, 255, 255, 255, 255, 9, 10, 8};
371
385
 
372
386
  grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
373
387
  if (a == -1 || b == -1) return GRPC_MDNULL;
374
- uint32_t k = static_cast<uint32_t>(a * 101 + b);
388
+ uint32_t k = (uint32_t)(a * 105 + b);
375
389
  uint32_t h = elems_phash(k);
376
390
  return h < GPR_ARRAY_SIZE(elem_keys) && elem_keys[h] == k &&
377
391
  elem_idxs[h] != 255
@@ -382,177 +396,177 @@ grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
382
396
 
383
397
  grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
384
398
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
385
- {&grpc_static_metadata_refcounts[32], {{g_bytes + 452, 1}}}},
399
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 504, 1}}}},
386
400
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
387
- {&grpc_static_metadata_refcounts[33], {{g_bytes + 453, 1}}}},
401
+ {&grpc_static_metadata_refcounts[25], {{g_bytes + 350, 1}}}},
388
402
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
389
- {&grpc_static_metadata_refcounts[34], {{g_bytes + 454, 1}}}},
403
+ {&grpc_static_metadata_refcounts[26], {{g_bytes + 351, 1}}}},
390
404
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
391
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 455, 8}}}},
405
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
392
406
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
393
- {&grpc_static_metadata_refcounts[30], {{g_bytes + 437, 4}}}},
407
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
394
408
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
395
- {&grpc_static_metadata_refcounts[29], {{g_bytes + 430, 7}}}},
409
+ {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}}},
396
410
  {{&grpc_static_metadata_refcounts[5], {{g_bytes + 36, 2}}},
397
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 463, 8}}}},
411
+ {&grpc_static_metadata_refcounts[40], {{g_bytes + 513, 8}}}},
398
412
  {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
399
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 471, 16}}}},
413
+ {&grpc_static_metadata_refcounts[41], {{g_bytes + 521, 16}}}},
400
414
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
401
- {&grpc_static_metadata_refcounts[38], {{g_bytes + 487, 4}}}},
415
+ {&grpc_static_metadata_refcounts[42], {{g_bytes + 537, 4}}}},
402
416
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
403
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 491, 3}}}},
417
+ {&grpc_static_metadata_refcounts[43], {{g_bytes + 541, 3}}}},
404
418
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
405
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 494, 3}}}},
419
+ {&grpc_static_metadata_refcounts[44], {{g_bytes + 544, 3}}}},
406
420
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
407
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 497, 4}}}},
421
+ {&grpc_static_metadata_refcounts[45], {{g_bytes + 547, 4}}}},
408
422
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
409
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 501, 5}}}},
423
+ {&grpc_static_metadata_refcounts[46], {{g_bytes + 551, 5}}}},
410
424
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
411
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 506, 4}}}},
425
+ {&grpc_static_metadata_refcounts[47], {{g_bytes + 556, 4}}}},
412
426
  {{&grpc_static_metadata_refcounts[3], {{g_bytes + 19, 10}}},
413
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
427
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
414
428
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
415
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 510, 3}}}},
429
+ {&grpc_static_metadata_refcounts[48], {{g_bytes + 560, 3}}}},
416
430
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
417
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 513, 3}}}},
431
+ {&grpc_static_metadata_refcounts[49], {{g_bytes + 563, 3}}}},
418
432
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
419
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 516, 1}}}},
433
+ {&grpc_static_metadata_refcounts[50], {{g_bytes + 566, 1}}}},
420
434
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
421
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 517, 11}}}},
435
+ {&grpc_static_metadata_refcounts[51], {{g_bytes + 567, 11}}}},
422
436
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
423
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 528, 3}}}},
437
+ {&grpc_static_metadata_refcounts[52], {{g_bytes + 578, 3}}}},
424
438
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
425
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 531, 3}}}},
439
+ {&grpc_static_metadata_refcounts[53], {{g_bytes + 581, 3}}}},
426
440
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
427
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 534, 3}}}},
441
+ {&grpc_static_metadata_refcounts[54], {{g_bytes + 584, 3}}}},
428
442
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
429
- {&grpc_static_metadata_refcounts[51], {{g_bytes + 537, 3}}}},
443
+ {&grpc_static_metadata_refcounts[55], {{g_bytes + 587, 3}}}},
430
444
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
431
- {&grpc_static_metadata_refcounts[52], {{g_bytes + 540, 3}}}},
432
- {{&grpc_static_metadata_refcounts[53], {{g_bytes + 543, 14}}},
433
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
445
+ {&grpc_static_metadata_refcounts[56], {{g_bytes + 590, 3}}}},
446
+ {{&grpc_static_metadata_refcounts[57], {{g_bytes + 593, 14}}},
447
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
434
448
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
435
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
449
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
436
450
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
437
- {&grpc_static_metadata_refcounts[54], {{g_bytes + 557, 13}}}},
438
- {{&grpc_static_metadata_refcounts[55], {{g_bytes + 570, 15}}},
439
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
440
- {{&grpc_static_metadata_refcounts[56], {{g_bytes + 585, 13}}},
441
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
442
- {{&grpc_static_metadata_refcounts[57], {{g_bytes + 598, 6}}},
443
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
444
- {{&grpc_static_metadata_refcounts[58], {{g_bytes + 604, 27}}},
445
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
446
- {{&grpc_static_metadata_refcounts[59], {{g_bytes + 631, 3}}},
447
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
448
- {{&grpc_static_metadata_refcounts[60], {{g_bytes + 634, 5}}},
449
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
450
- {{&grpc_static_metadata_refcounts[61], {{g_bytes + 639, 13}}},
451
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
452
- {{&grpc_static_metadata_refcounts[62], {{g_bytes + 652, 13}}},
453
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
454
- {{&grpc_static_metadata_refcounts[63], {{g_bytes + 665, 19}}},
455
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
451
+ {&grpc_static_metadata_refcounts[58], {{g_bytes + 607, 13}}}},
452
+ {{&grpc_static_metadata_refcounts[59], {{g_bytes + 620, 15}}},
453
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
454
+ {{&grpc_static_metadata_refcounts[60], {{g_bytes + 635, 13}}},
455
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
456
+ {{&grpc_static_metadata_refcounts[61], {{g_bytes + 648, 6}}},
457
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
458
+ {{&grpc_static_metadata_refcounts[62], {{g_bytes + 654, 27}}},
459
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
460
+ {{&grpc_static_metadata_refcounts[63], {{g_bytes + 681, 3}}},
461
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
462
+ {{&grpc_static_metadata_refcounts[64], {{g_bytes + 684, 5}}},
463
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
464
+ {{&grpc_static_metadata_refcounts[65], {{g_bytes + 689, 13}}},
465
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
466
+ {{&grpc_static_metadata_refcounts[66], {{g_bytes + 702, 13}}},
467
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
468
+ {{&grpc_static_metadata_refcounts[67], {{g_bytes + 715, 19}}},
469
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
456
470
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
457
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 455, 8}}}},
471
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
458
472
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
459
- {&grpc_static_metadata_refcounts[30], {{g_bytes + 437, 4}}}},
473
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
460
474
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
461
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
462
- {{&grpc_static_metadata_refcounts[64], {{g_bytes + 684, 16}}},
463
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
464
- {{&grpc_static_metadata_refcounts[65], {{g_bytes + 700, 14}}},
465
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
466
- {{&grpc_static_metadata_refcounts[66], {{g_bytes + 714, 16}}},
467
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
468
- {{&grpc_static_metadata_refcounts[67], {{g_bytes + 730, 13}}},
469
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
475
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
476
+ {{&grpc_static_metadata_refcounts[68], {{g_bytes + 734, 16}}},
477
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
478
+ {{&grpc_static_metadata_refcounts[69], {{g_bytes + 750, 14}}},
479
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
480
+ {{&grpc_static_metadata_refcounts[70], {{g_bytes + 764, 16}}},
481
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
482
+ {{&grpc_static_metadata_refcounts[71], {{g_bytes + 780, 13}}},
483
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
470
484
  {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
471
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
472
- {{&grpc_static_metadata_refcounts[68], {{g_bytes + 743, 6}}},
473
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
474
- {{&grpc_static_metadata_refcounts[69], {{g_bytes + 749, 4}}},
475
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
476
- {{&grpc_static_metadata_refcounts[70], {{g_bytes + 753, 4}}},
477
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
478
- {{&grpc_static_metadata_refcounts[71], {{g_bytes + 757, 6}}},
479
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
480
- {{&grpc_static_metadata_refcounts[72], {{g_bytes + 763, 7}}},
481
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
482
- {{&grpc_static_metadata_refcounts[73], {{g_bytes + 770, 4}}},
483
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
485
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
486
+ {{&grpc_static_metadata_refcounts[72], {{g_bytes + 793, 6}}},
487
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
488
+ {{&grpc_static_metadata_refcounts[73], {{g_bytes + 799, 4}}},
489
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
490
+ {{&grpc_static_metadata_refcounts[74], {{g_bytes + 803, 4}}},
491
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
492
+ {{&grpc_static_metadata_refcounts[75], {{g_bytes + 807, 6}}},
493
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
494
+ {{&grpc_static_metadata_refcounts[76], {{g_bytes + 813, 7}}},
495
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
496
+ {{&grpc_static_metadata_refcounts[77], {{g_bytes + 820, 4}}},
497
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
484
498
  {{&grpc_static_metadata_refcounts[20], {{g_bytes + 278, 4}}},
485
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
486
- {{&grpc_static_metadata_refcounts[74], {{g_bytes + 774, 8}}},
487
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
488
- {{&grpc_static_metadata_refcounts[75], {{g_bytes + 782, 17}}},
489
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
490
- {{&grpc_static_metadata_refcounts[76], {{g_bytes + 799, 13}}},
491
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
492
- {{&grpc_static_metadata_refcounts[77], {{g_bytes + 812, 8}}},
493
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
494
- {{&grpc_static_metadata_refcounts[78], {{g_bytes + 820, 19}}},
495
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
496
- {{&grpc_static_metadata_refcounts[79], {{g_bytes + 839, 13}}},
497
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
499
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
500
+ {{&grpc_static_metadata_refcounts[78], {{g_bytes + 824, 8}}},
501
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
502
+ {{&grpc_static_metadata_refcounts[79], {{g_bytes + 832, 17}}},
503
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
504
+ {{&grpc_static_metadata_refcounts[80], {{g_bytes + 849, 13}}},
505
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
506
+ {{&grpc_static_metadata_refcounts[81], {{g_bytes + 862, 8}}},
507
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
508
+ {{&grpc_static_metadata_refcounts[82], {{g_bytes + 870, 19}}},
509
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
510
+ {{&grpc_static_metadata_refcounts[83], {{g_bytes + 889, 13}}},
511
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
498
512
  {{&grpc_static_metadata_refcounts[21], {{g_bytes + 282, 8}}},
499
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
500
- {{&grpc_static_metadata_refcounts[80], {{g_bytes + 852, 11}}},
501
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
502
- {{&grpc_static_metadata_refcounts[81], {{g_bytes + 863, 4}}},
503
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
504
- {{&grpc_static_metadata_refcounts[82], {{g_bytes + 867, 8}}},
505
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
506
- {{&grpc_static_metadata_refcounts[83], {{g_bytes + 875, 12}}},
507
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
508
- {{&grpc_static_metadata_refcounts[84], {{g_bytes + 887, 18}}},
509
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
510
- {{&grpc_static_metadata_refcounts[85], {{g_bytes + 905, 19}}},
511
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
512
- {{&grpc_static_metadata_refcounts[86], {{g_bytes + 924, 5}}},
513
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
514
- {{&grpc_static_metadata_refcounts[87], {{g_bytes + 929, 7}}},
515
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
516
- {{&grpc_static_metadata_refcounts[88], {{g_bytes + 936, 7}}},
517
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
518
- {{&grpc_static_metadata_refcounts[89], {{g_bytes + 943, 11}}},
519
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
520
- {{&grpc_static_metadata_refcounts[90], {{g_bytes + 954, 6}}},
521
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
522
- {{&grpc_static_metadata_refcounts[91], {{g_bytes + 960, 10}}},
523
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
524
- {{&grpc_static_metadata_refcounts[92], {{g_bytes + 970, 25}}},
525
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
526
- {{&grpc_static_metadata_refcounts[93], {{g_bytes + 995, 17}}},
527
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
513
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
514
+ {{&grpc_static_metadata_refcounts[84], {{g_bytes + 902, 11}}},
515
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
516
+ {{&grpc_static_metadata_refcounts[85], {{g_bytes + 913, 4}}},
517
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
518
+ {{&grpc_static_metadata_refcounts[86], {{g_bytes + 917, 8}}},
519
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
520
+ {{&grpc_static_metadata_refcounts[87], {{g_bytes + 925, 12}}},
521
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
522
+ {{&grpc_static_metadata_refcounts[88], {{g_bytes + 937, 18}}},
523
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
524
+ {{&grpc_static_metadata_refcounts[89], {{g_bytes + 955, 19}}},
525
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
526
+ {{&grpc_static_metadata_refcounts[90], {{g_bytes + 974, 5}}},
527
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
528
+ {{&grpc_static_metadata_refcounts[91], {{g_bytes + 979, 7}}},
529
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
530
+ {{&grpc_static_metadata_refcounts[92], {{g_bytes + 986, 7}}},
531
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
532
+ {{&grpc_static_metadata_refcounts[93], {{g_bytes + 993, 11}}},
533
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
534
+ {{&grpc_static_metadata_refcounts[94], {{g_bytes + 1004, 6}}},
535
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
536
+ {{&grpc_static_metadata_refcounts[95], {{g_bytes + 1010, 10}}},
537
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
538
+ {{&grpc_static_metadata_refcounts[96], {{g_bytes + 1020, 25}}},
539
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
540
+ {{&grpc_static_metadata_refcounts[97], {{g_bytes + 1045, 17}}},
541
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
528
542
  {{&grpc_static_metadata_refcounts[19], {{g_bytes + 268, 10}}},
529
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
530
- {{&grpc_static_metadata_refcounts[94], {{g_bytes + 1012, 4}}},
531
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
532
- {{&grpc_static_metadata_refcounts[95], {{g_bytes + 1016, 3}}},
533
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
534
- {{&grpc_static_metadata_refcounts[96], {{g_bytes + 1019, 16}}},
535
- {&grpc_static_metadata_refcounts[23], {{g_bytes + 302, 0}}}},
543
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
544
+ {{&grpc_static_metadata_refcounts[98], {{g_bytes + 1062, 4}}},
545
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
546
+ {{&grpc_static_metadata_refcounts[99], {{g_bytes + 1066, 3}}},
547
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
548
+ {{&grpc_static_metadata_refcounts[100], {{g_bytes + 1069, 16}}},
549
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
536
550
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
537
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 455, 8}}}},
551
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
538
552
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
539
- {&grpc_static_metadata_refcounts[29], {{g_bytes + 430, 7}}}},
553
+ {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}}},
540
554
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
541
- {&grpc_static_metadata_refcounts[97], {{g_bytes + 1035, 16}}}},
555
+ {&grpc_static_metadata_refcounts[101], {{g_bytes + 1085, 16}}}},
542
556
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
543
- {&grpc_static_metadata_refcounts[30], {{g_bytes + 437, 4}}}},
557
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
544
558
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
545
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1051, 13}}}},
559
+ {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}}},
546
560
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
547
- {&grpc_static_metadata_refcounts[99], {{g_bytes + 1064, 12}}}},
561
+ {&grpc_static_metadata_refcounts[103], {{g_bytes + 1114, 12}}}},
548
562
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
549
- {&grpc_static_metadata_refcounts[100], {{g_bytes + 1076, 21}}}},
563
+ {&grpc_static_metadata_refcounts[104], {{g_bytes + 1126, 21}}}},
550
564
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
551
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 455, 8}}}},
565
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
552
566
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
553
- {&grpc_static_metadata_refcounts[30], {{g_bytes + 437, 4}}}},
567
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
554
568
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
555
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1051, 13}}}},
569
+ {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}}},
556
570
  };
557
571
  bool grpc_static_callout_is_default[GRPC_BATCH_CALLOUTS_COUNT] = {
558
572
  true, // :path
@@ -577,6 +591,8 @@ bool grpc_static_callout_is_default[GRPC_BATCH_CALLOUTS_COUNT] = {
577
591
  true, // user-agent
578
592
  true, // host
579
593
  true, // lb-token
594
+ true, // grpc-previous-rpc-attempts
595
+ true, // grpc-retry-pushback-ms
580
596
  };
581
597
 
582
598
  const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,