grpc 1.16.0 → 1.17.0.pre1

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

Potentially problematic release.


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

Files changed (173) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +299 -133
  3. data/include/grpc/grpc.h +11 -1
  4. data/include/grpc/grpc_posix.h +0 -8
  5. data/include/grpc/impl/codegen/grpc_types.h +3 -0
  6. data/src/core/ext/filters/client_channel/client_channel.cc +336 -345
  7. data/src/core/ext/filters/client_channel/client_channel.h +6 -2
  8. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +3 -1
  9. data/src/core/ext/filters/client_channel/client_channel_channelz.h +0 -7
  10. data/src/core/ext/filters/client_channel/health/health.pb.c +23 -0
  11. data/src/core/ext/filters/client_channel/health/health.pb.h +73 -0
  12. data/src/core/ext/filters/client_channel/health/health_check_client.cc +652 -0
  13. data/src/core/ext/filters/client_channel/health/health_check_client.h +173 -0
  14. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +2 -1
  15. data/src/core/ext/filters/client_channel/http_proxy.cc +1 -1
  16. data/src/core/ext/filters/client_channel/lb_policy.h +17 -14
  17. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +15 -11
  18. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +21 -15
  19. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +18 -10
  20. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +12 -9
  21. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +19 -8
  22. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +1832 -0
  23. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +36 -0
  24. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h +36 -0
  25. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc +107 -0
  26. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.cc +85 -0
  27. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h +72 -0
  28. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.cc +307 -0
  29. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +89 -0
  30. data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -1
  31. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +5 -0
  32. data/src/core/ext/filters/client_channel/lb_policy_registry.h +4 -0
  33. data/src/core/ext/filters/client_channel/parse_address.h +1 -1
  34. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +19 -22
  35. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +41 -39
  36. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -2
  37. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +4 -1
  38. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +15 -2
  39. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +5 -1
  40. data/src/core/ext/filters/client_channel/resolver_factory.h +1 -1
  41. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +384 -0
  42. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +146 -0
  43. data/src/core/ext/filters/client_channel/subchannel.cc +361 -103
  44. data/src/core/ext/filters/client_channel/subchannel.h +14 -8
  45. data/src/core/ext/filters/deadline/deadline_filter.cc +19 -23
  46. data/src/core/ext/filters/deadline/deadline_filter.h +9 -13
  47. data/src/core/ext/filters/http/client/http_client_filter.cc +29 -19
  48. data/src/core/ext/filters/http/client_authority_filter.cc +2 -3
  49. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +28 -16
  50. data/src/core/ext/filters/http/server/http_server_filter.cc +31 -20
  51. data/src/core/ext/filters/message_size/message_size_filter.cc +50 -45
  52. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +13 -6
  53. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +1 -1
  54. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +58 -8
  55. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +1 -1
  56. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +175 -173
  57. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +2 -1
  58. data/src/core/ext/transport/chttp2/transport/frame_data.cc +4 -10
  59. data/src/core/ext/transport/chttp2/transport/frame_data.h +10 -12
  60. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +1 -1
  61. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +28 -25
  62. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +0 -12
  63. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +12 -9
  64. data/src/core/ext/transport/chttp2/transport/internal.h +109 -94
  65. data/src/core/ext/transport/chttp2/transport/parsing.cc +4 -2
  66. data/src/core/ext/transport/inproc/inproc_transport.cc +280 -300
  67. data/src/core/lib/channel/channel_stack.cc +5 -4
  68. data/src/core/lib/channel/channel_stack.h +4 -4
  69. data/src/core/lib/channel/channel_stack_builder.cc +14 -2
  70. data/src/core/lib/channel/channel_stack_builder.h +8 -0
  71. data/src/core/lib/channel/channel_trace.cc +6 -2
  72. data/src/core/lib/channel/channelz.cc +137 -5
  73. data/src/core/lib/channel/channelz.h +32 -6
  74. data/src/core/lib/channel/channelz_registry.cc +134 -28
  75. data/src/core/lib/channel/channelz_registry.h +25 -3
  76. data/src/core/lib/channel/context.h +4 -4
  77. data/src/core/lib/channel/handshaker.cc +7 -6
  78. data/src/core/lib/channel/handshaker.h +7 -8
  79. data/src/core/lib/channel/handshaker_factory.cc +3 -2
  80. data/src/core/lib/channel/handshaker_factory.h +2 -0
  81. data/src/core/lib/channel/handshaker_registry.cc +6 -2
  82. data/src/core/lib/channel/handshaker_registry.h +1 -0
  83. data/src/core/lib/gpr/arena.cc +84 -37
  84. data/src/core/lib/gpr/arena.h +2 -0
  85. data/src/core/lib/gpr/mpscq.h +4 -2
  86. data/src/core/lib/gprpp/inlined_vector.h +8 -0
  87. data/src/core/lib/gprpp/ref_counted.h +105 -18
  88. data/src/core/lib/gprpp/ref_counted_ptr.h +11 -0
  89. data/src/core/lib/http/httpcli_security_connector.cc +7 -4
  90. data/src/core/lib/iomgr/call_combiner.cc +2 -0
  91. data/src/core/lib/iomgr/call_combiner.h +2 -2
  92. data/src/core/lib/iomgr/closure.h +1 -0
  93. data/src/core/lib/iomgr/error.cc +16 -31
  94. data/src/core/lib/iomgr/error.h +29 -4
  95. data/src/core/lib/iomgr/error_internal.h +0 -2
  96. data/src/core/lib/iomgr/ev_epoll1_linux.cc +7 -3
  97. data/src/core/lib/iomgr/ev_posix.cc +0 -2
  98. data/src/core/lib/iomgr/polling_entity.h +4 -4
  99. data/src/core/lib/iomgr/resource_quota.cc +64 -10
  100. data/src/core/lib/iomgr/resource_quota.h +21 -6
  101. data/src/core/lib/iomgr/socket_utils_common_posix.cc +11 -5
  102. data/src/core/lib/iomgr/tcp_client_custom.cc +14 -3
  103. data/src/core/lib/iomgr/tcp_client_posix.cc +2 -0
  104. data/src/core/lib/iomgr/tcp_posix.cc +4 -2
  105. data/src/core/lib/iomgr/timer_manager.cc +1 -1
  106. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +3 -4
  107. data/src/core/lib/security/context/security_context.cc +20 -13
  108. data/src/core/lib/security/context/security_context.h +27 -19
  109. data/src/core/lib/security/credentials/alts/alts_credentials.cc +1 -1
  110. data/src/core/lib/security/credentials/credentials.h +2 -2
  111. data/src/core/lib/security/credentials/fake/fake_credentials.cc +1 -0
  112. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +39 -54
  113. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +3 -2
  114. data/src/core/lib/security/credentials/local/local_credentials.cc +1 -1
  115. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +1 -2
  116. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +2 -0
  117. data/src/core/lib/security/security_connector/{alts_security_connector.cc → alts/alts_security_connector.cc} +10 -9
  118. data/src/core/lib/security/security_connector/{alts_security_connector.h → alts/alts_security_connector.h} +3 -3
  119. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +310 -0
  120. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +42 -0
  121. data/src/core/lib/security/security_connector/{local_security_connector.cc → local/local_security_connector.cc} +4 -3
  122. data/src/core/lib/security/security_connector/{local_security_connector.h → local/local_security_connector.h} +3 -3
  123. data/src/core/lib/security/security_connector/security_connector.cc +4 -1039
  124. data/src/core/lib/security/security_connector/security_connector.h +6 -114
  125. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +474 -0
  126. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +77 -0
  127. data/src/core/lib/security/security_connector/ssl_utils.cc +345 -0
  128. data/src/core/lib/security/security_connector/ssl_utils.h +93 -0
  129. data/src/core/lib/security/transport/client_auth_filter.cc +28 -17
  130. data/src/core/lib/security/transport/secure_endpoint.cc +51 -41
  131. data/src/core/lib/security/transport/security_handshaker.cc +6 -7
  132. data/src/core/lib/security/transport/server_auth_filter.cc +39 -31
  133. data/src/core/lib/surface/call.cc +100 -80
  134. data/src/core/lib/surface/call.h +4 -0
  135. data/src/core/lib/surface/channel.cc +27 -13
  136. data/src/core/lib/surface/channel.h +4 -3
  137. data/src/core/lib/surface/completion_queue.cc +8 -1
  138. data/src/core/lib/surface/init.cc +1 -0
  139. data/src/core/lib/surface/server.cc +111 -46
  140. data/src/core/lib/surface/server.h +16 -2
  141. data/src/core/lib/surface/version.cc +2 -2
  142. data/src/core/lib/transport/error_utils.cc +4 -2
  143. data/src/core/lib/transport/metadata.cc +3 -2
  144. data/src/core/lib/transport/metadata.h +3 -2
  145. data/src/core/lib/transport/metadata_batch.cc +1 -0
  146. data/src/core/lib/transport/metadata_batch.h +4 -2
  147. data/src/core/lib/transport/static_metadata.cc +225 -221
  148. data/src/core/lib/transport/static_metadata.h +74 -71
  149. data/src/core/lib/transport/transport.h +44 -26
  150. data/src/core/{ext/filters/client_channel → lib/uri}/uri_parser.cc +1 -1
  151. data/src/core/{ext/filters/client_channel → lib/uri}/uri_parser.h +3 -3
  152. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -4
  153. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +356 -77
  154. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +46 -36
  155. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +83 -0
  156. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +73 -0
  157. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +122 -175
  158. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +33 -22
  159. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +38 -10
  160. data/src/core/tsi/transport_security.cc +18 -1
  161. data/src/core/tsi/transport_security.h +2 -1
  162. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -2
  163. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -3
  164. data/src/ruby/lib/grpc/version.rb +1 -1
  165. data/src/ruby/spec/pb/codegen/grpc/testing/package_options.proto +28 -0
  166. data/src/ruby/spec/pb/codegen/package_option_spec.rb +2 -3
  167. metadata +58 -40
  168. data/src/core/ext/filters/client_channel/method_params.cc +0 -178
  169. data/src/core/ext/filters/client_channel/method_params.h +0 -78
  170. data/src/core/tsi/alts/handshaker/alts_tsi_event.cc +0 -75
  171. data/src/core/tsi/alts/handshaker/alts_tsi_event.h +0 -93
  172. data/src/core/tsi/alts_transport_security.cc +0 -65
  173. data/src/core/tsi/alts_transport_security.h +0 -47
