grpc 1.22.0 → 1.23.0

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 (176) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +487 -649
  3. data/include/grpc/grpc_security.h +25 -0
  4. data/include/grpc/impl/codegen/grpc_types.h +11 -2
  5. data/include/grpc/impl/codegen/port_platform.h +12 -0
  6. data/src/core/ext/filters/client_channel/backup_poller.cc +4 -2
  7. data/src/core/ext/filters/client_channel/client_channel.cc +477 -182
  8. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +25 -16
  9. data/src/core/ext/filters/client_channel/client_channel_channelz.h +11 -6
  10. data/src/core/ext/filters/client_channel/connector.h +10 -2
  11. data/src/core/ext/filters/client_channel/health/health_check_client.cc +3 -3
  12. data/src/core/ext/filters/client_channel/http_proxy.cc +9 -10
  13. data/src/core/ext/filters/client_channel/lb_policy.cc +2 -17
  14. data/src/core/ext/filters/client_channel/lb_policy.h +36 -8
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +22 -8
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +86 -52
  17. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +7 -0
  18. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +73 -72
  19. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +8 -12
  20. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +25 -101
  21. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +5 -5
  22. data/src/core/ext/filters/client_channel/parse_address.cc +29 -26
  23. data/src/core/ext/filters/client_channel/resolver.h +3 -11
  24. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +5 -3
  25. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +405 -82
  26. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +44 -51
  27. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +0 -1
  28. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +0 -1
  29. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +11 -6
  30. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +130 -65
  31. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +8 -3
  32. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +31 -14
  33. data/src/core/ext/filters/client_channel/resolver_factory.h +4 -0
  34. data/src/core/ext/filters/client_channel/resolver_registry.cc +11 -0
  35. data/src/core/ext/filters/client_channel/resolver_registry.h +3 -0
  36. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +10 -49
  37. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +1 -14
  38. data/src/core/ext/filters/client_channel/retry_throttle.h +2 -3
  39. data/src/core/ext/filters/client_channel/subchannel.cc +65 -58
  40. data/src/core/ext/filters/client_channel/subchannel.h +65 -45
  41. data/src/core/ext/filters/client_channel/subchannel_interface.h +15 -30
  42. data/src/core/ext/filters/client_idle/client_idle_filter.cc +262 -0
  43. data/src/core/ext/filters/http/client/http_client_filter.cc +4 -5
  44. data/src/core/ext/filters/http/client_authority_filter.cc +2 -2
  45. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +140 -152
  46. data/src/core/ext/filters/max_age/max_age_filter.cc +3 -3
  47. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +3 -4
  48. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -6
  49. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +63 -38
  50. data/src/core/ext/transport/chttp2/transport/context_list.cc +3 -1
  51. data/src/core/ext/transport/chttp2/transport/frame_data.cc +4 -4
  52. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +1 -1
  53. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +1 -0
  54. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +8 -0
  55. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +7 -0
  56. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +1 -0
  57. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +37 -22
  58. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +136 -81
  59. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +8 -0
  60. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +7 -166
  61. data/src/core/ext/transport/chttp2/transport/hpack_table.h +41 -15
  62. data/src/core/ext/transport/chttp2/transport/internal.h +13 -2
  63. data/src/core/ext/transport/chttp2/transport/parsing.cc +35 -22
  64. data/src/core/ext/transport/chttp2/transport/stream_map.cc +28 -18
  65. data/src/core/ext/transport/chttp2/transport/writing.cc +1 -0
  66. data/src/core/ext/transport/inproc/inproc_transport.cc +1 -1
  67. data/src/core/lib/channel/channelz.cc +80 -33
  68. data/src/core/lib/channel/channelz.h +28 -13
  69. data/src/core/lib/compression/compression.cc +1 -2
  70. data/src/core/lib/compression/compression_args.cc +13 -6
  71. data/src/core/lib/compression/compression_args.h +3 -2
  72. data/src/core/lib/compression/compression_internal.cc +1 -1
  73. data/src/core/lib/gpr/env_linux.cc +10 -21
  74. data/src/core/lib/gpr/env_posix.cc +0 -5
  75. data/src/core/lib/gpr/string.cc +7 -2
  76. data/src/core/lib/gpr/string.h +1 -0
  77. data/src/core/lib/gpr/sync_posix.cc +0 -129
  78. data/src/core/lib/gprpp/debug_location.h +3 -2
  79. data/src/core/lib/gprpp/fork.cc +14 -21
  80. data/src/core/lib/gprpp/fork.h +15 -4
  81. data/src/core/lib/gprpp/host_port.cc +118 -0
  82. data/src/core/lib/{gpr → gprpp}/host_port.h +27 -11
  83. data/src/core/lib/gprpp/map.h +25 -0
  84. data/src/core/lib/gprpp/memory.h +26 -9
  85. data/src/core/lib/gprpp/ref_counted.h +63 -21
  86. data/src/core/lib/gprpp/string_view.h +143 -0
  87. data/src/core/lib/gprpp/thd.h +10 -1
  88. data/src/core/lib/gprpp/thd_posix.cc +25 -0
  89. data/src/core/lib/gprpp/thd_windows.cc +9 -1
  90. data/src/core/lib/http/httpcli_security_connector.cc +3 -1
  91. data/src/core/lib/iomgr/cfstream_handle.cc +6 -1
  92. data/src/core/lib/iomgr/cfstream_handle.h +8 -2
  93. data/src/core/lib/iomgr/combiner.cc +4 -4
  94. data/src/core/lib/iomgr/error.cc +18 -8
  95. data/src/core/lib/iomgr/error.h +2 -0
  96. data/src/core/lib/iomgr/ev_posix.cc +4 -2
  97. data/src/core/lib/iomgr/executor.cc +4 -1
  98. data/src/core/lib/iomgr/executor/mpmcqueue.cc +183 -0
  99. data/src/core/lib/iomgr/executor/mpmcqueue.h +178 -0
  100. data/src/core/lib/iomgr/executor/threadpool.cc +138 -0
  101. data/src/core/lib/iomgr/executor/threadpool.h +153 -0
  102. data/src/core/lib/iomgr/fork_posix.cc +4 -2
  103. data/src/core/lib/iomgr/iocp_windows.cc +2 -2
  104. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +14 -0
  105. data/src/core/lib/iomgr/iomgr_uv.cc +3 -0
  106. data/src/core/lib/iomgr/lockfree_event.cc +3 -3
  107. data/src/core/lib/iomgr/resolve_address_custom.cc +16 -20
  108. data/src/core/lib/iomgr/resolve_address_posix.cc +8 -10
  109. data/src/core/lib/iomgr/resolve_address_windows.cc +6 -8
  110. data/src/core/lib/iomgr/sockaddr_utils.cc +5 -3
  111. data/src/core/lib/iomgr/socket_utils_common_posix.cc +0 -1
  112. data/src/core/lib/iomgr/socket_windows.h +1 -1
  113. data/src/core/lib/iomgr/tcp_client_cfstream.cc +7 -6
  114. data/src/core/lib/iomgr/tcp_client_custom.cc +1 -0
  115. data/src/core/lib/iomgr/tcp_custom.cc +4 -0
  116. data/src/core/lib/iomgr/tcp_posix.cc +8 -2
  117. data/src/core/lib/iomgr/tcp_server_custom.cc +1 -0
  118. data/src/core/lib/iomgr/tcp_server_windows.cc +1 -1
  119. data/src/core/lib/iomgr/tcp_windows.cc +7 -7
  120. data/src/core/lib/iomgr/timer_custom.cc +1 -0
  121. data/src/core/lib/iomgr/timer_manager.cc +0 -29
  122. data/src/core/lib/security/credentials/credentials.cc +84 -0
  123. data/src/core/lib/security/credentials/credentials.h +58 -2
  124. data/src/core/lib/security/credentials/jwt/json_token.cc +6 -2
  125. data/src/core/lib/security/credentials/jwt/json_token.h +1 -1
  126. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +245 -24
  127. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +16 -0
  128. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +3 -2
  129. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +21 -25
  130. data/src/core/lib/security/security_connector/local/local_security_connector.cc +3 -2
  131. data/src/core/lib/security/security_connector/security_connector.cc +1 -1
  132. data/src/core/lib/security/security_connector/security_connector.h +1 -1
  133. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +19 -19
  134. data/src/core/lib/security/security_connector/ssl_utils.cc +26 -31
  135. data/src/core/lib/security/security_connector/ssl_utils.h +11 -8
  136. data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +16 -20
  137. data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +4 -3
  138. data/src/core/lib/security/transport/client_auth_filter.cc +1 -2
  139. data/src/core/lib/security/util/json_util.cc +19 -5
  140. data/src/core/lib/security/util/json_util.h +3 -1
  141. data/src/core/lib/slice/slice.cc +69 -50
  142. data/src/core/lib/slice/slice_buffer.cc +6 -5
  143. data/src/core/lib/slice/slice_hash_table.h +3 -7
  144. data/src/core/lib/slice/slice_intern.cc +130 -39
  145. data/src/core/lib/slice/slice_internal.h +8 -0
  146. data/src/core/lib/slice/slice_utils.h +120 -0
  147. data/src/core/lib/slice/slice_weak_hash_table.h +2 -7
  148. data/src/core/lib/surface/call.cc +8 -3
  149. data/src/core/lib/surface/channel.cc +31 -8
  150. data/src/core/lib/surface/completion_queue.cc +17 -7
  151. data/src/core/lib/surface/init_secure.cc +4 -1
  152. data/src/core/lib/surface/lame_client.cc +2 -2
  153. data/src/core/lib/surface/server.cc +34 -35
  154. data/src/core/lib/surface/server.h +8 -17
  155. data/src/core/lib/surface/version.cc +1 -1
  156. data/src/core/lib/transport/byte_stream.cc +3 -5
  157. data/src/core/lib/transport/byte_stream.h +1 -2
  158. data/src/core/lib/transport/error_utils.cc +10 -1
  159. data/src/core/lib/transport/metadata.cc +202 -35
  160. data/src/core/lib/transport/metadata.h +81 -6
  161. data/src/core/lib/transport/static_metadata.cc +1257 -465
  162. data/src/core/lib/transport/static_metadata.h +190 -347
  163. data/src/core/lib/transport/timeout_encoding.cc +7 -0
  164. data/src/core/lib/transport/timeout_encoding.h +3 -2
  165. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
  166. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +0 -1
  167. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +2 -7
  168. data/src/core/tsi/ssl_transport_security.cc +35 -43
  169. data/src/core/tsi/ssl_transport_security.h +2 -1
  170. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  171. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  172. data/src/ruby/lib/grpc/generic/rpc_server.rb +1 -1
  173. data/src/ruby/lib/grpc/grpc.rb +1 -1
  174. data/src/ruby/lib/grpc/version.rb +1 -1
  175. metadata +39 -33
  176. data/src/core/lib/gpr/host_port.cc +0 -98
@@ -49,72 +49,72 @@ static uint8_t g_bytes[] = {
49
49
  101, 113, 117, 101, 115, 116, 103, 114, 112, 99, 45, 105, 110, 116, 101,
50
50
  114, 110, 97, 108, 45, 115, 116, 114, 101, 97, 109, 45, 101, 110, 99,
51
51
  111, 100, 105, 110, 103, 45, 114, 101, 113, 117, 101, 115, 116, 117, 115,
52
- 101, 114, 45, 97, 103, 101, 110, 116, 104, 111, 115, 116, 108, 98, 45,
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, 47, 103, 114, 112, 99, 46, 104, 101, 97, 108, 116, 104, 46,
67
- 118, 49, 46, 72, 101, 97, 108, 116, 104, 47, 87, 97, 116, 99, 104,
68
- 47, 101, 110, 118, 111, 121, 46, 115, 101, 114, 118, 105, 99, 101, 46,
69
- 100, 105, 115, 99, 111, 118, 101, 114, 121, 46, 118, 50, 46, 65, 103,
70
- 103, 114, 101, 103, 97, 116, 101, 100, 68, 105, 115, 99, 111, 118, 101,
71
- 114, 121, 83, 101, 114, 118, 105, 99, 101, 47, 83, 116, 114, 101, 97,
72
- 109, 65, 103, 103, 114, 101, 103, 97, 116, 101, 100, 82, 101, 115, 111,
73
- 117, 114, 99, 101, 115, 100, 101, 102, 108, 97, 116, 101, 103, 122, 105,
74
- 112, 115, 116, 114, 101, 97, 109, 47, 103, 122, 105, 112, 71, 69, 84,
75
- 80, 79, 83, 84, 47, 47, 105, 110, 100, 101, 120, 46, 104, 116, 109,
76
- 108, 104, 116, 116, 112, 104, 116, 116, 112, 115, 50, 48, 48, 50, 48,
77
- 52, 50, 48, 54, 51, 48, 52, 52, 48, 48, 52, 48, 52, 53, 48,
78
- 48, 97, 99, 99, 101, 112, 116, 45, 99, 104, 97, 114, 115, 101, 116,
79
- 103, 122, 105, 112, 44, 32, 100, 101, 102, 108, 97, 116, 101, 97, 99,
80
- 99, 101, 112, 116, 45, 108, 97, 110, 103, 117, 97, 103, 101, 97, 99,
81
- 99, 101, 112, 116, 45, 114, 97, 110, 103, 101, 115, 97, 99, 99, 101,
82
- 112, 116, 97, 99, 99, 101, 115, 115, 45, 99, 111, 110, 116, 114, 111,
83
- 108, 45, 97, 108, 108, 111, 119, 45, 111, 114, 105, 103, 105, 110, 97,
84
- 103, 101, 97, 108, 108, 111, 119, 97, 117, 116, 104, 111, 114, 105, 122,
85
- 97, 116, 105, 111, 110, 99, 97, 99, 104, 101, 45, 99, 111, 110, 116,
86
- 114, 111, 108, 99, 111, 110, 116, 101, 110, 116, 45, 100, 105, 115, 112,
87
- 111, 115, 105, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116, 45,
88
- 108, 97, 110, 103, 117, 97, 103, 101, 99, 111, 110, 116, 101, 110, 116,
89
- 45, 108, 101, 110, 103, 116, 104, 99, 111, 110, 116, 101, 110, 116, 45,
90
- 108, 111, 99, 97, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116,
91
- 45, 114, 97, 110, 103, 101, 99, 111, 111, 107, 105, 101, 100, 97, 116,
92
- 101, 101, 116, 97, 103, 101, 120, 112, 101, 99, 116, 101, 120, 112, 105,
93
- 114, 101, 115, 102, 114, 111, 109, 105, 102, 45, 109, 97, 116, 99, 104,
94
- 105, 102, 45, 109, 111, 100, 105, 102, 105, 101, 100, 45, 115, 105, 110,
95
- 99, 101, 105, 102, 45, 110, 111, 110, 101, 45, 109, 97, 116, 99, 104,
96
- 105, 102, 45, 114, 97, 110, 103, 101, 105, 102, 45, 117, 110, 109, 111,
97
- 100, 105, 102, 105, 101, 100, 45, 115, 105, 110, 99, 101, 108, 97, 115,
98
- 116, 45, 109, 111, 100, 105, 102, 105, 101, 100, 108, 105, 110, 107, 108,
99
- 111, 99, 97, 116, 105, 111, 110, 109, 97, 120, 45, 102, 111, 114, 119,
100
- 97, 114, 100, 115, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 101,
101
- 110, 116, 105, 99, 97, 116, 101, 112, 114, 111, 120, 121, 45, 97, 117,
102
- 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 114, 97, 110, 103,
103
- 101, 114, 101, 102, 101, 114, 101, 114, 114, 101, 102, 114, 101, 115, 104,
104
- 114, 101, 116, 114, 121, 45, 97, 102, 116, 101, 114, 115, 101, 114, 118,
105
- 101, 114, 115, 101, 116, 45, 99, 111, 111, 107, 105, 101, 115, 116, 114,
106
- 105, 99, 116, 45, 116, 114, 97, 110, 115, 112, 111, 114, 116, 45, 115,
107
- 101, 99, 117, 114, 105, 116, 121, 116, 114, 97, 110, 115, 102, 101, 114,
108
- 45, 101, 110, 99, 111, 100, 105, 110, 103, 118, 97, 114, 121, 118, 105,
109
- 97, 119, 119, 119, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97,
110
- 116, 101, 48, 105, 100, 101, 110, 116, 105, 116, 121, 116, 114, 97, 105,
111
- 108, 101, 114, 115, 97, 112, 112, 108, 105, 99, 97, 116, 105, 111, 110,
112
- 47, 103, 114, 112, 99, 103, 114, 112, 99, 80, 85, 84, 108, 98, 45,
113
- 99, 111, 115, 116, 45, 98, 105, 110, 105, 100, 101, 110, 116, 105, 116,
114
- 121, 44, 100, 101, 102, 108, 97, 116, 101, 105, 100, 101, 110, 116, 105,
115
- 116, 121, 44, 103, 122, 105, 112, 100, 101, 102, 108, 97, 116, 101, 44,
116
- 103, 122, 105, 112, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101,
117
- 102, 108, 97, 116, 101, 44, 103, 122, 105, 112};
52
+ 101, 114, 45, 97, 103, 101, 110, 116, 104, 111, 115, 116, 103, 114, 112,
53
+ 99, 45, 112, 114, 101, 118, 105, 111, 117, 115, 45, 114, 112, 99, 45,
54
+ 97, 116, 116, 101, 109, 112, 116, 115, 103, 114, 112, 99, 45, 114, 101,
55
+ 116, 114, 121, 45, 112, 117, 115, 104, 98, 97, 99, 107, 45, 109, 115,
56
+ 103, 114, 112, 99, 45, 116, 105, 109, 101, 111, 117, 116, 49, 50, 51,
57
+ 52, 103, 114, 112, 99, 46, 119, 97, 105, 116, 95, 102, 111, 114, 95,
58
+ 114, 101, 97, 100, 121, 103, 114, 112, 99, 46, 116, 105, 109, 101, 111,
59
+ 117, 116, 103, 114, 112, 99, 46, 109, 97, 120, 95, 114, 101, 113, 117,
60
+ 101, 115, 116, 95, 109, 101, 115, 115, 97, 103, 101, 95, 98, 121, 116,
61
+ 101, 115, 103, 114, 112, 99, 46, 109, 97, 120, 95, 114, 101, 115, 112,
62
+ 111, 110, 115, 101, 95, 109, 101, 115, 115, 97, 103, 101, 95, 98, 121,
63
+ 116, 101, 115, 47, 103, 114, 112, 99, 46, 108, 98, 46, 118, 49, 46,
64
+ 76, 111, 97, 100, 66, 97, 108, 97, 110, 99, 101, 114, 47, 66, 97,
65
+ 108, 97, 110, 99, 101, 76, 111, 97, 100, 47, 103, 114, 112, 99, 46,
66
+ 104, 101, 97, 108, 116, 104, 46, 118, 49, 46, 72, 101, 97, 108, 116,
67
+ 104, 47, 87, 97, 116, 99, 104, 47, 101, 110, 118, 111, 121, 46, 115,
68
+ 101, 114, 118, 105, 99, 101, 46, 100, 105, 115, 99, 111, 118, 101, 114,
69
+ 121, 46, 118, 50, 46, 65, 103, 103, 114, 101, 103, 97, 116, 101, 100,
70
+ 68, 105, 115, 99, 111, 118, 101, 114, 121, 83, 101, 114, 118, 105, 99,
71
+ 101, 47, 83, 116, 114, 101, 97, 109, 65, 103, 103, 114, 101, 103, 97,
72
+ 116, 101, 100, 82, 101, 115, 111, 117, 114, 99, 101, 115, 100, 101, 102,
73
+ 108, 97, 116, 101, 103, 122, 105, 112, 115, 116, 114, 101, 97, 109, 47,
74
+ 103, 122, 105, 112, 71, 69, 84, 80, 79, 83, 84, 47, 47, 105, 110,
75
+ 100, 101, 120, 46, 104, 116, 109, 108, 104, 116, 116, 112, 104, 116, 116,
76
+ 112, 115, 50, 48, 48, 50, 48, 52, 50, 48, 54, 51, 48, 52, 52,
77
+ 48, 48, 52, 48, 52, 53, 48, 48, 97, 99, 99, 101, 112, 116, 45,
78
+ 99, 104, 97, 114, 115, 101, 116, 103, 122, 105, 112, 44, 32, 100, 101,
79
+ 102, 108, 97, 116, 101, 97, 99, 99, 101, 112, 116, 45, 108, 97, 110,
80
+ 103, 117, 97, 103, 101, 97, 99, 99, 101, 112, 116, 45, 114, 97, 110,
81
+ 103, 101, 115, 97, 99, 99, 101, 112, 116, 97, 99, 99, 101, 115, 115,
82
+ 45, 99, 111, 110, 116, 114, 111, 108, 45, 97, 108, 108, 111, 119, 45,
83
+ 111, 114, 105, 103, 105, 110, 97, 103, 101, 97, 108, 108, 111, 119, 97,
84
+ 117, 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 99, 97, 99,
85
+ 104, 101, 45, 99, 111, 110, 116, 114, 111, 108, 99, 111, 110, 116, 101,
86
+ 110, 116, 45, 100, 105, 115, 112, 111, 115, 105, 116, 105, 111, 110, 99,
87
+ 111, 110, 116, 101, 110, 116, 45, 108, 97, 110, 103, 117, 97, 103, 101,
88
+ 99, 111, 110, 116, 101, 110, 116, 45, 108, 101, 110, 103, 116, 104, 99,
89
+ 111, 110, 116, 101, 110, 116, 45, 108, 111, 99, 97, 116, 105, 111, 110,
90
+ 99, 111, 110, 116, 101, 110, 116, 45, 114, 97, 110, 103, 101, 99, 111,
91
+ 111, 107, 105, 101, 100, 97, 116, 101, 101, 116, 97, 103, 101, 120, 112,
92
+ 101, 99, 116, 101, 120, 112, 105, 114, 101, 115, 102, 114, 111, 109, 105,
93
+ 102, 45, 109, 97, 116, 99, 104, 105, 102, 45, 109, 111, 100, 105, 102,
94
+ 105, 101, 100, 45, 115, 105, 110, 99, 101, 105, 102, 45, 110, 111, 110,
95
+ 101, 45, 109, 97, 116, 99, 104, 105, 102, 45, 114, 97, 110, 103, 101,
96
+ 105, 102, 45, 117, 110, 109, 111, 100, 105, 102, 105, 101, 100, 45, 115,
97
+ 105, 110, 99, 101, 108, 97, 115, 116, 45, 109, 111, 100, 105, 102, 105,
98
+ 101, 100, 108, 105, 110, 107, 108, 111, 99, 97, 116, 105, 111, 110, 109,
99
+ 97, 120, 45, 102, 111, 114, 119, 97, 114, 100, 115, 112, 114, 111, 120,
100
+ 121, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97, 116, 101, 112,
101
+ 114, 111, 120, 121, 45, 97, 117, 116, 104, 111, 114, 105, 122, 97, 116,
102
+ 105, 111, 110, 114, 97, 110, 103, 101, 114, 101, 102, 101, 114, 101, 114,
103
+ 114, 101, 102, 114, 101, 115, 104, 114, 101, 116, 114, 121, 45, 97, 102,
104
+ 116, 101, 114, 115, 101, 114, 118, 101, 114, 115, 101, 116, 45, 99, 111,
105
+ 111, 107, 105, 101, 115, 116, 114, 105, 99, 116, 45, 116, 114, 97, 110,
106
+ 115, 112, 111, 114, 116, 45, 115, 101, 99, 117, 114, 105, 116, 121, 116,
107
+ 114, 97, 110, 115, 102, 101, 114, 45, 101, 110, 99, 111, 100, 105, 110,
108
+ 103, 118, 97, 114, 121, 118, 105, 97, 119, 119, 119, 45, 97, 117, 116,
109
+ 104, 101, 110, 116, 105, 99, 97, 116, 101, 48, 105, 100, 101, 110, 116,
110
+ 105, 116, 121, 116, 114, 97, 105, 108, 101, 114, 115, 97, 112, 112, 108,
111
+ 105, 99, 97, 116, 105, 111, 110, 47, 103, 114, 112, 99, 103, 114, 112,
112
+ 99, 80, 85, 84, 108, 98, 45, 99, 111, 115, 116, 45, 98, 105, 110,
113
+ 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102, 108, 97, 116,
114
+ 101, 105, 100, 101, 110, 116, 105, 116, 121, 44, 103, 122, 105, 112, 100,
115
+ 101, 102, 108, 97, 116, 101, 44, 103, 122, 105, 112, 105, 100, 101, 110,
116
+ 116, 105, 116, 121, 44, 100, 101, 102, 108, 97, 116, 101, 44, 103, 122,
117
+ 105, 112};
118
118
 
119
119
  static grpc_slice_refcount static_sub_refcnt;
120
120
  grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
@@ -224,137 +224,678 @@ grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
224
224
  grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