@@ -39,19 +39,33 @@ void grpc_server_add_listener(grpc_server* server, void* listener,
39
39
  grpc_pollset** pollsets,
40
40
  size_t npollsets),
41
41
  void (*destroy)(grpc_server* server, void* arg,
42
- grpc_closure* on_done));
42
+ grpc_closure* on_done),
43
+ intptr_t socket_uuid);
43
44
 
44
45
  /* Setup a transport - creates a channel stack, binds the transport to the
45
46
  server */
46
47
  void grpc_server_setup_transport(grpc_server* server, grpc_transport* transport,
47
48
  grpc_pollset* accepting_pollset,
48
- const grpc_channel_args* args);
49
+ const grpc_channel_args* args,
50
+ intptr_t socket_uuid,
51
+ grpc_resource_user* resource_user = nullptr);
52
+
53
+ /* fills in the uuids of all sockets used for connections on this server */
54
+ void grpc_server_populate_server_sockets(
55
+ grpc_server* server, grpc_core::channelz::ChildRefsList* server_sockets,
56
+ intptr_t start_idx);
57
+
58
+ /* fills in the uuids of all listen sockets on this server */
59
+ void grpc_server_populate_listen_sockets(
60
+ grpc_server* server, grpc_core::channelz::ChildRefsList* listen_sockets);
49
61
 
50
62
  grpc_core::channelz::ServerNode* grpc_server_get_channelz_node(
51
63
  grpc_server* server);
52
64
 
53
65
  const grpc_channel_args* grpc_server_get_channel_args(grpc_server* server);
54
66
 
67
+ grpc_resource_user* grpc_server_get_default_resource_user(grpc_server* server);
68
+
55
69
  int grpc_server_has_open_connections(grpc_server* server);
56
70
 
57
71
  /* Do not call this before grpc_server_start. Returns the pollsets and the
@@ -23,6 +23,6 @@
23
23
 
24
24
  #include <grpc/grpc.h>
25
25
 
26
- const char* grpc_version_string(void) { return "6.0.0"; }
26
+ const char* grpc_version_string(void) { return "7.0.0-pre1"; }
27
27
 
28
- const char* grpc_g_stands_for(void) { return "gao"; }
28
+ const char* grpc_g_stands_for(void) { return "gizmo"; }
@@ -26,8 +26,9 @@
26
26
 
27
27
  static grpc_error* recursively_find_error_with_field(grpc_error* error,
28
28
  grpc_error_ints which) {
29
+ intptr_t unused;
29
30
  // If the error itself has a status code, return it.
30
- if (grpc_error_get_int(error, which, nullptr)) {
31
+ if (grpc_error_get_int(error, which, &unused)) {
31
32
  return error;
32
33
  }
33
34
  if (grpc_error_is_special(error)) return nullptr;
@@ -102,7 +103,8 @@ void grpc_error_get_status(grpc_error* error, grpc_millis deadline,
102
103
  }
103
104
 
104
105
  bool grpc_error_has_clear_grpc_status(grpc_error* error) {
105
- if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, nullptr)) {
106
+ intptr_t unused;
107
+ if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &unused)) {
106
108
  return true;
107
109
  }
108
110
  uint8_t slot = error->first_err;
@@ -237,7 +237,7 @@ static void rehash_mdtab(mdtab_shard* shard) {
237
237
  }
238
238
 
239
239
  grpc_mdelem grpc_mdelem_create(
240
- grpc_slice key, grpc_slice value,
240
+ const grpc_slice& key, const grpc_slice& value,
241
241
  grpc_mdelem_data* compatible_external_backing_store) {
242
242
  if (!grpc_slice_is_interned(key) || !grpc_slice_is_interned(value)) {
243
243
  if (compatible_external_backing_store != nullptr) {
@@ -324,7 +324,8 @@ grpc_mdelem grpc_mdelem_create(
324
324
  return GRPC_MAKE_MDELEM(md, GRPC_MDELEM_STORAGE_INTERNED);
325
325
  }
326
326
 
327
- grpc_mdelem grpc_mdelem_from_slices(grpc_slice key, grpc_slice value) {
327
+ grpc_mdelem grpc_mdelem_from_slices(const grpc_slice& key,
328
+ const grpc_slice& value) {
328
329
  grpc_mdelem out = grpc_mdelem_create(key, value, nullptr);
329
330
  grpc_slice_unref_internal(key);
330
331
  grpc_slice_unref_internal(value);
@@ -109,7 +109,8 @@ struct grpc_mdelem {
109
109
  (uintptr_t)GRPC_MDELEM_STORAGE_INTERNED_BIT))
110
110
 
111
111
  /* Unrefs the slices. */