225
225
  grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
226
226
  grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
227
- grpc_slice_refcount(&static_sub_refcnt, grpc_slice_refcount::Type::STATIC),
228
227
  };
229
228
 
230
- const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
231
- {&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
232
- {&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
233
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
234
- {&grpc_static_metadata_refcounts[3], {{10, g_bytes + 19}}},
235
- {&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
236
- {&grpc_static_metadata_refcounts[5], {{2, g_bytes + 36}}},
237
- {&grpc_static_metadata_refcounts[6], {{12, g_bytes + 38}}},
238
- {&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
239
- {&grpc_static_metadata_refcounts[8], {{16, g_bytes + 61}}},
240
- {&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
241
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
242
- {&grpc_static_metadata_refcounts[11], {{21, g_bytes + 110}}},
243
- {&grpc_static_metadata_refcounts[12], {{13, g_bytes + 131}}},
244
- {&grpc_static_metadata_refcounts[13], {{14, g_bytes + 144}}},
245
- {&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
246
- {&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
247
- {&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
248
- {&grpc_static_metadata_refcounts[17], {{30, g_bytes + 201}}},
249
- {&grpc_static_metadata_refcounts[18], {{37, g_bytes + 231}}},
250
- {&grpc_static_metadata_refcounts[19], {{10, g_bytes + 268}}},
251
- {&grpc_static_metadata_refcounts[20], {{4, g_bytes + 278}}},
252
- {&grpc_static_metadata_refcounts[21], {{8, g_bytes + 282}}},
253
- {&grpc_static_metadata_refcounts[22], {{26, g_bytes + 290}}},
254
- {&grpc_static_metadata_refcounts[23], {{22, g_bytes + 316}}},
255
- {&grpc_static_metadata_refcounts[24], {{12, g_bytes + 338}}},
256
- {&grpc_static_metadata_refcounts[25], {{1, g_bytes + 350}}},
257
- {&grpc_static_metadata_refcounts[26], {{1, g_bytes + 351}}},
258
- {&grpc_static_metadata_refcounts[27], {{1, g_bytes + 352}}},
259
- {&grpc_static_metadata_refcounts[28], {{1, g_bytes + 353}}},
260
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}},
261
- {&grpc_static_metadata_refcounts[30], {{19, g_bytes + 354}}},
262
- {&grpc_static_metadata_refcounts[31], {{12, g_bytes + 373}}},
263
- {&grpc_static_metadata_refcounts[32], {{30, g_bytes + 385}}},
264
- {&grpc_static_metadata_refcounts[33], {{31, g_bytes + 415}}},
265
- {&grpc_static_metadata_refcounts[34], {{36, g_bytes + 446}}},
266
- {&grpc_static_metadata_refcounts[35], {{28, g_bytes + 482}}},
267
- {&grpc_static_metadata_refcounts[36], {{80, g_bytes + 510}}},
268
- {&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}},
269
- {&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}},
270
- {&grpc_static_metadata_refcounts[39], {{11, g_bytes + 601}}},
271
- {&grpc_static_metadata_refcounts[40], {{3, g_bytes + 612}}},
272
- {&grpc_static_metadata_refcounts[41], {{4, g_bytes + 615}}},
273
- {&grpc_static_metadata_refcounts[42], {{1, g_bytes + 619}}},
274
- {&grpc_static_metadata_refcounts[43], {{11, g_bytes + 620}}},
275
- {&grpc_static_metadata_refcounts[44], {{4, g_bytes + 631}}},
276
- {&grpc_static_metadata_refcounts[45], {{5, g_bytes + 635}}},
277
- {&grpc_static_metadata_refcounts[46], {{3, g_bytes + 640}}},
278
- {&grpc_static_metadata_refcounts[47], {{3, g_bytes + 643}}},
279
- {&grpc_static_metadata_refcounts[48], {{3, g_bytes + 646}}},
280
- {&grpc_static_metadata_refcounts[49], {{3, g_bytes + 649}}},
281
- {&grpc_static_metadata_refcounts[50], {{3, g_bytes + 652}}},
282
- {&grpc_static_metadata_refcounts[51], {{3, g_bytes + 655}}},
283
- {&grpc_static_metadata_refcounts[52], {{3, g_bytes + 658}}},
284
- {&grpc_static_metadata_refcounts[53], {{14, g_bytes + 661}}},
285
- {&grpc_static_metadata_refcounts[54], {{13, g_bytes + 675}}},
286
- {&grpc_static_metadata_refcounts[55], {{15, g_bytes + 688}}},
287
- {&grpc_static_metadata_refcounts[56], {{13, g_bytes + 703}}},
288
- {&grpc_static_metadata_refcounts[57], {{6, g_bytes + 716}}},
289
- {&grpc_static_metadata_refcounts[58], {{27, g_bytes + 722}}},
290
- {&grpc_static_metadata_refcounts[59], {{3, g_bytes + 749}}},
291
- {&grpc_static_metadata_refcounts[60], {{5, g_bytes + 752}}},
292
- {&grpc_static_metadata_refcounts[61], {{13, g_bytes + 757}}},
293
- {&grpc_static_metadata_refcounts[62], {{13, g_bytes + 770}}},
294
- {&grpc_static_metadata_refcounts[63], {{19, g_bytes + 783}}},
295
- {&grpc_static_metadata_refcounts[64], {{16, g_bytes + 802}}},
296
- {&grpc_static_metadata_refcounts[65], {{14, g_bytes + 818}}},
297
- {&grpc_static_metadata_refcounts[66], {{16, g_bytes + 832}}},
298
- {&grpc_static_metadata_refcounts[67], {{13, g_bytes + 848}}},
299
- {&grpc_static_metadata_refcounts[68], {{6, g_bytes + 861}}},
300
- {&grpc_static_metadata_refcounts[69], {{4, g_bytes + 867}}},
301
- {&grpc_static_metadata_refcounts[70], {{4, g_bytes + 871}}},
302
- {&grpc_static_metadata_refcounts[71], {{6, g_bytes + 875}}},
303
- {&grpc_static_metadata_refcounts[72], {{7, g_bytes + 881}}},
304
- {&grpc_static_metadata_refcounts[73], {{4, g_bytes + 888}}},
305
- {&grpc_static_metadata_refcounts[74], {{8, g_bytes + 892}}},
306
- {&grpc_static_metadata_refcounts[75], {{17, g_bytes + 900}}},
307
- {&grpc_static_metadata_refcounts[76], {{13, g_bytes + 917}}},
308
- {&grpc_static_metadata_refcounts[77], {{8, g_bytes + 930}}},
309
- {&grpc_static_metadata_refcounts[78], {{19, g_bytes + 938}}},
310
- {&grpc_static_metadata_refcounts[79], {{13, g_bytes + 957}}},
311
- {&grpc_static_metadata_refcounts[80], {{4, g_bytes + 970}}},
312
- {&grpc_static_metadata_refcounts[81], {{8, g_bytes + 974}}},
313
- {&grpc_static_metadata_refcounts[82], {{12, g_bytes + 982}}},
314
- {&grpc_static_metadata_refcounts[83], {{18, g_bytes + 994}}},
315
- {&grpc_static_metadata_refcounts[84], {{19, g_bytes + 1012}}},
316
- {&grpc_static_metadata_refcounts[85], {{5, g_bytes + 1031}}},
317
- {&grpc_static_metadata_refcounts[86], {{7, g_bytes + 1036}}},
318
- {&grpc_static_metadata_refcounts[87], {{7, g_bytes + 1043}}},
319
- {&grpc_static_metadata_refcounts[88], {{11, g_bytes + 1050}}},
320
- {&grpc_static_metadata_refcounts[89], {{6, g_bytes + 1061}}},
321
- {&grpc_static_metadata_refcounts[90], {{10, g_bytes + 1067}}},
322
- {&grpc_static_metadata_refcounts[91], {{25, g_bytes + 1077}}},
323
- {&grpc_static_metadata_refcounts[92], {{17, g_bytes + 1102}}},
324
- {&grpc_static_metadata_refcounts[93], {{4, g_bytes + 1119}}},
325
- {&grpc_static_metadata_refcounts[94], {{3, g_bytes + 1123}}},
326
- {&grpc_static_metadata_refcounts[95], {{16, g_bytes + 1126}}},
327
- {&grpc_static_metadata_refcounts[96], {{1, g_bytes + 1142}}},
328
- {&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}},
329
- {&grpc_static_metadata_refcounts[98], {{8, g_bytes + 1151}}},
330
- {&grpc_static_metadata_refcounts[99], {{16, g_bytes + 1159}}},
331
- {&grpc_static_metadata_refcounts[100], {{4, g_bytes + 1175}}},
332
- {&grpc_static_metadata_refcounts[101], {{3, g_bytes + 1179}}},
333
- {&grpc_static_metadata_refcounts[102], {{11, g_bytes + 1182}}},
334
- {&grpc_static_metadata_refcounts[103], {{16, g_bytes + 1193}}},
335
- {&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}},
336
- {&grpc_static_metadata_refcounts[105], {{12, g_bytes + 1222}}},
337
- {&grpc_static_metadata_refcounts[106], {{21, g_bytes + 1234}}},
229
+ const grpc_core::StaticMetadataSlice
230
+ grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
231
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[0], 5,
232
+ g_bytes + 0),
233
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[1], 7,
234
+ g_bytes + 5),
235
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
236
+ g_bytes + 12),
237
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[3], 10,
238
+ g_bytes + 19),
239
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[4], 7,
240
+ g_bytes + 29),
241
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[5], 2,
242
+ g_bytes + 36),
243
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[6], 12,
244
+ g_bytes + 38),
245
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[7], 11,
246
+ g_bytes + 50),
247
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[8], 16,
248
+ g_bytes + 61),
249
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[9], 13,
250
+ g_bytes + 77),
251
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
252
+ g_bytes + 90),
253
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[11], 21,
254
+ g_bytes + 110),
255
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[12], 13,
256
+ g_bytes + 131),
257
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[13], 14,
258
+ g_bytes + 144),
259
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[14], 12,
260
+ g_bytes + 158),
261
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[15], 16,
262
+ g_bytes + 170),
263
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[16], 15,
264
+ g_bytes + 186),
265
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[17], 30,
266
+ g_bytes + 201),
267
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[18], 37,
268
+ g_bytes + 231),
269
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[19], 10,
270
+ g_bytes + 268),
271
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[20], 4,
272
+ g_bytes + 278),
273
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[21], 26,
274
+ g_bytes + 282),
275
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[22], 22,
276
+ g_bytes + 308),
277
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[23], 12,
278
+ g_bytes + 330),
279
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[24], 1,
280
+ g_bytes + 342),
281
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[25], 1,
282
+ g_bytes + 343),
283
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[26], 1,
284
+ g_bytes + 344),
285
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[27], 1,
286
+ g_bytes + 345),
287
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
288
+ g_bytes + 346),
289
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[29], 19,
290
+ g_bytes + 346),
291
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[30], 12,
292
+ g_bytes + 365),
293
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[31], 30,
294
+ g_bytes + 377),
295
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[32], 31,
296
+ g_bytes + 407),
297
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[33], 36,
298
+ g_bytes + 438),
299
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[34], 28,
300
+ g_bytes + 474),
301
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[35], 80,
302
+ g_bytes + 502),
303
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[36], 7,
304
+ g_bytes + 582),
305
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[37], 4,
306
+ g_bytes + 589),
307
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[38], 11,
308
+ g_bytes + 593),
309
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[39], 3,
310
+ g_bytes + 604),
311
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[40], 4,
312
+ g_bytes + 607),
313
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[41], 1,
314
+ g_bytes + 611),
315
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[42], 11,
316
+ g_bytes + 612),
317
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[43], 4,
318
+ g_bytes + 623),
319
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[44], 5,
320
+ g_bytes + 627),
321
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[45], 3,
322
+ g_bytes + 632),
323
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[46], 3,
324
+ g_bytes + 635),
325
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[47], 3,
326
+ g_bytes + 638),
327
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[48], 3,
328
+ g_bytes + 641),
329
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[49], 3,
330
+ g_bytes + 644),
331
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[50], 3,
332
+ g_bytes + 647),
333
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[51], 3,
334
+ g_bytes + 650),
335
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[52], 14,
336
+ g_bytes + 653),
337
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[53], 13,
338
+ g_bytes + 667),
339
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[54], 15,
340
+ g_bytes + 680),
341
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[55], 13,
342
+ g_bytes + 695),
343
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[56], 6,
344
+ g_bytes + 708),
345
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[57], 27,
346
+ g_bytes + 714),
347
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[58], 3,
348
+ g_bytes + 741),
349
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[59], 5,
350
+ g_bytes + 744),
351
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[60], 13,
352
+ g_bytes + 749),
353
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[61], 13,
354
+ g_bytes + 762),
355
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[62], 19,
356
+ g_bytes + 775),
357
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[63], 16,
358
+ g_bytes + 794),
359
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[64], 14,
360
+ g_bytes + 810),
361
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[65], 16,
362
+ g_bytes + 824),
363
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[66], 13,
364
+ g_bytes + 840),
365
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[67], 6,
366
+ g_bytes + 853),
367
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[68], 4,
368
+ g_bytes + 859),
369
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[69], 4,
370
+ g_bytes + 863),
371
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[70], 6,
372
+ g_bytes + 867),
373
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[71], 7,
374
+ g_bytes + 873),
375
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[72], 4,
376
+ g_bytes + 880),
377
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[73], 8,
378
+ g_bytes + 884),
379
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[74], 17,
380
+ g_bytes + 892),
381
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[75], 13,
382
+ g_bytes + 909),
383
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[76], 8,
384
+ g_bytes + 922),
385
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[77], 19,
386
+ g_bytes + 930),
387
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[78], 13,
388
+ g_bytes + 949),
389
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[79], 4,
390
+ g_bytes + 962),
391
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[80], 8,
392
+ g_bytes + 966),
393
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[81], 12,
394
+ g_bytes + 974),
395
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[82], 18,
396
+ g_bytes + 986),
397
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[83], 19,
398
+ g_bytes + 1004),
399
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[84], 5,
400
+ g_bytes + 1023),
401
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[85], 7,
402
+ g_bytes + 1028),
403
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[86], 7,
404
+ g_bytes + 1035),
405
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[87], 11,
406
+ g_bytes + 1042),
407
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[88], 6,
408
+ g_bytes + 1053),
409
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[89], 10,
410
+ g_bytes + 1059),
411
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[90], 25,
412
+ g_bytes + 1069),
413
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[91], 17,
414
+ g_bytes + 1094),
415
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[92], 4,
416
+ g_bytes + 1111),
417
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[93], 3,
418
+ g_bytes + 1115),
419
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[94], 16,
420
+ g_bytes + 1118),
421
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[95], 1,
422
+ g_bytes + 1134),
423
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[96], 8,
424
+ g_bytes + 1135),
425
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[97], 8,
426
+ g_bytes + 1143),
427
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[98], 16,
428
+ g_bytes + 1151),
429
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[99], 4,
430
+ g_bytes + 1167),
431
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[100], 3,
432
+ g_bytes + 1171),
433
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[101], 11,
434
+ g_bytes + 1174),
435
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[102], 16,
436
+ g_bytes + 1185),
437
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[103], 13,
438
+ g_bytes + 1201),
439
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[104], 12,
440
+ g_bytes + 1214),
441
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[105], 21,
442
+ g_bytes + 1226),
338
443
  };