112
- grpc_mdelem grpc_mdelem_from_slices(grpc_slice key, grpc_slice value);
112
+ grpc_mdelem grpc_mdelem_from_slices(const grpc_slice& key,
113
+ const grpc_slice& value);
113
114
 
114
115
  /* Cheaply convert a grpc_metadata to a grpc_mdelem; may use the grpc_metadata
115
116
  object as backing storage (so lifetimes should align) */
@@ -120,7 +121,7 @@ grpc_mdelem grpc_mdelem_from_grpc_metadata(grpc_metadata* metadata);
120
121
  compatible_external_backing_store if it is non-NULL (in which case it's the
121
122
  users responsibility to ensure that it outlives usage) */
122
123
  grpc_mdelem grpc_mdelem_create(
123
- grpc_slice key, grpc_slice value,
124
+ const grpc_slice& key, const grpc_slice& value,
124
125
  grpc_mdelem_data* compatible_external_backing_store);
125
126
 
126
127
  bool grpc_mdelem_eq(grpc_mdelem a, grpc_mdelem b);
@@ -139,6 +139,7 @@ static void link_head(grpc_mdelem_list* list, grpc_linked_mdelem* storage) {
139
139
  GPR_ASSERT(!GRPC_MDISNULL(storage->md));
140
140
  storage->prev = nullptr;
141
141
  storage->next = list->head;
142
+ storage->reserved = nullptr;
142
143
  if (list->head != nullptr) {
143
144
  list->head->prev = storage;
144
145
  } else {
@@ -31,9 +31,11 @@
31
31
  #include "src/core/lib/transport/static_metadata.h"
32
32
 
33
33
  typedef struct grpc_linked_mdelem {
34
+ grpc_linked_mdelem() {}
35
+
34
36
  grpc_mdelem md;
35
- struct grpc_linked_mdelem* next;
36
- struct grpc_linked_mdelem* prev;
37
+ struct grpc_linked_mdelem* next = nullptr;
38
+ struct grpc_linked_mdelem* prev = nullptr;
37
39
  void* reserved;
38
40
  } grpc_linked_mdelem;
39
41
 
@@ -63,51 +63,53 @@ static uint8_t g_bytes[] = {
63
63
  115, 115, 97, 103, 101, 95, 98, 121, 116, 101, 115, 47, 103, 114, 112,
64
64
  99, 46, 108, 98, 46, 118, 49, 46, 76, 111, 97, 100, 66, 97, 108,
65
65
  97, 110, 99, 101, 114, 47, 66, 97, 108, 97, 110, 99, 101, 76, 111,
66
- 97, 100, 100, 101, 102, 108, 97, 116, 101, 103, 122, 105, 112, 115, 116,
67
- 114, 101, 97, 109, 47, 103, 122, 105, 112, 71, 69, 84, 80, 79, 83,
68
- 84, 47, 47, 105, 110, 100, 101, 120, 46, 104, 116, 109, 108, 104, 116,
69
- 116, 112, 104, 116, 116, 112, 115, 50, 48, 48, 50, 48, 52, 50, 48,
70
- 54, 51, 48, 52, 52, 48, 48, 52, 48, 52, 53, 48, 48, 97, 99,
71
- 99, 101, 112, 116, 45, 99, 104, 97, 114, 115, 101, 116, 103, 122, 105,
72
- 112, 44, 32, 100, 101, 102, 108, 97, 116, 101, 97, 99, 99, 101, 112,
73
- 116, 45, 108, 97, 110, 103, 117, 97, 103, 101, 97, 99, 99, 101, 112,
74
- 116, 45, 114, 97, 110, 103, 101, 115, 97, 99, 99, 101, 112, 116, 97,
75
- 99, 99, 101, 115, 115, 45, 99, 111, 110, 116, 114, 111, 108, 45, 97,
76
- 108, 108, 111, 119, 45, 111, 114, 105, 103, 105, 110, 97, 103, 101, 97,
77
- 108, 108, 111, 119, 97, 117, 116, 104, 111, 114, 105, 122, 97, 116, 105,
78
- 111, 110, 99, 97, 99, 104, 101, 45, 99, 111, 110, 116, 114, 111, 108,
79
- 99, 111, 110, 116, 101, 110, 116, 45, 100, 105, 115, 112, 111, 115, 105,
80
- 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116, 45, 108, 97, 110,
81
- 103, 117, 97, 103, 101, 99, 111, 110, 116, 101, 110, 116, 45, 108, 101,
82
- 110, 103, 116, 104, 99, 111, 110, 116, 101, 110, 116, 45, 108, 111, 99,
83
- 97, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116, 45, 114, 97,
84
- 110, 103, 101, 99, 111, 111, 107, 105, 101, 100, 97, 116, 101, 101, 116,
85
- 97, 103, 101, 120, 112, 101, 99, 116, 101, 120, 112, 105, 114, 101, 115,
86
- 102, 114, 111, 109, 105, 102, 45, 109, 97, 116, 99, 104, 105, 102, 45,
87
- 109, 111, 100, 105, 102, 105, 101, 100, 45, 115, 105, 110, 99, 101, 105,
88
- 102, 45, 110, 111, 110, 101, 45, 109, 97, 116, 99, 104, 105, 102, 45,
89
- 114, 97, 110, 103, 101, 105, 102, 45, 117, 110, 109, 111, 100, 105, 102,
90
- 105, 101, 100, 45, 115, 105, 110, 99, 101, 108, 97, 115, 116, 45, 109,
91
- 111, 100, 105, 102, 105, 101, 100, 108, 105, 110, 107, 108, 111, 99, 97,
92
- 116, 105, 111, 110, 109, 97, 120, 45, 102, 111, 114, 119, 97, 114, 100,
93
- 115, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 101, 110, 116, 105,
94
- 99, 97, 116, 101, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 111,
95
- 114, 105, 122, 97, 116, 105, 111, 110, 114, 97, 110, 103, 101, 114, 101,
96
- 102, 101, 114, 101, 114, 114, 101, 102, 114, 101, 115, 104, 114, 101, 116,
97
- 114, 121, 45, 97, 102, 116, 101, 114, 115, 101, 114, 118, 101, 114, 115,
98
- 101, 116, 45, 99, 111, 111, 107, 105, 101, 115, 116, 114, 105, 99, 116,
99
- 45, 116, 114, 97, 110, 115, 112, 111, 114, 116, 45, 115, 101, 99, 117,
100
- 114, 105, 116, 121, 116, 114, 97, 110, 115, 102, 101, 114, 45, 101, 110,
101
- 99, 111, 100, 105, 110, 103, 118, 97, 114, 121, 118, 105, 97, 119, 119,
102
- 119, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97, 116, 101, 48,
103
- 105, 100, 101, 110, 116, 105, 116, 121, 116, 114, 97, 105, 108, 101, 114,
104
- 115, 97, 112, 112, 108, 105, 99, 97, 116, 105, 111, 110, 47, 103, 114,
105
- 112, 99, 103, 114, 112, 99, 80, 85, 84, 108, 98, 45, 99, 111, 115,
106
- 116, 45, 98, 105, 110, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100,
107
- 101, 102, 108, 97, 116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44,
108
- 103, 122, 105, 112, 100, 101, 102, 108, 97, 116, 101, 44, 103, 122, 105,
109
- 112, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102, 108, 97,
110
- 116, 101, 44, 103, 122, 105, 112};
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
+ 100, 101, 102, 108, 97, 116, 101, 103, 122, 105, 112, 115, 116, 114, 101,
69
+ 97, 109, 47, 103, 122, 105, 112, 71, 69, 84, 80, 79, 83, 84, 47,
70
+ 47, 105, 110, 100, 101, 120, 46, 104, 116, 109, 108, 104, 116, 116, 112,
71
+ 104, 116, 116, 112, 115, 50, 48, 48, 50, 48, 52, 50, 48, 54, 51,
72
+ 48, 52, 52, 48, 48, 52, 48, 52, 53, 48, 48, 97, 99, 99, 101,
73
+ 112, 116, 45, 99, 104, 97, 114, 115, 101, 116, 103, 122, 105, 112, 44,
74
+ 32, 100, 101, 102, 108, 97, 116, 101, 97, 99, 99, 101, 112, 116, 45,
75
+ 108, 97, 110, 103, 117, 97, 103, 101, 97, 99, 99, 101, 112, 116, 45,
76
+ 114, 97, 110, 103, 101, 115, 97, 99, 99, 101, 112, 116, 97, 99, 99,
77
+ 101, 115, 115, 45, 99, 111, 110, 116, 114, 111, 108, 45, 97, 108, 108,
78
+ 111, 119, 45, 111, 114, 105, 103, 105, 110, 97, 103, 101, 97, 108, 108,
79
+ 111, 119, 97, 117, 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110,
80
+ 99, 97, 99, 104, 101, 45, 99, 111, 110, 116, 114, 111, 108, 99, 111,
81
+ 110, 116, 101, 110, 116, 45, 100, 105, 115, 112, 111, 115, 105, 116, 105,
82
+ 111, 110, 99, 111, 110, 116, 101, 110, 116, 45, 108, 97, 110, 103, 117,
83
+ 97, 103, 101, 99, 111, 110, 116, 101, 110, 116, 45, 108, 101, 110, 103,
84
+ 116, 104, 99, 111, 110, 116, 101, 110, 116, 45, 108, 111, 99, 97, 116,
85
+ 105, 111, 110, 99, 111, 110, 116, 101, 110, 116, 45, 114, 97, 110, 103,
86
+ 101, 99, 111, 111, 107, 105, 101, 100, 97, 116, 101, 101, 116, 97, 103,
87
+ 101, 120, 112, 101, 99, 116, 101, 120, 112, 105, 114, 101, 115, 102, 114,
88
+ 111, 109, 105, 102, 45, 109, 97, 116, 99, 104, 105, 102, 45, 109, 111,
89
+ 100, 105, 102, 105, 101, 100, 45, 115, 105, 110, 99, 101, 105, 102, 45,
90
+ 110, 111, 110, 101, 45, 109, 97, 116, 99, 104, 105, 102, 45, 114, 97,
91
+ 110, 103, 101, 105, 102, 45, 117, 110, 109, 111, 100, 105, 102, 105, 101,
92
+ 100, 45, 115, 105, 110, 99, 101, 108, 97, 115, 116, 45, 109, 111, 100,
93
+ 105, 102, 105, 101, 100, 108, 105, 110, 107, 108, 111, 99, 97, 116, 105,
94
+ 111, 110, 109, 97, 120, 45, 102, 111, 114, 119, 97, 114, 100, 115, 112,
95
+ 114, 111, 120, 121, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97,
96
+ 116, 101, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 111, 114, 105,
97
+ 122, 97, 116, 105, 111, 110, 114, 97, 110, 103, 101, 114, 101, 102, 101,
98
+ 114, 101, 114, 114, 101, 102, 114, 101, 115, 104, 114, 101, 116, 114, 121,
99
+ 45, 97, 102, 116, 101, 114, 115, 101, 114, 118, 101, 114, 115, 101, 116,
100
+ 45, 99, 111, 111, 107, 105, 101, 115, 116, 114, 105, 99, 116, 45, 116,
101
+ 114, 97, 110, 115, 112, 111, 114, 116, 45, 115, 101, 99, 117, 114, 105,
102
+ 116, 121, 116, 114, 97, 110, 115, 102, 101, 114, 45, 101, 110, 99, 111,
103
+ 100, 105, 110, 103, 118, 97, 114, 121, 118, 105, 97, 119, 119, 119, 45,
104
+ 97, 117, 116, 104, 101, 110, 116, 105, 99, 97, 116, 101, 48, 105, 100,
105
+ 101, 110, 116, 105, 116, 121, 116, 114, 97, 105, 108, 101, 114, 115, 97,
106
+ 112, 112, 108, 105, 99, 97, 116, 105, 111, 110, 47, 103, 114, 112, 99,
107
+ 103, 114, 112, 99, 80, 85, 84, 108, 98, 45, 99, 111, 115, 116, 45,
108
+ 98, 105, 110, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102,
109
+ 108, 97, 116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44, 103, 122,
110
+ 105, 112, 100, 101, 102, 108, 97, 116, 101, 44, 103, 122, 105, 112, 105,
111
+ 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102, 108, 97, 116, 101,
112
+ 44, 103, 122, 105, 112};
111
113
 
112
114
  static void static_ref(void* unused) {}
113
115
  static void static_unref(void* unused) {}
@@ -224,6 +226,7 @@ grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
224
226
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
225
227
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
226
228
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
229
+ {&grpc_static_metadata_vtable, &static_sub_refcnt},
227
230
  };