339
444
 
445
+ /* Warning: the core static metadata currently operates under the soft
446
+ constraint that the first GRPC_CHTTP2_LAST_STATIC_ENTRY (61) entries must
447
+ contain metadata specified by the http2 hpack standard. The CHTTP2 transport
448
+ reads the core metadata with this assumption in mind. If the order of the core
449
+ static metadata is to be changed, then the CHTTP2 transport must be changed as
450
+ well to stop relying on the core metadata. */
451
+
452
+ grpc_mdelem grpc_static_mdelem_manifested[GRPC_STATIC_MDELEM_COUNT] = {
453
+ // clang-format off
454
+ /* GRPC_MDELEM_AUTHORITY_EMPTY:
455
+ ":authority": "" */
456
+ GRPC_MAKE_MDELEM(
457
+ &grpc_static_mdelem_table[0].data(),
458
+ GRPC_MDELEM_STORAGE_STATIC),
459
+ /* GRPC_MDELEM_METHOD_GET:
460
+ ":method": "GET" */
461
+ GRPC_MAKE_MDELEM(
462
+ &grpc_static_mdelem_table[1].data(),
463
+ GRPC_MDELEM_STORAGE_STATIC),
464
+ /* GRPC_MDELEM_METHOD_POST:
465
+ ":method": "POST" */
466
+ GRPC_MAKE_MDELEM(
467
+ &grpc_static_mdelem_table[2].data(),
468
+ GRPC_MDELEM_STORAGE_STATIC),
469
+ /* GRPC_MDELEM_PATH_SLASH:
470
+ ":path": "/" */
471
+ GRPC_MAKE_MDELEM(
472
+ &grpc_static_mdelem_table[3].data(),
473
+ GRPC_MDELEM_STORAGE_STATIC),
474
+ /* GRPC_MDELEM_PATH_SLASH_INDEX_DOT_HTML:
475
+ ":path": "/index.html" */
476
+ GRPC_MAKE_MDELEM(
477
+ &grpc_static_mdelem_table[4].data(),
478
+ GRPC_MDELEM_STORAGE_STATIC),
479
+ /* GRPC_MDELEM_SCHEME_HTTP:
480
+ ":scheme": "http" */
481
+ GRPC_MAKE_MDELEM(
482
+ &grpc_static_mdelem_table[5].data(),
483
+ GRPC_MDELEM_STORAGE_STATIC),
484
+ /* GRPC_MDELEM_SCHEME_HTTPS:
485
+ ":scheme": "https" */
486
+ GRPC_MAKE_MDELEM(
487
+ &grpc_static_mdelem_table[6].data(),
488
+ GRPC_MDELEM_STORAGE_STATIC),
489
+ /* GRPC_MDELEM_STATUS_200:
490
+ ":status": "200" */
491
+ GRPC_MAKE_MDELEM(
492
+ &grpc_static_mdelem_table[7].data(),
493
+ GRPC_MDELEM_STORAGE_STATIC),
494
+ /* GRPC_MDELEM_STATUS_204:
495
+ ":status": "204" */
496
+ GRPC_MAKE_MDELEM(
497
+ &grpc_static_mdelem_table[8].data(),
498
+ GRPC_MDELEM_STORAGE_STATIC),
499
+ /* GRPC_MDELEM_STATUS_206:
500
+ ":status": "206" */
501
+ GRPC_MAKE_MDELEM(
502
+ &grpc_static_mdelem_table[9].data(),
503
+ GRPC_MDELEM_STORAGE_STATIC),
504
+ /* GRPC_MDELEM_STATUS_304:
505
+ ":status": "304" */
506
+ GRPC_MAKE_MDELEM(
507
+ &grpc_static_mdelem_table[10].data(),
508
+ GRPC_MDELEM_STORAGE_STATIC),
509
+ /* GRPC_MDELEM_STATUS_400:
510
+ ":status": "400" */
511
+ GRPC_MAKE_MDELEM(
512
+ &grpc_static_mdelem_table[11].data(),
513
+ GRPC_MDELEM_STORAGE_STATIC),
514
+ /* GRPC_MDELEM_STATUS_404:
515
+ ":status": "404" */
516
+ GRPC_MAKE_MDELEM(
517
+ &grpc_static_mdelem_table[12].data(),
518
+ GRPC_MDELEM_STORAGE_STATIC),
519
+ /* GRPC_MDELEM_STATUS_500:
520
+ ":status": "500" */
521
+ GRPC_MAKE_MDELEM(
522
+ &grpc_static_mdelem_table[13].data(),
523
+ GRPC_MDELEM_STORAGE_STATIC),
524
+ /* GRPC_MDELEM_ACCEPT_CHARSET_EMPTY:
525
+ "accept-charset": "" */
526
+ GRPC_MAKE_MDELEM(
527
+ &grpc_static_mdelem_table[14].data(),
528
+ GRPC_MDELEM_STORAGE_STATIC),
529
+ /* GRPC_MDELEM_ACCEPT_ENCODING_GZIP_COMMA_DEFLATE:
530
+ "accept-encoding": "gzip, deflate" */
531
+ GRPC_MAKE_MDELEM(
532
+ &grpc_static_mdelem_table[15].data(),
533
+ GRPC_MDELEM_STORAGE_STATIC),
534
+ /* GRPC_MDELEM_ACCEPT_LANGUAGE_EMPTY:
535
+ "accept-language": "" */
536
+ GRPC_MAKE_MDELEM(
537
+ &grpc_static_mdelem_table[16].data(),
538
+ GRPC_MDELEM_STORAGE_STATIC),
539
+ /* GRPC_MDELEM_ACCEPT_RANGES_EMPTY:
540
+ "accept-ranges": "" */
541
+ GRPC_MAKE_MDELEM(
542
+ &grpc_static_mdelem_table[17].data(),
543
+ GRPC_MDELEM_STORAGE_STATIC),
544
+ /* GRPC_MDELEM_ACCEPT_EMPTY:
545
+ "accept": "" */
546
+ GRPC_MAKE_MDELEM(
547
+ &grpc_static_mdelem_table[18].data(),
548
+ GRPC_MDELEM_STORAGE_STATIC),
549
+ /* GRPC_MDELEM_ACCESS_CONTROL_ALLOW_ORIGIN_EMPTY:
550
+ "access-control-allow-origin": "" */
551
+ GRPC_MAKE_MDELEM(
552
+ &grpc_static_mdelem_table[19].data(),
553
+ GRPC_MDELEM_STORAGE_STATIC),
554
+ /* GRPC_MDELEM_AGE_EMPTY:
555
+ "age": "" */
556
+ GRPC_MAKE_MDELEM(
557
+ &grpc_static_mdelem_table[20].data(),
558
+ GRPC_MDELEM_STORAGE_STATIC),
559
+ /* GRPC_MDELEM_ALLOW_EMPTY:
560
+ "allow": "" */
561
+ GRPC_MAKE_MDELEM(
562
+ &grpc_static_mdelem_table[21].data(),
563
+ GRPC_MDELEM_STORAGE_STATIC),
564
+ /* GRPC_MDELEM_AUTHORIZATION_EMPTY:
565
+ "authorization": "" */
566
+ GRPC_MAKE_MDELEM(
567
+ &grpc_static_mdelem_table[22].data(),
568
+ GRPC_MDELEM_STORAGE_STATIC),
569
+ /* GRPC_MDELEM_CACHE_CONTROL_EMPTY:
570
+ "cache-control": "" */
571
+ GRPC_MAKE_MDELEM(
572
+ &grpc_static_mdelem_table[23].data(),
573
+ GRPC_MDELEM_STORAGE_STATIC),
574
+ /* GRPC_MDELEM_CONTENT_DISPOSITION_EMPTY:
575
+ "content-disposition": "" */
576
+ GRPC_MAKE_MDELEM(
577
+ &grpc_static_mdelem_table[24].data(),
578
+ GRPC_MDELEM_STORAGE_STATIC),
579
+ /* GRPC_MDELEM_CONTENT_ENCODING_EMPTY:
580
+ "content-encoding": "" */
581
+ GRPC_MAKE_MDELEM(
582
+ &grpc_static_mdelem_table[25].data(),
583
+ GRPC_MDELEM_STORAGE_STATIC),
584
+ /* GRPC_MDELEM_CONTENT_LANGUAGE_EMPTY:
585
+ "content-language": "" */
586
+ GRPC_MAKE_MDELEM(
587
+ &grpc_static_mdelem_table[26].data(),
588
+ GRPC_MDELEM_STORAGE_STATIC),
589
+ /* GRPC_MDELEM_CONTENT_LENGTH_EMPTY:
590
+ "content-length": "" */
591
+ GRPC_MAKE_MDELEM(
592
+ &grpc_static_mdelem_table[27].data(),
593
+ GRPC_MDELEM_STORAGE_STATIC),
594
+ /* GRPC_MDELEM_CONTENT_LOCATION_EMPTY:
595
+ "content-location": "" */
596
+ GRPC_MAKE_MDELEM(
597
+ &grpc_static_mdelem_table[28].data(),
598
+ GRPC_MDELEM_STORAGE_STATIC),
599
+ /* GRPC_MDELEM_CONTENT_RANGE_EMPTY:
600
+ "content-range": "" */
601
+ GRPC_MAKE_MDELEM(
602
+ &grpc_static_mdelem_table[29].data(),
603
+ GRPC_MDELEM_STORAGE_STATIC),
604
+ /* GRPC_MDELEM_CONTENT_TYPE_EMPTY:
605
+ "content-type": "" */
606
+ GRPC_MAKE_MDELEM(
607
+ &grpc_static_mdelem_table[30].data(),
608
+ GRPC_MDELEM_STORAGE_STATIC),
609
+ /* GRPC_MDELEM_COOKIE_EMPTY:
610
+ "cookie": "" */
611
+ GRPC_MAKE_MDELEM(
612
+ &grpc_static_mdelem_table[31].data(),
613
+ GRPC_MDELEM_STORAGE_STATIC),
614
+ /* GRPC_MDELEM_DATE_EMPTY:
615
+ "date": "" */
616
+ GRPC_MAKE_MDELEM(
617
+ &grpc_static_mdelem_table[32].data(),
618
+ GRPC_MDELEM_STORAGE_STATIC),
619
+ /* GRPC_MDELEM_ETAG_EMPTY:
620
+ "etag": "" */
621
+ GRPC_MAKE_MDELEM(
622
+ &grpc_static_mdelem_table[33].data(),
623
+ GRPC_MDELEM_STORAGE_STATIC),
624
+ /* GRPC_MDELEM_EXPECT_EMPTY:
625
+ "expect": "" */
626
+ GRPC_MAKE_MDELEM(
627
+ &grpc_static_mdelem_table[34].data(),
628
+ GRPC_MDELEM_STORAGE_STATIC),
629
+ /* GRPC_MDELEM_EXPIRES_EMPTY:
630
+ "expires": "" */
631
+ GRPC_MAKE_MDELEM(
632
+ &grpc_static_mdelem_table[35].data(),
633
+ GRPC_MDELEM_STORAGE_STATIC),
634
+ /* GRPC_MDELEM_FROM_EMPTY:
635
+ "from": "" */
636
+ GRPC_MAKE_MDELEM(
637
+ &grpc_static_mdelem_table[36].data(),
638
+ GRPC_MDELEM_STORAGE_STATIC),
639
+ /* GRPC_MDELEM_HOST_EMPTY:
640
+ "host": "" */
641
+ GRPC_MAKE_MDELEM(
642
+ &grpc_static_mdelem_table[37].data(),
643
+ GRPC_MDELEM_STORAGE_STATIC),
644
+ /* GRPC_MDELEM_IF_MATCH_EMPTY:
645
+ "if-match": "" */
646
+ GRPC_MAKE_MDELEM(
647
+ &grpc_static_mdelem_table[38].data(),
648
+ GRPC_MDELEM_STORAGE_STATIC),
649
+ /* GRPC_MDELEM_IF_MODIFIED_SINCE_EMPTY:
650
+ "if-modified-since": "" */
651
+ GRPC_MAKE_MDELEM(
652
+ &grpc_static_mdelem_table[39].data(),
653
+ GRPC_MDELEM_STORAGE_STATIC),
654
+ /* GRPC_MDELEM_IF_NONE_MATCH_EMPTY:
655
+ "if-none-match": "" */
656
+ GRPC_MAKE_MDELEM(
657
+ &grpc_static_mdelem_table[40].data(),
658
+ GRPC_MDELEM_STORAGE_STATIC),
659
+ /* GRPC_MDELEM_IF_RANGE_EMPTY:
660
+ "if-range": "" */
661
+ GRPC_MAKE_MDELEM(
662
+ &grpc_static_mdelem_table[41].data(),
663
+ GRPC_MDELEM_STORAGE_STATIC),
664
+ /* GRPC_MDELEM_IF_UNMODIFIED_SINCE_EMPTY:
665
+ "if-unmodified-since": "" */
666
+ GRPC_MAKE_MDELEM(
667
+ &grpc_static_mdelem_table[42].data(),
668
+ GRPC_MDELEM_STORAGE_STATIC),
669
+ /* GRPC_MDELEM_LAST_MODIFIED_EMPTY:
670
+ "last-modified": "" */
671
+ GRPC_MAKE_MDELEM(
672
+ &grpc_static_mdelem_table[43].data(),
673
+ GRPC_MDELEM_STORAGE_STATIC),
674
+ /* GRPC_MDELEM_LINK_EMPTY:
675
+ "link": "" */
676
+ GRPC_MAKE_MDELEM(
677
+ &grpc_static_mdelem_table[44].data(),
678
+ GRPC_MDELEM_STORAGE_STATIC),
679
+ /* GRPC_MDELEM_LOCATION_EMPTY:
680
+ "location": "" */
681
+ GRPC_MAKE_MDELEM(
682
+ &grpc_static_mdelem_table[45].data(),
683
+ GRPC_MDELEM_STORAGE_STATIC),
684
+ /* GRPC_MDELEM_MAX_FORWARDS_EMPTY:
685
+ "max-forwards": "" */
686
+ GRPC_MAKE_MDELEM(
687
+ &grpc_static_mdelem_table[46].data(),
688
+ GRPC_MDELEM_STORAGE_STATIC),
689
+ /* GRPC_MDELEM_PROXY_AUTHENTICATE_EMPTY:
690
+ "proxy-authenticate": "" */
691
+ GRPC_MAKE_MDELEM(
692
+ &grpc_static_mdelem_table[47].data(),
693
+ GRPC_MDELEM_STORAGE_STATIC),
694
+ /* GRPC_MDELEM_PROXY_AUTHORIZATION_EMPTY:
695
+ "proxy-authorization": "" */
696
+ GRPC_MAKE_MDELEM(
697
+ &grpc_static_mdelem_table[48].data(),
698
+ GRPC_MDELEM_STORAGE_STATIC),
699
+ /* GRPC_MDELEM_RANGE_EMPTY:
700
+ "range": "" */
701
+ GRPC_MAKE_MDELEM(
702
+ &grpc_static_mdelem_table[49].data(),
703
+ GRPC_MDELEM_STORAGE_STATIC),
704
+ /* GRPC_MDELEM_REFERER_EMPTY:
705
+ "referer": "" */
706
+ GRPC_MAKE_MDELEM(
707
+ &grpc_static_mdelem_table[50].data(),
708
+ GRPC_MDELEM_STORAGE_STATIC),
709
+ /* GRPC_MDELEM_REFRESH_EMPTY:
710
+ "refresh": "" */
711
+ GRPC_MAKE_MDELEM(
712
+ &grpc_static_mdelem_table[51].data(),
713
+ GRPC_MDELEM_STORAGE_STATIC),
714
+ /* GRPC_MDELEM_RETRY_AFTER_EMPTY:
715
+ "retry-after": "" */
716
+ GRPC_MAKE_MDELEM(
717
+ &grpc_static_mdelem_table[52].data(),
718
+ GRPC_MDELEM_STORAGE_STATIC),
719
+ /* GRPC_MDELEM_SERVER_EMPTY:
720
+ "server": "" */
721
+ GRPC_MAKE_MDELEM(
722
+ &grpc_static_mdelem_table[53].data(),
723
+ GRPC_MDELEM_STORAGE_STATIC),
724
+ /* GRPC_MDELEM_SET_COOKIE_EMPTY:
725
+ "set-cookie": "" */
726
+ GRPC_MAKE_MDELEM(
727
+ &grpc_static_mdelem_table[54].data(),
728
+ GRPC_MDELEM_STORAGE_STATIC),
729
+ /* GRPC_MDELEM_STRICT_TRANSPORT_SECURITY_EMPTY:
730
+ "strict-transport-security": "" */
731
+ GRPC_MAKE_MDELEM(
732
+ &grpc_static_mdelem_table[55].data(),
733
+ GRPC_MDELEM_STORAGE_STATIC),
734
+ /* GRPC_MDELEM_TRANSFER_ENCODING_EMPTY:
735
+ "transfer-encoding": "" */
736
+ GRPC_MAKE_MDELEM(
737
+ &grpc_static_mdelem_table[56].data(),
738
+ GRPC_MDELEM_STORAGE_STATIC),
739
+ /* GRPC_MDELEM_USER_AGENT_EMPTY:
740
+ "user-agent": "" */
741
+ GRPC_MAKE_MDELEM(
742
+ &grpc_static_mdelem_table[57].data(),
743
+ GRPC_MDELEM_STORAGE_STATIC),
744
+ /* GRPC_MDELEM_VARY_EMPTY:
745
+ "vary": "" */
746
+ GRPC_MAKE_MDELEM(
747
+ &grpc_static_mdelem_table[58].data(),
748
+ GRPC_MDELEM_STORAGE_STATIC),
749
+ /* GRPC_MDELEM_VIA_EMPTY:
750
+ "via": "" */
751
+ GRPC_MAKE_MDELEM(
752
+ &grpc_static_mdelem_table[59].data(),
753
+ GRPC_MDELEM_STORAGE_STATIC),
754
+ /* GRPC_MDELEM_WWW_AUTHENTICATE_EMPTY:
755
+ "www-authenticate": "" */
756
+ GRPC_MAKE_MDELEM(
757
+ &grpc_static_mdelem_table[60].data(),
758
+ GRPC_MDELEM_STORAGE_STATIC),
759
+ /* GRPC_MDELEM_GRPC_STATUS_0:
760
+ "grpc-status": "0" */
761
+ GRPC_MAKE_MDELEM(
762
+ &grpc_static_mdelem_table[61].data(),
763
+ GRPC_MDELEM_STORAGE_STATIC),
764
+ /* GRPC_MDELEM_GRPC_STATUS_1:
765
+ "grpc-status": "1" */
766
+ GRPC_MAKE_MDELEM(
767
+ &grpc_static_mdelem_table[62].data(),
768
+ GRPC_MDELEM_STORAGE_STATIC),
769
+ /* GRPC_MDELEM_GRPC_STATUS_2:
770
+ "grpc-status": "2" */
771
+ GRPC_MAKE_MDELEM(
772
+ &grpc_static_mdelem_table[63].data(),
773
+ GRPC_MDELEM_STORAGE_STATIC),
774
+ /* GRPC_MDELEM_GRPC_ENCODING_IDENTITY:
775
+ "grpc-encoding": "identity" */
776
+ GRPC_MAKE_MDELEM(
777
+ &grpc_static_mdelem_table[64].data(),
778
+ GRPC_MDELEM_STORAGE_STATIC),
779
+ /* GRPC_MDELEM_GRPC_ENCODING_GZIP:
780
+ "grpc-encoding": "gzip" */
781
+ GRPC_MAKE_MDELEM(
782
+ &grpc_static_mdelem_table[65].data(),
783
+ GRPC_MDELEM_STORAGE_STATIC),
784
+ /* GRPC_MDELEM_GRPC_ENCODING_DEFLATE:
785
+ "grpc-encoding": "deflate" */
786
+ GRPC_MAKE_MDELEM(
787
+ &grpc_static_mdelem_table[66].data(),
788
+ GRPC_MDELEM_STORAGE_STATIC),
789
+ /* GRPC_MDELEM_TE_TRAILERS:
790
+ "te": "trailers" */
791
+ GRPC_MAKE_MDELEM(
792
+ &grpc_static_mdelem_table[67].data(),
793
+ GRPC_MDELEM_STORAGE_STATIC),
794
+ /* GRPC_MDELEM_CONTENT_TYPE_APPLICATION_SLASH_GRPC:
795
+ "content-type": "application/grpc" */
796
+ GRPC_MAKE_MDELEM(
797
+ &grpc_static_mdelem_table[68].data(),
798
+ GRPC_MDELEM_STORAGE_STATIC),
799
+ /* GRPC_MDELEM_SCHEME_GRPC:
800
+ ":scheme": "grpc" */
801
+ GRPC_MAKE_MDELEM(
802
+ &grpc_static_mdelem_table[69].data(),
803
+ GRPC_MDELEM_STORAGE_STATIC),
804
+ /* GRPC_MDELEM_METHOD_PUT:
805
+ ":method": "PUT" */
806
+ GRPC_MAKE_MDELEM(
807
+ &grpc_static_mdelem_table[70].data(),
808
+ GRPC_MDELEM_STORAGE_STATIC),
809
+ /* GRPC_MDELEM_ACCEPT_ENCODING_EMPTY:
810
+ "accept-encoding": "" */
811
+ GRPC_MAKE_MDELEM(
812
+ &grpc_static_mdelem_table[71].data(),
813
+ GRPC_MDELEM_STORAGE_STATIC),
814
+ /* GRPC_MDELEM_CONTENT_ENCODING_IDENTITY:
815
+ "content-encoding": "identity" */
816
+ GRPC_MAKE_MDELEM(
817
+ &grpc_static_mdelem_table[72].data(),
818
+ GRPC_MDELEM_STORAGE_STATIC),
819
+ /* GRPC_MDELEM_CONTENT_ENCODING_GZIP:
820
+ "content-encoding": "gzip" */
821
+ GRPC_MAKE_MDELEM(
822
+ &grpc_static_mdelem_table[73].data(),
823
+ GRPC_MDELEM_STORAGE_STATIC),
824
+ /* GRPC_MDELEM_LB_COST_BIN_EMPTY:
825
+ "lb-cost-bin": "" */
826
+ GRPC_MAKE_MDELEM(
827
+ &grpc_static_mdelem_table[74].data(),
828
+ GRPC_MDELEM_STORAGE_STATIC),
829
+ /* GRPC_MDELEM_GRPC_ACCEPT_ENCODING_IDENTITY:
830
+ "grpc-accept-encoding": "identity" */
831
+ GRPC_MAKE_MDELEM(
832
+ &grpc_static_mdelem_table[75].data(),
833
+ GRPC_MDELEM_STORAGE_STATIC),
834
+ /* GRPC_MDELEM_GRPC_ACCEPT_ENCODING_DEFLATE:
835
+ "grpc-accept-encoding": "deflate" */
836
+ GRPC_MAKE_MDELEM(
837
+ &grpc_static_mdelem_table[76].data(),
838
+ GRPC_MDELEM_STORAGE_STATIC),
839
+ /* GRPC_MDELEM_GRPC_ACCEPT_ENCODING_IDENTITY_COMMA_DEFLATE:
840
+ "grpc-accept-encoding": "identity,deflate" */
841
+ GRPC_MAKE_MDELEM(
842
+ &grpc_static_mdelem_table[77].data(),
843
+ GRPC_MDELEM_STORAGE_STATIC),
844
+ /* GRPC_MDELEM_GRPC_ACCEPT_ENCODING_GZIP:
845
+ "grpc-accept-encoding": "gzip" */
846
+ GRPC_MAKE_MDELEM(
847
+ &grpc_static_mdelem_table[78].data(),
848
+ GRPC_MDELEM_STORAGE_STATIC),
849
+ /* GRPC_MDELEM_GRPC_ACCEPT_ENCODING_IDENTITY_COMMA_GZIP:
850
+ "grpc-accept-encoding": "identity,gzip" */
851
+ GRPC_MAKE_MDELEM(
852
+ &grpc_static_mdelem_table[79].data(),
853
+ GRPC_MDELEM_STORAGE_STATIC),
854
+ /* GRPC_MDELEM_GRPC_ACCEPT_ENCODING_DEFLATE_COMMA_GZIP:
855
+ "grpc-accept-encoding": "deflate,gzip" */
856
+ GRPC_MAKE_MDELEM(
857
+ &grpc_static_mdelem_table[80].data(),
858
+ GRPC_MDELEM_STORAGE_STATIC),
859
+ /* GRPC_MDELEM_GRPC_ACCEPT_ENCODING_IDENTITY_COMMA_DEFLATE_COMMA_GZIP:
860
+ "grpc-accept-encoding": "identity,deflate,gzip" */
861
+ GRPC_MAKE_MDELEM(
862
+ &grpc_static_mdelem_table[81].data(),
863
+ GRPC_MDELEM_STORAGE_STATIC),
864
+ /* GRPC_MDELEM_ACCEPT_ENCODING_IDENTITY:
865
+ "accept-encoding": "identity" */
866
+ GRPC_MAKE_MDELEM(
867
+ &grpc_static_mdelem_table[82].data(),
868
+ GRPC_MDELEM_STORAGE_STATIC),
869
+ /* GRPC_MDELEM_ACCEPT_ENCODING_GZIP:
870
+ "accept-encoding": "gzip" */
871
+ GRPC_MAKE_MDELEM(
872
+ &grpc_static_mdelem_table[83].data(),
873
+ GRPC_MDELEM_STORAGE_STATIC),
874
+ /* GRPC_MDELEM_ACCEPT_ENCODING_IDENTITY_COMMA_GZIP:
875
+ "accept-encoding": "identity,gzip" */
876
+ GRPC_MAKE_MDELEM(
877
+ &grpc_static_mdelem_table[84].data(),
878
+ GRPC_MDELEM_STORAGE_STATIC)
879
+ // clang-format on
880
+ };
340
881
  uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