228
231
 
229
232
  const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
@@ -262,76 +265,77 @@ const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
262
265
  {&grpc_static_metadata_refcounts[32], {{g_bytes + 385, 30}}},
263
266
  {&grpc_static_metadata_refcounts[33], {{g_bytes + 415, 31}}},
264
267
  {&grpc_static_metadata_refcounts[34], {{g_bytes + 446, 36}}},
265
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}},
266
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}},
267
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 493, 11}}},
268
- {&grpc_static_metadata_refcounts[38], {{g_bytes + 504, 3}}},
269
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 507, 4}}},
270
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 511, 1}}},
271
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 512, 11}}},
272
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 523, 4}}},
273
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 527, 5}}},
274
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 532, 3}}},
275
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 535, 3}}},
276
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 538, 3}}},
277
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 541, 3}}},
278
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 544, 3}}},
279
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 547, 3}}},
280
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 550, 3}}},
281
- {&grpc_static_metadata_refcounts[51], {{g_bytes + 553, 14}}},
282
- {&grpc_static_metadata_refcounts[52], {{g_bytes + 567, 13}}},
283
- {&grpc_static_metadata_refcounts[53], {{g_bytes + 580, 15}}},
284
- {&grpc_static_metadata_refcounts[54], {{g_bytes + 595, 13}}},
285
- {&grpc_static_metadata_refcounts[55], {{g_bytes + 608, 6}}},
286
- {&grpc_static_metadata_refcounts[56], {{g_bytes + 614, 27}}},
287
- {&grpc_static_metadata_refcounts[57], {{g_bytes + 641, 3}}},
288
- {&grpc_static_metadata_refcounts[58], {{g_bytes + 644, 5}}},
289
- {&grpc_static_metadata_refcounts[59], {{g_bytes + 649, 13}}},
290
- {&grpc_static_metadata_refcounts[60], {{g_bytes + 662, 13}}},
291
- {&grpc_static_metadata_refcounts[61], {{g_bytes + 675, 19}}},
292
- {&grpc_static_metadata_refcounts[62], {{g_bytes + 694, 16}}},
293
- {&grpc_static_metadata_refcounts[63], {{g_bytes + 710, 14}}},
294
- {&grpc_static_metadata_refcounts[64], {{g_bytes + 724, 16}}},
295
- {&grpc_static_metadata_refcounts[65], {{g_bytes + 740, 13}}},
296
- {&grpc_static_metadata_refcounts[66], {{g_bytes + 753, 6}}},
297
- {&grpc_static_metadata_refcounts[67], {{g_bytes + 759, 4}}},
298
- {&grpc_static_metadata_refcounts[68], {{g_bytes + 763, 4}}},
299
- {&grpc_static_metadata_refcounts[69], {{g_bytes + 767, 6}}},
300
- {&grpc_static_metadata_refcounts[70], {{g_bytes + 773, 7}}},
301
- {&grpc_static_metadata_refcounts[71], {{g_bytes + 780, 4}}},
302
- {&grpc_static_metadata_refcounts[72], {{g_bytes + 784, 8}}},
303
- {&grpc_static_metadata_refcounts[73], {{g_bytes + 792, 17}}},
304
- {&grpc_static_metadata_refcounts[74], {{g_bytes + 809, 13}}},
305
- {&grpc_static_metadata_refcounts[75], {{g_bytes + 822, 8}}},
306
- {&grpc_static_metadata_refcounts[76], {{g_bytes + 830, 19}}},
307
- {&grpc_static_metadata_refcounts[77], {{g_bytes + 849, 13}}},
308
- {&grpc_static_metadata_refcounts[78], {{g_bytes + 862, 4}}},
309
- {&grpc_static_metadata_refcounts[79], {{g_bytes + 866, 8}}},
310
- {&grpc_static_metadata_refcounts[80], {{g_bytes + 874, 12}}},
311
- {&grpc_static_metadata_refcounts[81], {{g_bytes + 886, 18}}},
312
- {&grpc_static_metadata_refcounts[82], {{g_bytes + 904, 19}}},
313
- {&grpc_static_metadata_refcounts[83], {{g_bytes + 923, 5}}},
314
- {&grpc_static_metadata_refcounts[84], {{g_bytes + 928, 7}}},
315
- {&grpc_static_metadata_refcounts[85], {{g_bytes + 935, 7}}},
316
- {&grpc_static_metadata_refcounts[86], {{g_bytes + 942, 11}}},
317
- {&grpc_static_metadata_refcounts[87], {{g_bytes + 953, 6}}},
318
- {&grpc_static_metadata_refcounts[88], {{g_bytes + 959, 10}}},
319
- {&grpc_static_metadata_refcounts[89], {{g_bytes + 969, 25}}},
320
- {&grpc_static_metadata_refcounts[90], {{g_bytes + 994, 17}}},
321
- {&grpc_static_metadata_refcounts[91], {{g_bytes + 1011, 4}}},
322
- {&grpc_static_metadata_refcounts[92], {{g_bytes + 1015, 3}}},
323
- {&grpc_static_metadata_refcounts[93], {{g_bytes + 1018, 16}}},
324
- {&grpc_static_metadata_refcounts[94], {{g_bytes + 1034, 1}}},
325
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}},
326
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1043, 8}}},
327
- {&grpc_static_metadata_refcounts[97], {{g_bytes + 1051, 16}}},
328
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1067, 4}}},
329
- {&grpc_static_metadata_refcounts[99], {{g_bytes + 1071, 3}}},
330
- {&grpc_static_metadata_refcounts[100], {{g_bytes + 1074, 11}}},
331
- {&grpc_static_metadata_refcounts[101], {{g_bytes + 1085, 16}}},
332
- {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}},
333
- {&grpc_static_metadata_refcounts[103], {{g_bytes + 1114, 12}}},
334
- {&grpc_static_metadata_refcounts[104], {{g_bytes + 1126, 21}}},
268
+ {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 28}}},
269
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 7}}},
270
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}},
271
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 521, 11}}},
272
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 532, 3}}},
273
+ {&grpc_static_metadata_refcounts[40], {{g_bytes + 535, 4}}},
274
+ {&grpc_static_metadata_refcounts[41], {{g_bytes + 539, 1}}},
275
+ {&grpc_static_metadata_refcounts[42], {{g_bytes + 540, 11}}},
276
+ {&grpc_static_metadata_refcounts[43], {{g_bytes + 551, 4}}},
277
+ {&grpc_static_metadata_refcounts[44], {{g_bytes + 555, 5}}},
278
+ {&grpc_static_metadata_refcounts[45], {{g_bytes + 560, 3}}},
279
+ {&grpc_static_metadata_refcounts[46], {{g_bytes + 563, 3}}},
280
+ {&grpc_static_metadata_refcounts[47], {{g_bytes + 566, 3}}},
281
+ {&grpc_static_metadata_refcounts[48], {{g_bytes + 569, 3}}},
282
+ {&grpc_static_metadata_refcounts[49], {{g_bytes + 572, 3}}},
283
+ {&grpc_static_metadata_refcounts[50], {{g_bytes + 575, 3}}},
284
+ {&grpc_static_metadata_refcounts[51], {{g_bytes + 578, 3}}},
285
+ {&grpc_static_metadata_refcounts[52], {{g_bytes + 581, 14}}},
286
+ {&grpc_static_metadata_refcounts[53], {{g_bytes + 595, 13}}},
287
+ {&grpc_static_metadata_refcounts[54], {{g_bytes + 608, 15}}},
288
+ {&grpc_static_metadata_refcounts[55], {{g_bytes + 623, 13}}},
289
+ {&grpc_static_metadata_refcounts[56], {{g_bytes + 636, 6}}},
290
+ {&grpc_static_metadata_refcounts[57], {{g_bytes + 642, 27}}},
291
+ {&grpc_static_metadata_refcounts[58], {{g_bytes + 669, 3}}},
292
+ {&grpc_static_metadata_refcounts[59], {{g_bytes + 672, 5}}},
293
+ {&grpc_static_metadata_refcounts[60], {{g_bytes + 677, 13}}},
294
+ {&grpc_static_metadata_refcounts[61], {{g_bytes + 690, 13}}},
295
+ {&grpc_static_metadata_refcounts[62], {{g_bytes + 703, 19}}},
296
+ {&grpc_static_metadata_refcounts[63], {{g_bytes + 722, 16}}},
297
+ {&grpc_static_metadata_refcounts[64], {{g_bytes + 738, 14}}},
298
+ {&grpc_static_metadata_refcounts[65], {{g_bytes + 752, 16}}},
299
+ {&grpc_static_metadata_refcounts[66], {{g_bytes + 768, 13}}},
300
+ {&grpc_static_metadata_refcounts[67], {{g_bytes + 781, 6}}},
301
+ {&grpc_static_metadata_refcounts[68], {{g_bytes + 787, 4}}},
302
+ {&grpc_static_metadata_refcounts[69], {{g_bytes + 791, 4}}},
303
+ {&grpc_static_metadata_refcounts[70], {{g_bytes + 795, 6}}},
304
+ {&grpc_static_metadata_refcounts[71], {{g_bytes + 801, 7}}},
305
+ {&grpc_static_metadata_refcounts[72], {{g_bytes + 808, 4}}},
306
+ {&grpc_static_metadata_refcounts[73], {{g_bytes + 812, 8}}},
307
+ {&grpc_static_metadata_refcounts[74], {{g_bytes + 820, 17}}},
308
+ {&grpc_static_metadata_refcounts[75], {{g_bytes + 837, 13}}},
309
+ {&grpc_static_metadata_refcounts[76], {{g_bytes + 850, 8}}},
310
+ {&grpc_static_metadata_refcounts[77], {{g_bytes + 858, 19}}},
311
+ {&grpc_static_metadata_refcounts[78], {{g_bytes + 877, 13}}},
312
+ {&grpc_static_metadata_refcounts[79], {{g_bytes + 890, 4}}},
313
+ {&grpc_static_metadata_refcounts[80], {{g_bytes + 894, 8}}},
314
+ {&grpc_static_metadata_refcounts[81], {{g_bytes + 902, 12}}},
315
+ {&grpc_static_metadata_refcounts[82], {{g_bytes + 914, 18}}},
316
+ {&grpc_static_metadata_refcounts[83], {{g_bytes + 932, 19}}},
317
+ {&grpc_static_metadata_refcounts[84], {{g_bytes + 951, 5}}},
318
+ {&grpc_static_metadata_refcounts[85], {{g_bytes + 956, 7}}},
319
+ {&grpc_static_metadata_refcounts[86], {{g_bytes + 963, 7}}},
320
+ {&grpc_static_metadata_refcounts[87], {{g_bytes + 970, 11}}},
321
+ {&grpc_static_metadata_refcounts[88], {{g_bytes + 981, 6}}},
322
+ {&grpc_static_metadata_refcounts[89], {{g_bytes + 987, 10}}},
323
+ {&grpc_static_metadata_refcounts[90], {{g_bytes + 997, 25}}},
324
+ {&grpc_static_metadata_refcounts[91], {{g_bytes + 1022, 17}}},
325
+ {&grpc_static_metadata_refcounts[92], {{g_bytes + 1039, 4}}},
326
+ {&grpc_static_metadata_refcounts[93], {{g_bytes + 1043, 3}}},
327
+ {&grpc_static_metadata_refcounts[94], {{g_bytes + 1046, 16}}},
328
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1062, 1}}},
329
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}},
330
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1071, 8}}},
331
+ {&grpc_static_metadata_refcounts[98], {{g_bytes + 1079, 16}}},
332
+ {&grpc_static_metadata_refcounts[99], {{g_bytes + 1095, 4}}},
333
+ {&grpc_static_metadata_refcounts[100], {{g_bytes + 1099, 3}}},
334
+ {&grpc_static_metadata_refcounts[101], {{g_bytes + 1102, 11}}},
335
+ {&grpc_static_metadata_refcounts[102], {{g_bytes + 1113, 16}}},
336
+ {&grpc_static_metadata_refcounts[103], {{g_bytes + 1129, 13}}},
337
+ {&grpc_static_metadata_refcounts[104], {{g_bytes + 1142, 12}}},
338
+ {&grpc_static_metadata_refcounts[105], {{g_bytes + 1154, 21}}},
335
339
  };