341
882
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
342
883
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
343
884
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
344
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};
885
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};
345
886
 
346
887
  static const int8_t elems_r[] = {
347
- 15, 10, -8, 0, 2, -42, -81, -43, 0, 6, -8, 0, 0, 0, 2,
348
- -3, -10, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0,
349
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
350
- 0, 0, 0, 0, 0, 0, 0, 0, -64, 0, -67, -68, -69, -70, 0,
351
- 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21,
352
- 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6,
353
- 5, 4, 5, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0, -5, 0};
888
+ 15, 10, -8, 0, 2, -42, -80, -43, 0, 6, -8, 0, 0, 0, 2,
889
+ -3, -10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
890
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
891
+ 0, 0, 0, 0, 0, 0, 0, -63, 0, -47, -68, -69, -70, -52, 0,
892
+ 31, 30, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18,
893
+ 18, 17, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5,
894
+ 4, 3, 4, 3, 3, 7, 0, 0, 0, 0, 0, 0, -5, 0};
354
895
  static uint32_t elems_phash(uint32_t i) {
355
- i -= 42;
356
- uint32_t x = i % 105;
357
- uint32_t y = i / 105;
896
+ i -= 41;
897
+ uint32_t x = i % 104;
898
+ uint32_t y = i / 104;
358
899
  uint32_t h = x;
359
900
  if (y < GPR_ARRAY_SIZE(elems_r)) {
360
901
  uint32_t delta = (uint32_t)elems_r[y];
@@ -364,29 +905,28 @@ static uint32_t elems_phash(uint32_t i) {
364
905
  }
365
906
 
366
907
  static const uint16_t elem_keys[] = {
367
- 260, 261, 262, 263, 264, 265, 266, 1107, 1108, 1741, 147, 148,
368
- 472, 473, 1634, 42, 43, 1527, 1750, 1000, 1001, 774, 775, 1643,
369
- 633, 845, 2062, 2169, 2276, 5700, 5914, 6021, 6128, 6235, 1766, 6342,
370
- 6449, 6556, 6663, 6770, 6877, 6984, 7091, 7198, 7305, 7412, 7519, 7626,
371
- 7733, 7840, 7947, 8054, 8161, 8268, 8375, 8482, 8589, 8696, 8803, 8910,
372
- 9017, 9124, 9231, 9338, 9445, 9552, 9659, 1167, 528, 9766, 9873, 208,
373
- 9980, 1173, 1174, 1175, 1176, 1809, 10087, 1060, 10194, 10943, 1702, 0,
374
- 1816, 0, 0, 1597, 0, 0, 350, 0, 0, 0, 0, 0,
375
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
376
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
377
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
378
- 0, 0, 0, 0, 0, 0, 0};
908
+ 257, 258, 259, 260, 261, 262, 263, 1096, 1097, 1724, 145, 146,
909
+ 467, 468, 1618, 41, 42, 1512, 1733, 990, 991, 766, 767, 1627,
910
+ 627, 837, 2042, 2148, 5540, 5858, 5964, 6070, 6282, 6388, 1749, 6494,
911
+ 6600, 6706, 6812, 6918, 7024, 7130, 7236, 7342, 7448, 7554, 7660, 7766,
912
+ 5752, 7872, 7978, 6176, 8084, 8190, 8296, 8402, 8508, 8614, 8720, 8826,
913
+ 8932, 9038, 9144, 9250, 9356, 9462, 9568, 1156, 523, 9674, 9780, 206,
914
+ 9886, 1162, 1163, 1164, 1165, 1792, 9992, 1050, 10734, 0, 1686, 0,
915
+ 1799, 0, 0, 1582, 0, 346, 0, 0, 0, 0, 0, 0,
916
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
917
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
918
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
919
+ 0, 0};
379
920
  static const uint8_t elem_idxs[] = {
380
- 7, 8, 9, 10, 11, 12, 13, 77, 79, 71, 1, 2, 5, 6, 25, 3,
381
- 4, 30, 84, 66, 65, 62, 63, 73, 67, 61, 57, 37, 74, 14, 16, 17,
382
- 18, 19, 15, 20, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34,
383
- 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
384
- 52, 53, 54, 76, 69, 55, 56, 70, 58, 78, 80, 81, 82, 83, 59, 64,
385
- 60, 75, 72, 255, 85, 255, 255, 68, 255, 255, 0};
921
+ 7, 8, 9, 10, 11, 12, 13, 76, 78, 71, 1, 2, 5, 6, 25, 3, 4, 30,
922
+ 83, 66, 65, 62, 63, 73, 67, 61, 57, 37, 14, 17, 18, 19, 21, 22, 15, 23,
923
+ 24, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 38, 16, 39, 40, 20, 41, 42,
924
+ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 75, 69, 56, 58, 70,
925
+ 59, 77, 79, 80, 81, 82, 60, 64, 74, 255, 72, 255, 84, 255, 255, 68, 255, 0};
386
926
 