336
340
 
337
341
  uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
@@ -341,17 +345,17 @@ uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
341
345
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};
342
346
 
343
347
  static const int8_t elems_r[] = {
344
- 15, 9, -8, 0, 2, -44, -78, 17, 0, 6, -8, 0, 0, 0, 6,
345
- -5, -10, 0, 0, -2, -3, -4, 0, 0, 0, 0, 0, 0, 0, 0,
346
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
347
- 0, 0, 0, 0, 0, 0, -63, 0, -46, -68, -69, -53, 0, 31, 30,
348
- 29, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 18,
349
- 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3,
350
- 2, 3, 3, 2, 6, 0, 0, 0, 0, 0, 0, -5, 0};
348
+ 16, 11, -8, 0, 3, -42, -81, -43, 0, 6, -8, 0, 0, 0, -7,
349
+ -3, -10, 0, 0, 0, -1, -2, 0, 0, 0, 0, 0, 0, 0, 0,
350
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
351
+ 0, 0, 0, 0, 0, 0, 0, -63, 0, -47, -68, -69, -70, 0, 33,
352
+ 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 20,
353
+ 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5,
354
+ 4, 4, 4, 3, 10, 9, 0, 0, 0, 0, 0, 0, -3, 0};
351
355
  static uint32_t elems_phash(uint32_t i) {
352
- i -= 40;
353
- uint32_t x = i % 103;
354
- uint32_t y = i / 103;
356
+ i -= 41;
357
+ uint32_t x = i % 104;
358
+ uint32_t y = i / 104;
355
359
  uint32_t h = x;
356
360
  if (y < GPR_ARRAY_SIZE(elems_r)) {
357
361
  uint32_t delta = (uint32_t)elems_r[y];
@@ -361,29 +365,29 @@ static uint32_t elems_phash(uint32_t i) {
361
365
  }
362
366
 
363
367
  static const uint16_t elem_keys[] = {
364
- 254, 255, 256, 257, 258, 259, 260, 1085, 1086, 143, 144, 1709,
365
- 462, 463, 1604, 40, 41, 761, 1716, 980, 981, 1611, 621, 1499,
366
- 760, 2024, 2129, 2234, 5384, 5699, 5804, 6014, 6119, 6224, 1732, 6329,
367
- 6434, 6539, 6644, 6749, 6854, 6959, 7064, 7169, 7274, 7379, 7484, 7589,
368
- 5909, 5594, 7694, 7799, 7904, 8009, 8114, 8219, 8324, 8429, 8534, 8639,
369
- 8744, 8849, 8954, 9059, 9164, 9269, 9374, 1145, 518, 9479, 204, 9584,
370
- 9689, 1151, 1152, 1153, 1154, 1775, 9794, 1040, 1670, 10529, 0, 0,
371
- 1782, 829, 0, 0, 0, 0, 344, 1567, 0, 0, 0, 0,
372
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
373
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
374
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
375
- 0};
368
+ 257, 258, 259, 260, 261, 262, 263, 1096, 1097, 1513, 1725, 145,
369
+ 146, 467, 468, 1619, 41, 42, 1733, 990, 991, 767, 768, 1627,
370
+ 627, 837, 2043, 2149, 2255, 5541, 5859, 5965, 6071, 6177, 1749, 6283,
371
+ 6389, 6495, 6601, 6707, 6813, 6919, 7025, 7131, 7237, 7343, 7449, 7555,
372
+ 7661, 5753, 7767, 7873, 7979, 8085, 8191, 8297, 8403, 8509, 8615, 8721,
373
+ 8827, 8933, 9039, 9145, 9251, 9357, 9463, 1156, 9569, 523, 9675, 9781,
374
+ 206, 1162, 1163, 1164, 1165, 1792, 1582, 1050, 9887, 9993, 1686, 10735,
375
+ 1799, 0, 0, 0, 0, 0, 347, 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, 0, 0, 0, 0, 0,
379
+ 0, 0, 0, 0};
376
380
  static const uint8_t elem_idxs[] = {
377
- 7, 8, 9, 10, 11, 12, 13, 77, 79, 1, 2, 71, 5, 6, 25, 3,
378
- 4, 63, 84, 66, 65, 73, 67, 30, 62, 57, 37, 74, 14, 17, 18, 20,
379
- 21, 22, 15, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 38,
380
- 19, 16, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
381
- 53, 54, 55, 76, 69, 56, 70, 58, 59, 78, 80, 81, 82, 83, 60, 64,
382
- 72, 75, 255, 255, 85, 61, 255, 255, 255, 255, 0, 68};
381
+ 7, 8, 9, 10, 11, 12, 13, 77, 79, 30, 71, 1, 2, 5, 6, 25,
382
+ 3, 4, 84, 66, 65, 62, 63, 73, 67, 61, 57, 37, 74, 14, 17, 18,
383
+ 19, 20, 15, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34, 35,
384
+ 36, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
385
+ 52, 53, 54, 76, 55, 69, 56, 58, 70, 78, 80, 81, 82, 83, 68, 64,
386
+ 59, 60, 72, 75, 85, 255, 255, 255, 255, 255, 0};
383
387
 