387
927
  grpc_mdelem grpc_static_mdelem_for_static_strings(intptr_t a, intptr_t b) {
388
928
  if (a == -1 || b == -1) return GRPC_MDNULL;
389
- uint32_t k = static_cast<uint32_t>(a * 107 + b);
929
+ uint32_t k = static_cast<uint32_t>(a * 106 + b);
390
930
  uint32_t h = elems_phash(k);
391
931
  return h < GPR_ARRAY_SIZE(elem_keys) && elem_keys[h] == k &&
392
932
  elem_idxs[h] != 255
@@ -397,265 +937,517 @@ grpc_mdelem grpc_static_mdelem_for_static_strings(intptr_t a, intptr_t b) {
397
937
 
398
938
  grpc_core::StaticMetadata grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
399
939
  grpc_core::StaticMetadata(
400
- {&grpc_static_metadata_refcounts[3], {{10, g_bytes + 19}}},
401
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
402
- grpc_core::StaticMetadata(
403
- {&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
404
- {&grpc_static_metadata_refcounts[40], {{3, g_bytes + 612}}}),
405
- grpc_core::StaticMetadata(
406
- {&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
407
- {&grpc_static_metadata_refcounts[41], {{4, g_bytes + 615}}}),
408
- grpc_core::StaticMetadata(
409
- {&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
410
- {&grpc_static_metadata_refcounts[42], {{1, g_bytes + 619}}}),
411
- grpc_core::StaticMetadata(
412
- {&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
413
- {&grpc_static_metadata_refcounts[43], {{11, g_bytes + 620}}}),
414
- grpc_core::StaticMetadata(
415
- {&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
416
- {&grpc_static_metadata_refcounts[44], {{4, g_bytes + 631}}}),
417
- grpc_core::StaticMetadata(
418
- {&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
419
- {&grpc_static_metadata_refcounts[45], {{5, g_bytes + 635}}}),
420
- grpc_core::StaticMetadata(
421
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
422
- {&grpc_static_metadata_refcounts[46], {{3, g_bytes + 640}}}),
423
- grpc_core::StaticMetadata(
424
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
425
- {&grpc_static_metadata_refcounts[47], {{3, g_bytes + 643}}}),
426
- grpc_core::StaticMetadata(
427
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
428
- {&grpc_static_metadata_refcounts[48], {{3, g_bytes + 646}}}),
429
- grpc_core::StaticMetadata(
430
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
431
- {&grpc_static_metadata_refcounts[49], {{3, g_bytes + 649}}}),
432
- grpc_core::StaticMetadata(
433
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
434
- {&grpc_static_metadata_refcounts[50], {{3, g_bytes + 652}}}),
435
- grpc_core::StaticMetadata(
436
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
437
- {&grpc_static_metadata_refcounts[51], {{3, g_bytes + 655}}}),
438
- grpc_core::StaticMetadata(
439
- {&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
440
- {&grpc_static_metadata_refcounts[52], {{3, g_bytes + 658}}}),
441
- grpc_core::StaticMetadata(
442
- {&grpc_static_metadata_refcounts[53], {{14, g_bytes + 661}}},
443
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
444
- grpc_core::StaticMetadata(
445
- {&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
446
- {&grpc_static_metadata_refcounts[54], {{13, g_bytes + 675}}}),
447
- grpc_core::StaticMetadata(
448
- {&grpc_static_metadata_refcounts[55], {{15, g_bytes + 688}}},
449
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
450
- grpc_core::StaticMetadata(
451
- {&grpc_static_metadata_refcounts[56], {{13, g_bytes + 703}}},
452
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
453
- grpc_core::StaticMetadata(
454
- {&grpc_static_metadata_refcounts[57], {{6, g_bytes + 716}}},
455
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
456
- grpc_core::StaticMetadata(
457
- {&grpc_static_metadata_refcounts[58], {{27, g_bytes + 722}}},
458
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
459
- grpc_core::StaticMetadata(
460
- {&grpc_static_metadata_refcounts[59], {{3, g_bytes + 749}}},
461
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
462
- grpc_core::StaticMetadata(
463
- {&grpc_static_metadata_refcounts[60], {{5, g_bytes + 752}}},
464
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
465
- grpc_core::StaticMetadata(
466
- {&grpc_static_metadata_refcounts[61], {{13, g_bytes + 757}}},
467
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
468
- grpc_core::StaticMetadata(
469
- {&grpc_static_metadata_refcounts[62], {{13, g_bytes + 770}}},
470
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
471
- grpc_core::StaticMetadata(
472
- {&grpc_static_metadata_refcounts[63], {{19, g_bytes + 783}}},
473
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
474
- grpc_core::StaticMetadata(
475
- {&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
476
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
477
- grpc_core::StaticMetadata(
478
- {&grpc_static_metadata_refcounts[64], {{16, g_bytes + 802}}},
479
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
480
- grpc_core::StaticMetadata(
481
- {&grpc_static_metadata_refcounts[65], {{14, g_bytes + 818}}},
482
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
483
- grpc_core::StaticMetadata(
484
- {&grpc_static_metadata_refcounts[66], {{16, g_bytes + 832}}},
485
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
486
- grpc_core::StaticMetadata(
487
- {&grpc_static_metadata_refcounts[67], {{13, g_bytes + 848}}},
488
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
489
- grpc_core::StaticMetadata(
490
- {&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
491
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
492
- grpc_core::StaticMetadata(
493
- {&grpc_static_metadata_refcounts[68], {{6, g_bytes + 861}}},
494
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
495
- grpc_core::StaticMetadata(
496
- {&grpc_static_metadata_refcounts[69], {{4, g_bytes + 867}}},
497
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
498
- grpc_core::StaticMetadata(
499
- {&grpc_static_metadata_refcounts[70], {{4, g_bytes + 871}}},
500
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
501
- grpc_core::StaticMetadata(
502
- {&grpc_static_metadata_refcounts[71], {{6, g_bytes + 875}}},
503
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
504
- grpc_core::StaticMetadata(
505
- {&grpc_static_metadata_refcounts[72], {{7, g_bytes + 881}}},
506
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
507
- grpc_core::StaticMetadata(
508
- {&grpc_static_metadata_refcounts[73], {{4, g_bytes + 888}}},
509
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
510
- grpc_core::StaticMetadata(
511
- {&grpc_static_metadata_refcounts[20], {{4, g_bytes + 278}}},
512
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
513
- grpc_core::StaticMetadata(
514
- {&grpc_static_metadata_refcounts[74], {{8, g_bytes + 892}}},
515
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
516
- grpc_core::StaticMetadata(
517
- {&grpc_static_metadata_refcounts[75], {{17, g_bytes + 900}}},
518
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
519
- grpc_core::StaticMetadata(
520
- {&grpc_static_metadata_refcounts[76], {{13, g_bytes + 917}}},
521
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
522
- grpc_core::StaticMetadata(
523
- {&grpc_static_metadata_refcounts[77], {{8, g_bytes + 930}}},
524
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
525
- grpc_core::StaticMetadata(
526
- {&grpc_static_metadata_refcounts[78], {{19, g_bytes + 938}}},
527
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
528
- grpc_core::StaticMetadata(
529
- {&grpc_static_metadata_refcounts[79], {{13, g_bytes + 957}}},
530
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
531
- grpc_core::StaticMetadata(
532
- {&grpc_static_metadata_refcounts[80], {{4, g_bytes + 970}}},
533
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
534
- grpc_core::StaticMetadata(
535
- {&grpc_static_metadata_refcounts[81], {{8, g_bytes + 974}}},
536
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
537
- grpc_core::StaticMetadata(
538
- {&grpc_static_metadata_refcounts[82], {{12, g_bytes + 982}}},
539
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
540
- grpc_core::StaticMetadata(
541
- {&grpc_static_metadata_refcounts[83], {{18, g_bytes + 994}}},
542
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
543
- grpc_core::StaticMetadata(
544
- {&grpc_static_metadata_refcounts[84], {{19, g_bytes + 1012}}},
545
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
546
- grpc_core::StaticMetadata(
547
- {&grpc_static_metadata_refcounts[85], {{5, g_bytes + 1031}}},
548
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
549
- grpc_core::StaticMetadata(
550
- {&grpc_static_metadata_refcounts[86], {{7, g_bytes + 1036}}},
551
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
552
- grpc_core::StaticMetadata(
553
- {&grpc_static_metadata_refcounts[87], {{7, g_bytes + 1043}}},
554
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
555
- grpc_core::StaticMetadata(
556
- {&grpc_static_metadata_refcounts[88], {{11, g_bytes + 1050}}},
557
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
558
- grpc_core::StaticMetadata(
559
- {&grpc_static_metadata_refcounts[89], {{6, g_bytes + 1061}}},
560
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
561
- grpc_core::StaticMetadata(
562
- {&grpc_static_metadata_refcounts[90], {{10, g_bytes + 1067}}},
563
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
564
- grpc_core::StaticMetadata(
565
- {&grpc_static_metadata_refcounts[91], {{25, g_bytes + 1077}}},
566
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
567
- grpc_core::StaticMetadata(
568
- {&grpc_static_metadata_refcounts[92], {{17, g_bytes + 1102}}},
569
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
570
- grpc_core::StaticMetadata(
571
- {&grpc_static_metadata_refcounts[19], {{10, g_bytes + 268}}},
572
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
573
- grpc_core::StaticMetadata(
574
- {&grpc_static_metadata_refcounts[93], {{4, g_bytes + 1119}}},
575
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
576
- grpc_core::StaticMetadata(
577
- {&grpc_static_metadata_refcounts[94], {{3, g_bytes + 1123}}},
578
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
579
- grpc_core::StaticMetadata(
580
- {&grpc_static_metadata_refcounts[95], {{16, g_bytes + 1126}}},
581
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
582
- grpc_core::StaticMetadata(
583
- {&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
584
- {&grpc_static_metadata_refcounts[96], {{1, g_bytes + 1142}}}),
585
- grpc_core::StaticMetadata(
586
- {&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
587
- {&grpc_static_metadata_refcounts[25], {{1, g_bytes + 350}}}),
588
- grpc_core::StaticMetadata(
589
- {&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
590
- {&grpc_static_metadata_refcounts[26], {{1, g_bytes + 351}}}),
591
- grpc_core::StaticMetadata(
592
- {&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
593
- {&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
594
- grpc_core::StaticMetadata(
595
- {&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
596
- {&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
597
- grpc_core::StaticMetadata(
598
- {&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
599
- {&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}}),
600
- grpc_core::StaticMetadata(
601
- {&grpc_static_metadata_refcounts[5], {{2, g_bytes + 36}}},
602
- {&grpc_static_metadata_refcounts[98], {{8, g_bytes + 1151}}}),
603
- grpc_core::StaticMetadata(
604
- {&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
605
- {&grpc_static_metadata_refcounts[99], {{16, g_bytes + 1159}}}),
606
- grpc_core::StaticMetadata(
607
- {&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
608
- {&grpc_static_metadata_refcounts[100], {{4, g_bytes + 1175}}}),
609
- grpc_core::StaticMetadata(
610
- {&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
611
- {&grpc_static_metadata_refcounts[101], {{3, g_bytes + 1179}}}),
612
- grpc_core::StaticMetadata(
613
- {&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
614
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
615
- grpc_core::StaticMetadata(
616
- {&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
617
- {&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
618
- grpc_core::StaticMetadata(
619
- {&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
620
- {&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
621
- grpc_core::StaticMetadata(
622
- {&grpc_static_metadata_refcounts[21], {{8, g_bytes + 282}}},
623
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
624
- grpc_core::StaticMetadata(
625
- {&grpc_static_metadata_refcounts[102], {{11, g_bytes + 1182}}},
626
- {&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}),
627
- grpc_core::StaticMetadata(
628
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
629
- {&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
630
- grpc_core::StaticMetadata(
631
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
632
- {&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}}),
633
- grpc_core::StaticMetadata(
634
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
635
- {&grpc_static_metadata_refcounts[103], {{16, g_bytes + 1193}}}),
636
- grpc_core::StaticMetadata(
637
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
638
- {&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
639
- grpc_core::StaticMetadata(
640
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
641
- {&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}}),
642
- grpc_core::StaticMetadata(
643
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
644
- {&grpc_static_metadata_refcounts[105], {{12, g_bytes + 1222}}}),
645
- grpc_core::StaticMetadata(
646
- {&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
647
- {&grpc_static_metadata_refcounts[106], {{21, g_bytes + 1234}}}),
648
- grpc_core::StaticMetadata(
649
- {&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
650
- {&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}),
651
- grpc_core::StaticMetadata(
652
- {&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
653
- {&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}),
654
- grpc_core::StaticMetadata(
655
- {&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
656
- {&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}}),
940
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[3], 10,
941
+ g_bytes + 19),
942
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
943
+ g_bytes + 346),
944
+ 0),
945
+ grpc_core::StaticMetadata(
946
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[1], 7,
947
+ g_bytes + 5),
948
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[39], 3,
949
+ g_bytes + 604),
950
+ 1),
951
+ grpc_core::StaticMetadata(
952
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[1], 7,
953
+ g_bytes + 5),
954
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[40], 4,
955
+ g_bytes + 607),
956
+ 2),
957
+ grpc_core::StaticMetadata(
958
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[0], 5,
959
+ g_bytes + 0),
960
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[41], 1,
961
+ g_bytes + 611),
962
+ 3),
963
+ grpc_core::StaticMetadata(
964
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[0], 5,
965
+ g_bytes + 0),
966
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[42], 11,
967
+ g_bytes + 612),
968
+ 4),
969
+ grpc_core::StaticMetadata(
970
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[4], 7,
971
+ g_bytes + 29),
972
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[43], 4,
973
+ g_bytes + 623),
974
+ 5),
975
+ grpc_core::StaticMetadata(
976
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[4], 7,
977
+ g_bytes + 29),
978
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[44], 5,
979
+ g_bytes + 627),
980
+ 6),
981
+ grpc_core::StaticMetadata(
982
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
983
+ g_bytes + 12),
984
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[45], 3,
985
+ g_bytes + 632),
986
+ 7),
987
+ grpc_core::StaticMetadata(
988
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
989
+ g_bytes + 12),
990
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[46], 3,
991
+ g_bytes + 635),
992
+ 8),
993
+ grpc_core::StaticMetadata(
994
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
995
+ g_bytes + 12),
996
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[47], 3,
997
+ g_bytes + 638),
998
+ 9),
999
+ grpc_core::StaticMetadata(
1000
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
1001
+ g_bytes + 12),
1002
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[48], 3,
1003
+ g_bytes + 641),
1004
+ 10),
1005
+ grpc_core::StaticMetadata(
1006
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
1007
+ g_bytes + 12),
1008
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[49], 3,
1009
+ g_bytes + 644),
1010
+ 11),
1011
+ grpc_core::StaticMetadata(
1012
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
1013
+ g_bytes + 12),
1014
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[50], 3,
1015
+ g_bytes + 647),
1016
+ 12),
1017
+ grpc_core::StaticMetadata(
1018
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[2], 7,
1019
+ g_bytes + 12),
1020
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[51], 3,
1021
+ g_bytes + 650),
1022
+ 13),
1023
+ grpc_core::StaticMetadata(
1024
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[52], 14,
1025
+ g_bytes + 653),
1026
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1027
+ g_bytes + 346),
1028
+ 14),
1029
+ grpc_core::StaticMetadata(
1030
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[16], 15,
1031
+ g_bytes + 186),
1032
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[53], 13,
1033
+ g_bytes + 667),
1034
+ 15),
1035
+ grpc_core::StaticMetadata(
1036
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[54], 15,
1037
+ g_bytes + 680),
1038
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1039
+ g_bytes + 346),
1040
+ 16),
1041
+ grpc_core::StaticMetadata(
1042
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[55], 13,
1043
+ g_bytes + 695),
1044
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1045
+ g_bytes + 346),
1046
+ 17),
1047
+ grpc_core::StaticMetadata(
1048
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[56], 6,
1049
+ g_bytes + 708),
1050
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1051
+ g_bytes + 346),
1052
+ 18),
1053
+ grpc_core::StaticMetadata(
1054
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[57], 27,
1055
+ g_bytes + 714),
1056
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1057
+ g_bytes + 346),
1058
+ 19),
1059
+ grpc_core::StaticMetadata(
1060
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[58], 3,
1061
+ g_bytes + 741),
1062
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1063
+ g_bytes + 346),
1064
+ 20),
1065
+ grpc_core::StaticMetadata(
1066
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[59], 5,
1067
+ g_bytes + 744),
1068
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1069
+ g_bytes + 346),
1070
+ 21),
1071
+ grpc_core::StaticMetadata(
1072
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[60], 13,
1073
+ g_bytes + 749),
1074
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1075
+ g_bytes + 346),
1076
+ 22),
1077
+ grpc_core::StaticMetadata(
1078
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[61], 13,
1079
+ g_bytes + 762),
1080
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1081
+ g_bytes + 346),
1082
+ 23),
1083
+ grpc_core::StaticMetadata(
1084
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[62], 19,
1085
+ g_bytes + 775),
1086
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1087
+ g_bytes + 346),
1088
+ 24),
1089
+ grpc_core::StaticMetadata(
1090
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[15], 16,
1091
+ g_bytes + 170),
1092
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1093
+ g_bytes + 346),
1094
+ 25),
1095
+ grpc_core::StaticMetadata(
1096
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[63], 16,
1097
+ g_bytes + 794),
1098
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1099
+ g_bytes + 346),
1100
+ 26),
1101
+ grpc_core::StaticMetadata(
1102
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[64], 14,
1103
+ g_bytes + 810),
1104
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1105
+ g_bytes + 346),
1106
+ 27),
1107
+ grpc_core::StaticMetadata(
1108
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[65], 16,
1109
+ g_bytes + 824),
1110
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1111
+ g_bytes + 346),
1112
+ 28),
1113
+ grpc_core::StaticMetadata(
1114
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[66], 13,
1115
+ g_bytes + 840),
1116
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1117
+ g_bytes + 346),
1118
+ 29),
1119
+ grpc_core::StaticMetadata(
1120
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[14], 12,
1121
+ g_bytes + 158),
1122
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1123
+ g_bytes + 346),
1124
+ 30),
1125
+ grpc_core::StaticMetadata(
1126
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[67], 6,
1127
+ g_bytes + 853),
1128
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1129
+ g_bytes + 346),
1130
+ 31),
1131
+ grpc_core::StaticMetadata(
1132
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[68], 4,
1133
+ g_bytes + 859),
1134
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1135
+ g_bytes + 346),
1136
+ 32),
1137
+ grpc_core::StaticMetadata(
1138
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[69], 4,
1139
+ g_bytes + 863),
1140
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1141
+ g_bytes + 346),
1142
+ 33),
1143
+ grpc_core::StaticMetadata(
1144
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[70], 6,
1145
+ g_bytes + 867),
1146
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1147
+ g_bytes + 346),
1148
+ 34),
1149
+ grpc_core::StaticMetadata(
1150
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[71], 7,
1151
+ g_bytes + 873),
1152
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1153
+ g_bytes + 346),
1154
+ 35),
1155
+ grpc_core::StaticMetadata(
1156
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[72], 4,
1157
+ g_bytes + 880),
1158
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1159
+ g_bytes + 346),
1160
+ 36),
1161
+ grpc_core::StaticMetadata(
1162
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[20], 4,
1163
+ g_bytes + 278),
1164
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1165
+ g_bytes + 346),
1166
+ 37),
1167
+ grpc_core::StaticMetadata(
1168
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[73], 8,
1169
+ g_bytes + 884),
1170
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1171
+ g_bytes + 346),
1172
+ 38),
1173
+ grpc_core::StaticMetadata(
1174
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[74], 17,
1175
+ g_bytes + 892),
1176
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1177
+ g_bytes + 346),
1178
+ 39),
1179
+ grpc_core::StaticMetadata(
1180
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[75], 13,
1181
+ g_bytes + 909),
1182
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1183
+ g_bytes + 346),
1184
+ 40),
1185
+ grpc_core::StaticMetadata(
1186
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[76], 8,
1187
+ g_bytes + 922),
1188
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1189
+ g_bytes + 346),
1190
+ 41),
1191
+ grpc_core::StaticMetadata(
1192
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[77], 19,
1193
+ g_bytes + 930),
1194
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1195
+ g_bytes + 346),
1196
+ 42),
1197
+ grpc_core::StaticMetadata(
1198
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[78], 13,
1199
+ g_bytes + 949),
1200
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1201
+ g_bytes + 346),
1202
+ 43),
1203
+ grpc_core::StaticMetadata(
1204
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[79], 4,
1205
+ g_bytes + 962),
1206
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1207
+ g_bytes + 346),
1208
+ 44),
1209
+ grpc_core::StaticMetadata(
1210
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[80], 8,
1211
+ g_bytes + 966),
1212
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1213
+ g_bytes + 346),
1214
+ 45),
1215
+ grpc_core::StaticMetadata(
1216
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[81], 12,
1217
+ g_bytes + 974),
1218
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1219
+ g_bytes + 346),
1220
+ 46),
1221
+ grpc_core::StaticMetadata(
1222
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[82], 18,
1223
+ g_bytes + 986),
1224
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1225
+ g_bytes + 346),
1226
+ 47),
1227
+ grpc_core::StaticMetadata(
1228
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[83], 19,
1229
+ g_bytes + 1004),
1230
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1231
+ g_bytes + 346),
1232
+ 48),
1233
+ grpc_core::StaticMetadata(
1234
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[84], 5,
1235
+ g_bytes + 1023),
1236
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1237
+ g_bytes + 346),
1238
+ 49),
1239
+ grpc_core::StaticMetadata(
1240
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[85], 7,
1241
+ g_bytes + 1028),
1242
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1243
+ g_bytes + 346),
1244
+ 50),
1245
+ grpc_core::StaticMetadata(
1246
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[86], 7,
1247
+ g_bytes + 1035),
1248
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1249
+ g_bytes + 346),
1250
+ 51),
1251
+ grpc_core::StaticMetadata(
1252
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[87], 11,
1253
+ g_bytes + 1042),
1254
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1255
+ g_bytes + 346),
1256
+ 52),
1257
+ grpc_core::StaticMetadata(
1258
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[88], 6,
1259
+ g_bytes + 1053),
1260
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1261
+ g_bytes + 346),
1262
+ 53),
1263
+ grpc_core::StaticMetadata(
1264
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[89], 10,
1265
+ g_bytes + 1059),
1266
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1267
+ g_bytes + 346),
1268
+ 54),
1269
+ grpc_core::StaticMetadata(
1270
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[90], 25,
1271
+ g_bytes + 1069),
1272
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1273
+ g_bytes + 346),
1274
+ 55),
1275
+ grpc_core::StaticMetadata(
1276
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[91], 17,
1277
+ g_bytes + 1094),
1278
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1279
+ g_bytes + 346),
1280
+ 56),
1281
+ grpc_core::StaticMetadata(
1282
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[19], 10,
1283
+ g_bytes + 268),
1284
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1285
+ g_bytes + 346),
1286
+ 57),
1287
+ grpc_core::StaticMetadata(
1288
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[92], 4,
1289
+ g_bytes + 1111),
1290
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1291
+ g_bytes + 346),
1292
+ 58),
1293
+ grpc_core::StaticMetadata(
1294
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[93], 3,
1295
+ g_bytes + 1115),
1296
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1297
+ g_bytes + 346),
1298
+ 59),
1299
+ grpc_core::StaticMetadata(
1300
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[94], 16,
1301
+ g_bytes + 1118),
1302
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1303
+ g_bytes + 346),
1304
+ 60),
1305
+ grpc_core::StaticMetadata(
1306
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[7], 11,
1307
+ g_bytes + 50),
1308
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[95], 1,
1309
+ g_bytes + 1134),
1310
+ 61),
1311
+ grpc_core::StaticMetadata(
1312
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[7], 11,
1313
+ g_bytes + 50),
1314
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[24], 1,
1315
+ g_bytes + 342),
1316
+ 62),
1317
+ grpc_core::StaticMetadata(
1318
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[7], 11,
1319
+ g_bytes + 50),
1320
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[25], 1,
1321
+ g_bytes + 343),
1322
+ 63),
1323
+ grpc_core::StaticMetadata(
1324
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[9], 13,
1325
+ g_bytes + 77),
1326
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[96], 8,
1327
+ g_bytes + 1135),
1328
+ 64),
1329
+ grpc_core::StaticMetadata(
1330
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[9], 13,
1331
+ g_bytes + 77),
1332
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[37], 4,
1333
+ g_bytes + 589),
1334
+ 65),
1335
+ grpc_core::StaticMetadata(
1336
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[9], 13,
1337
+ g_bytes + 77),
1338
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[36], 7,
1339
+ g_bytes + 582),
1340
+ 66),
1341
+ grpc_core::StaticMetadata(
1342
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[5], 2,
1343
+ g_bytes + 36),
1344
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[97], 8,
1345
+ g_bytes + 1143),
1346
+ 67),
1347
+ grpc_core::StaticMetadata(
1348
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[14], 12,
1349
+ g_bytes + 158),
1350
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[98], 16,
1351
+ g_bytes + 1151),
1352
+ 68),
1353
+ grpc_core::StaticMetadata(
1354
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[4], 7,
1355
+ g_bytes + 29),
1356
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[99], 4,
1357
+ g_bytes + 1167),
1358
+ 69),
1359
+ grpc_core::StaticMetadata(
1360
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[1], 7,
1361
+ g_bytes + 5),
1362
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[100], 3,
1363
+ g_bytes + 1171),
1364
+ 70),
1365
+ grpc_core::StaticMetadata(
1366
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[16], 15,
1367
+ g_bytes + 186),
1368
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1369
+ g_bytes + 346),
1370
+ 71),
1371
+ grpc_core::StaticMetadata(
1372
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[15], 16,
1373
+ g_bytes + 170),
1374
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[96], 8,
1375
+ g_bytes + 1135),
1376
+ 72),
1377
+ grpc_core::StaticMetadata(
1378
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[15], 16,
1379
+ g_bytes + 170),
1380
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[37], 4,
1381
+ g_bytes + 589),
1382
+ 73),
1383
+ grpc_core::StaticMetadata(
1384
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[101], 11,
1385
+ g_bytes + 1174),
1386
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[28], 0,
1387
+ g_bytes + 346),
1388
+ 74),
1389
+ grpc_core::StaticMetadata(
1390
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
1391
+ g_bytes + 90),
1392
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[96], 8,
1393
+ g_bytes + 1135),
1394
+ 75),
1395
+ grpc_core::StaticMetadata(
1396
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
1397
+ g_bytes + 90),
1398
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[36], 7,
1399
+ g_bytes + 582),
1400
+ 76),
1401
+ grpc_core::StaticMetadata(
1402
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
1403
+ g_bytes + 90),
1404
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[102], 16,
1405
+ g_bytes + 1185),
1406
+ 77),
1407
+ grpc_core::StaticMetadata(
1408
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
1409
+ g_bytes + 90),
1410
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[37], 4,
1411
+ g_bytes + 589),
1412
+ 78),
1413
+ grpc_core::StaticMetadata(
1414
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
1415
+ g_bytes + 90),
1416
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[103], 13,
1417
+ g_bytes + 1201),
1418
+ 79),
1419
+ grpc_core::StaticMetadata(
1420
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
1421
+ g_bytes + 90),
1422
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[104], 12,
1423
+ g_bytes + 1214),
1424
+ 80),
1425
+ grpc_core::StaticMetadata(
1426
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[10], 20,
1427
+ g_bytes + 90),
1428
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[105], 21,
1429
+ g_bytes + 1226),
1430
+ 81),
1431
+ grpc_core::StaticMetadata(
1432
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[16], 15,
1433
+ g_bytes + 186),
1434
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[96], 8,
1435
+ g_bytes + 1135),
1436
+ 82),
1437
+ grpc_core::StaticMetadata(
1438
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[16], 15,
1439
+ g_bytes + 186),
1440
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[37], 4,
1441
+ g_bytes + 589),
1442
+ 83),
1443
+ grpc_core::StaticMetadata(
1444
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[16], 15,
1445
+ g_bytes + 186),
1446
+ grpc_core::StaticMetadataSlice(&grpc_static_metadata_refcounts[103], 13,
1447
+ g_bytes + 1201),
1448
+ 84),
657
1449
  };
658
- const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,
659
- 79, 80, 81, 82};
1450
+ const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 75, 76, 77,
1451
+ 78, 79, 80, 81};
660
1452
 
661
- const uint8_t grpc_static_accept_stream_encoding_metadata[4] = {0, 83, 84, 85};
1453
+ const uint8_t grpc_static_accept_stream_encoding_metadata[4] = {0, 82, 83, 84};