384
388
  grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
385
389
  if (a == -1 || b == -1) return GRPC_MDNULL;
386
- uint32_t k = (uint32_t)(a * 105 + b);
390
+ uint32_t k = (uint32_t)(a * 106 + b);
387
391
  uint32_t h = elems_phash(k);
388
392
  return h < GPR_ARRAY_SIZE(elem_keys) && elem_keys[h] == k &&
389
393
  elem_idxs[h] != 255
@@ -396,175 +400,175 @@ grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
396
400
  {{&grpc_static_metadata_refcounts[3], {{g_bytes + 19, 10}}},
397
401
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
398
402
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
399
- {&grpc_static_metadata_refcounts[38], {{g_bytes + 504, 3}}}},
403
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 532, 3}}}},
400
404
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
401
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 507, 4}}}},
405
+ {&grpc_static_metadata_refcounts[40], {{g_bytes + 535, 4}}}},
402
406
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
403
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 511, 1}}}},
407
+ {&grpc_static_metadata_refcounts[41], {{g_bytes + 539, 1}}}},
404
408
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
405
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 512, 11}}}},
409
+ {&grpc_static_metadata_refcounts[42], {{g_bytes + 540, 11}}}},
406
410
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
407
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 523, 4}}}},
411
+ {&grpc_static_metadata_refcounts[43], {{g_bytes + 551, 4}}}},
408
412
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
409
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 527, 5}}}},
413
+ {&grpc_static_metadata_refcounts[44], {{g_bytes + 555, 5}}}},
410
414
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
411
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 532, 3}}}},
415
+ {&grpc_static_metadata_refcounts[45], {{g_bytes + 560, 3}}}},
412
416
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
413
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 535, 3}}}},
417
+ {&grpc_static_metadata_refcounts[46], {{g_bytes + 563, 3}}}},
414
418
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
415
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 538, 3}}}},
419
+ {&grpc_static_metadata_refcounts[47], {{g_bytes + 566, 3}}}},
416
420
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
417
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 541, 3}}}},
421
+ {&grpc_static_metadata_refcounts[48], {{g_bytes + 569, 3}}}},
418
422
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
419
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 544, 3}}}},
423
+ {&grpc_static_metadata_refcounts[49], {{g_bytes + 572, 3}}}},
420
424
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
421
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 547, 3}}}},
425
+ {&grpc_static_metadata_refcounts[50], {{g_bytes + 575, 3}}}},
422
426
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
423
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 550, 3}}}},
424
- {{&grpc_static_metadata_refcounts[51], {{g_bytes + 553, 14}}},
427
+ {&grpc_static_metadata_refcounts[51], {{g_bytes + 578, 3}}}},
428
+ {{&grpc_static_metadata_refcounts[52], {{g_bytes + 581, 14}}},
425
429
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
426
430
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
427
- {&grpc_static_metadata_refcounts[52], {{g_bytes + 567, 13}}}},
428
- {{&grpc_static_metadata_refcounts[53], {{g_bytes + 580, 15}}},
431
+ {&grpc_static_metadata_refcounts[53], {{g_bytes + 595, 13}}}},
432
+ {{&grpc_static_metadata_refcounts[54], {{g_bytes + 608, 15}}},
429
433
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
430
- {{&grpc_static_metadata_refcounts[54], {{g_bytes + 595, 13}}},
434
+ {{&grpc_static_metadata_refcounts[55], {{g_bytes + 623, 13}}},
431
435
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
432
- {{&grpc_static_metadata_refcounts[55], {{g_bytes + 608, 6}}},
436
+ {{&grpc_static_metadata_refcounts[56], {{g_bytes + 636, 6}}},
433
437
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
434
- {{&grpc_static_metadata_refcounts[56], {{g_bytes + 614, 27}}},
438
+ {{&grpc_static_metadata_refcounts[57], {{g_bytes + 642, 27}}},
435
439
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
436
- {{&grpc_static_metadata_refcounts[57], {{g_bytes + 641, 3}}},
440
+ {{&grpc_static_metadata_refcounts[58], {{g_bytes + 669, 3}}},
437
441
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
438
- {{&grpc_static_metadata_refcounts[58], {{g_bytes + 644, 5}}},
442
+ {{&grpc_static_metadata_refcounts[59], {{g_bytes + 672, 5}}},
439
443
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
440
- {{&grpc_static_metadata_refcounts[59], {{g_bytes + 649, 13}}},
444
+ {{&grpc_static_metadata_refcounts[60], {{g_bytes + 677, 13}}},
441
445
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
442
- {{&grpc_static_metadata_refcounts[60], {{g_bytes + 662, 13}}},
446
+ {{&grpc_static_metadata_refcounts[61], {{g_bytes + 690, 13}}},
443
447
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
444
- {{&grpc_static_metadata_refcounts[61], {{g_bytes + 675, 19}}},
448
+ {{&grpc_static_metadata_refcounts[62], {{g_bytes + 703, 19}}},
445
449
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
446
450
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
447
451
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
448
- {{&grpc_static_metadata_refcounts[62], {{g_bytes + 694, 16}}},
452
+ {{&grpc_static_metadata_refcounts[63], {{g_bytes + 722, 16}}},
449
453
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
450
- {{&grpc_static_metadata_refcounts[63], {{g_bytes + 710, 14}}},
454
+ {{&grpc_static_metadata_refcounts[64], {{g_bytes + 738, 14}}},
451
455
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
452
- {{&grpc_static_metadata_refcounts[64], {{g_bytes + 724, 16}}},
456
+ {{&grpc_static_metadata_refcounts[65], {{g_bytes + 752, 16}}},
453
457
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
454
- {{&grpc_static_metadata_refcounts[65], {{g_bytes + 740, 13}}},
458
+ {{&grpc_static_metadata_refcounts[66], {{g_bytes + 768, 13}}},
455
459
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
456
460
  {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
457
461
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
458
- {{&grpc_static_metadata_refcounts[66], {{g_bytes + 753, 6}}},
462
+ {{&grpc_static_metadata_refcounts[67], {{g_bytes + 781, 6}}},
459
463
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
460
- {{&grpc_static_metadata_refcounts[67], {{g_bytes + 759, 4}}},
464
+ {{&grpc_static_metadata_refcounts[68], {{g_bytes + 787, 4}}},
461
465
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
462
- {{&grpc_static_metadata_refcounts[68], {{g_bytes + 763, 4}}},
466
+ {{&grpc_static_metadata_refcounts[69], {{g_bytes + 791, 4}}},
463
467
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
464
- {{&grpc_static_metadata_refcounts[69], {{g_bytes + 767, 6}}},
468
+ {{&grpc_static_metadata_refcounts[70], {{g_bytes + 795, 6}}},
465
469
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
466
- {{&grpc_static_metadata_refcounts[70], {{g_bytes + 773, 7}}},
470
+ {{&grpc_static_metadata_refcounts[71], {{g_bytes + 801, 7}}},
467
471
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
468
- {{&grpc_static_metadata_refcounts[71], {{g_bytes + 780, 4}}},
472
+ {{&grpc_static_metadata_refcounts[72], {{g_bytes + 808, 4}}},
469
473
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
470
474
  {{&grpc_static_metadata_refcounts[20], {{g_bytes + 278, 4}}},
471
475
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
472
- {{&grpc_static_metadata_refcounts[72], {{g_bytes + 784, 8}}},
476
+ {{&grpc_static_metadata_refcounts[73], {{g_bytes + 812, 8}}},
473
477
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
474
- {{&grpc_static_metadata_refcounts[73], {{g_bytes + 792, 17}}},
478
+ {{&grpc_static_metadata_refcounts[74], {{g_bytes + 820, 17}}},
475
479
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
476
- {{&grpc_static_metadata_refcounts[74], {{g_bytes + 809, 13}}},
480
+ {{&grpc_static_metadata_refcounts[75], {{g_bytes + 837, 13}}},
477
481
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
478
- {{&grpc_static_metadata_refcounts[75], {{g_bytes + 822, 8}}},
482
+ {{&grpc_static_metadata_refcounts[76], {{g_bytes + 850, 8}}},
479
483
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
480
- {{&grpc_static_metadata_refcounts[76], {{g_bytes + 830, 19}}},
484
+ {{&grpc_static_metadata_refcounts[77], {{g_bytes + 858, 19}}},
481
485
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
482
- {{&grpc_static_metadata_refcounts[77], {{g_bytes + 849, 13}}},
486
+ {{&grpc_static_metadata_refcounts[78], {{g_bytes + 877, 13}}},
483
487
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
484
- {{&grpc_static_metadata_refcounts[78], {{g_bytes + 862, 4}}},
488
+ {{&grpc_static_metadata_refcounts[79], {{g_bytes + 890, 4}}},
485
489
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
486
- {{&grpc_static_metadata_refcounts[79], {{g_bytes + 866, 8}}},
490
+ {{&grpc_static_metadata_refcounts[80], {{g_bytes + 894, 8}}},
487
491
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
488
- {{&grpc_static_metadata_refcounts[80], {{g_bytes + 874, 12}}},
492
+ {{&grpc_static_metadata_refcounts[81], {{g_bytes + 902, 12}}},
489
493
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
490
- {{&grpc_static_metadata_refcounts[81], {{g_bytes + 886, 18}}},
494
+ {{&grpc_static_metadata_refcounts[82], {{g_bytes + 914, 18}}},
491
495
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
492
- {{&grpc_static_metadata_refcounts[82], {{g_bytes + 904, 19}}},
496
+ {{&grpc_static_metadata_refcounts[83], {{g_bytes + 932, 19}}},
493
497
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
494
- {{&grpc_static_metadata_refcounts[83], {{g_bytes + 923, 5}}},
498
+ {{&grpc_static_metadata_refcounts[84], {{g_bytes + 951, 5}}},
495
499
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
496
- {{&grpc_static_metadata_refcounts[84], {{g_bytes + 928, 7}}},
500
+ {{&grpc_static_metadata_refcounts[85], {{g_bytes + 956, 7}}},
497
501
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
498
- {{&grpc_static_metadata_refcounts[85], {{g_bytes + 935, 7}}},
502
+ {{&grpc_static_metadata_refcounts[86], {{g_bytes + 963, 7}}},
499
503
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
500
- {{&grpc_static_metadata_refcounts[86], {{g_bytes + 942, 11}}},
504
+ {{&grpc_static_metadata_refcounts[87], {{g_bytes + 970, 11}}},
501
505
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
502
- {{&grpc_static_metadata_refcounts[87], {{g_bytes + 953, 6}}},
506
+ {{&grpc_static_metadata_refcounts[88], {{g_bytes + 981, 6}}},
503
507
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
504
- {{&grpc_static_metadata_refcounts[88], {{g_bytes + 959, 10}}},
508
+ {{&grpc_static_metadata_refcounts[89], {{g_bytes + 987, 10}}},
505
509
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
506
- {{&grpc_static_metadata_refcounts[89], {{g_bytes + 969, 25}}},
510
+ {{&grpc_static_metadata_refcounts[90], {{g_bytes + 997, 25}}},
507
511
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
508
- {{&grpc_static_metadata_refcounts[90], {{g_bytes + 994, 17}}},
512
+ {{&grpc_static_metadata_refcounts[91], {{g_bytes + 1022, 17}}},
509
513
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
510
514
  {{&grpc_static_metadata_refcounts[19], {{g_bytes + 268, 10}}},
511
515
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
512
- {{&grpc_static_metadata_refcounts[91], {{g_bytes + 1011, 4}}},
516
+ {{&grpc_static_metadata_refcounts[92], {{g_bytes + 1039, 4}}},
513
517
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
514
- {{&grpc_static_metadata_refcounts[92], {{g_bytes + 1015, 3}}},
518
+ {{&grpc_static_metadata_refcounts[93], {{g_bytes + 1043, 3}}},
515
519
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
516
- {{&grpc_static_metadata_refcounts[93], {{g_bytes + 1018, 16}}},
520
+ {{&grpc_static_metadata_refcounts[94], {{g_bytes + 1046, 16}}},
517
521
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
518
522
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
519
- {&grpc_static_metadata_refcounts[94], {{g_bytes + 1034, 1}}}},
523
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1062, 1}}}},
520
524
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
521
525
  {&grpc_static_metadata_refcounts[25], {{g_bytes + 350, 1}}}},
522
526
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
523
527
  {&grpc_static_metadata_refcounts[26], {{g_bytes + 351, 1}}}},
524
528
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
525
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
529
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
526
530
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
527
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
531
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
528
532
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
529
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}}},
533
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 7}}}},
530
534
  {{&grpc_static_metadata_refcounts[5], {{g_bytes + 36, 2}}},
531
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1043, 8}}}},
535
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1071, 8}}}},
532
536
  {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
533
- {&grpc_static_metadata_refcounts[97], {{g_bytes + 1051, 16}}}},
537
+ {&grpc_static_metadata_refcounts[98], {{g_bytes + 1079, 16}}}},
534
538
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
535
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1067, 4}}}},
539
+ {&grpc_static_metadata_refcounts[99], {{g_bytes + 1095, 4}}}},
536
540
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
537
- {&grpc_static_metadata_refcounts[99], {{g_bytes + 1071, 3}}}},
541
+ {&grpc_static_metadata_refcounts[100], {{g_bytes + 1099, 3}}}},
538
542
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
539
543
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
540
544
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
541
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
545
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
542
546
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
543
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
547
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
544
548
  {{&grpc_static_metadata_refcounts[21], {{g_bytes + 282, 8}}},
545
549
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
546
- {{&grpc_static_metadata_refcounts[100], {{g_bytes + 1074, 11}}},
550
+ {{&grpc_static_metadata_refcounts[101], {{g_bytes + 1102, 11}}},
547
551
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
548
552
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
549
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
553
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
550
554
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
551
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}}},
555
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 7}}}},
552
556
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
553
- {&grpc_static_metadata_refcounts[101], {{g_bytes + 1085, 16}}}},
557
+ {&grpc_static_metadata_refcounts[102], {{g_bytes + 1113, 16}}}},
554
558
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
555
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
559
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
556
560
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
557
- {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}}},
561
+ {&grpc_static_metadata_refcounts[103], {{g_bytes + 1129, 13}}}},
558
562
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
559
- {&grpc_static_metadata_refcounts[103], {{g_bytes + 1114, 12}}}},
563
+ {&grpc_static_metadata_refcounts[104], {{g_bytes + 1142, 12}}}},
560
564
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
561
- {&grpc_static_metadata_refcounts[104], {{g_bytes + 1126, 21}}}},
565
+ {&grpc_static_metadata_refcounts[105], {{g_bytes + 1154, 21}}}},
562
566
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
563
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
567
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
564
568
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
565
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
569
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
566
570
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
567
- {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}}},
571
+ {&grpc_static_metadata_refcounts[103], {{g_bytes + 1129, 13}}}},
568
572
  };
569
573
  const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,
570
574
  79, 80, 81, 82};