grpc 1.15.0 → 1.16.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 (138) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +158 -80
  3. data/etc/roots.pem +23 -0
  4. data/include/grpc/grpc.h +13 -1
  5. data/include/grpc/grpc_security.h +2 -2
  6. data/include/grpc/grpc_security_constants.h +24 -19
  7. data/include/grpc/impl/codegen/grpc_types.h +23 -5
  8. data/include/grpc/impl/codegen/port_platform.h +1 -0
  9. data/src/core/ext/filters/client_channel/client_channel.cc +95 -10
  10. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +71 -0
  11. data/src/core/ext/filters/client_channel/client_channel_channelz.h +45 -11
  12. data/src/core/ext/filters/client_channel/connector.h +3 -0
  13. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +5 -3
  15. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +12 -32
  16. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +6 -5
  17. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +20 -15
  18. data/src/core/ext/filters/client_channel/lb_policy_factory.h +2 -4
  19. data/src/core/ext/filters/client_channel/parse_address.cc +27 -4
  20. data/src/core/ext/filters/client_channel/parse_address.h +3 -0
  21. data/src/core/ext/filters/client_channel/resolver.h +1 -12
  22. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -11
  23. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +80 -19
  24. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +9 -3
  25. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +5 -0
  26. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +70 -0
  27. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +1 -11
  28. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +2 -16
  29. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
  30. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +0 -7
  31. data/src/core/ext/filters/client_channel/subchannel.cc +45 -7
  32. data/src/core/ext/filters/client_channel/subchannel.h +16 -1
  33. data/src/core/ext/filters/client_channel/subchannel_index.cc +2 -1
  34. data/src/core/ext/filters/client_channel/subchannel_index.h +1 -4
  35. data/src/core/ext/filters/http/client/http_client_filter.cc +32 -3
  36. data/src/core/ext/filters/http/server/http_server_filter.cc +59 -1
  37. data/src/core/ext/filters/max_age/max_age_filter.cc +1 -2
  38. data/src/core/ext/filters/message_size/message_size_filter.cc +59 -3
  39. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +2 -0
  40. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +1 -1
  41. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +1 -1
  42. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +286 -228
  43. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +2 -0
  44. data/src/core/ext/transport/chttp2/transport/frame_data.cc +4 -0
  45. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +14 -3
  46. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +29 -0
  47. data/src/core/ext/transport/chttp2/transport/hpack_table.h +9 -0
  48. data/src/core/ext/transport/chttp2/transport/internal.h +10 -0
  49. data/src/core/ext/transport/chttp2/transport/parsing.cc +85 -54
  50. data/src/core/ext/transport/chttp2/transport/writing.cc +6 -0
  51. data/src/core/lib/channel/channel_trace.cc +51 -56
  52. data/src/core/lib/channel/channel_trace.h +30 -25
  53. data/src/core/lib/channel/channelz.cc +235 -61
  54. data/src/core/lib/channel/channelz.h +179 -48
  55. data/src/core/lib/channel/channelz_registry.cc +95 -23
  56. data/src/core/lib/channel/channelz_registry.h +15 -42
  57. data/src/core/lib/gpr/sync_posix.cc +42 -0
  58. data/src/core/lib/http/httpcli.cc +1 -1
  59. data/src/core/lib/iomgr/buffer_list.cc +134 -0
  60. data/src/core/lib/iomgr/buffer_list.h +96 -0
  61. data/src/core/lib/iomgr/endpoint.cc +2 -2
  62. data/src/core/lib/iomgr/endpoint.h +6 -2
  63. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
  64. data/src/core/lib/iomgr/error.cc +29 -18
  65. data/src/core/lib/iomgr/error.h +8 -0
  66. data/src/core/lib/iomgr/ev_epoll1_linux.cc +4 -0
  67. data/src/core/lib/iomgr/ev_epollex_linux.cc +4 -0
  68. data/src/core/lib/iomgr/ev_posix.cc +16 -10
  69. data/src/core/lib/iomgr/exec_ctx.h +0 -7
  70. data/src/core/lib/iomgr/{ev_epollsig_linux.h → internal_errqueue.cc} +13 -12
  71. data/src/core/lib/iomgr/internal_errqueue.h +83 -0
  72. data/src/core/lib/iomgr/port.h +11 -2
  73. data/src/core/lib/iomgr/socket_utils_common_posix.cc +90 -0
  74. data/src/core/lib/iomgr/socket_utils_posix.h +7 -0
  75. data/src/core/lib/iomgr/tcp_client_posix.cc +4 -1
  76. data/src/core/lib/iomgr/tcp_custom.cc +1 -1
  77. data/src/core/lib/iomgr/tcp_posix.cc +306 -13
  78. data/src/core/lib/iomgr/tcp_posix.h +3 -0
  79. data/src/core/lib/iomgr/tcp_server_posix.cc +2 -2
  80. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +4 -1
  81. data/src/core/lib/iomgr/tcp_windows.cc +1 -1
  82. data/src/core/lib/iomgr/timer_generic.cc +13 -12
  83. data/src/core/lib/iomgr/timer_heap.cc +2 -2
  84. data/src/core/lib/iomgr/timer_heap.h +3 -3
  85. data/src/core/lib/iomgr/timer_manager.cc +28 -3
  86. data/src/core/lib/iomgr/timer_manager.h +2 -2
  87. data/src/core/lib/iomgr/udp_server.cc +1 -1
  88. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +2 -1
  89. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +2 -1
  90. data/src/core/lib/security/security_connector/security_connector.cc +7 -7
  91. data/src/core/lib/security/transport/secure_endpoint.cc +2 -2
  92. data/src/core/lib/security/transport/security_handshaker.cc +1 -1
  93. data/src/core/lib/security/transport/server_auth_filter.cc +53 -4
  94. data/src/core/lib/slice/slice.cc +8 -0
  95. data/src/core/lib/slice/slice_internal.h +5 -0
  96. data/src/core/lib/surface/call.cc +149 -253
  97. data/src/core/lib/surface/call.h +1 -0
  98. data/src/core/lib/surface/channel.cc +17 -13
  99. data/src/core/lib/surface/completion_queue.cc +21 -17
  100. data/src/core/lib/surface/completion_queue.h +1 -18
  101. data/src/core/lib/surface/completion_queue_factory.cc +3 -3
  102. data/src/core/lib/surface/init_secure.cc +1 -1
  103. data/src/core/lib/surface/server.cc +77 -4
  104. data/src/core/lib/surface/server.h +4 -0
  105. data/src/core/lib/surface/version.cc +2 -2
  106. data/src/core/lib/transport/metadata.cc +0 -18
  107. data/src/core/lib/transport/metadata.h +0 -3
  108. data/src/core/lib/transport/metadata_batch.cc +2 -2
  109. data/src/core/lib/transport/metadata_batch.h +2 -0
  110. data/src/core/lib/transport/static_metadata.cc +220 -249
  111. data/src/core/lib/transport/static_metadata.h +189 -191
  112. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +5 -4
  113. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc +3 -1
  114. data/src/core/tsi/alts/handshaker/alts_tsi_event.cc +4 -2
  115. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +6 -5
  116. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +3 -1
  117. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +2 -2
  118. data/src/core/tsi/alts_transport_security.cc +3 -1
  119. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +2 -1
  120. data/src/ruby/ext/grpc/rb_call.c +1 -0
  121. data/src/ruby/ext/grpc/rb_channel.c +3 -0
  122. data/src/ruby/ext/grpc/rb_grpc.c +31 -1
  123. data/src/ruby/ext/grpc/rb_grpc.h +2 -0
  124. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -0
  125. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +12 -3
  126. data/src/ruby/ext/grpc/rb_server.c +2 -0
  127. data/src/ruby/lib/grpc/errors.rb +0 -1
  128. data/src/ruby/lib/grpc/generic/rpc_desc.rb +3 -3
  129. data/src/ruby/lib/grpc/generic/rpc_server.rb +1 -1
  130. data/src/ruby/lib/grpc/version.rb +1 -1
  131. data/src/ruby/spec/channel_spec.rb +44 -0
  132. data/src/ruby/spec/client_auth_spec.rb +5 -5
  133. data/src/ruby/spec/generic/client_stub_spec.rb +13 -9
  134. data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
  135. data/src/ruby/spec/pb/codegen/package_option_spec.rb +53 -0
  136. data/src/ruby/spec/support/services.rb +28 -22
  137. metadata +35 -31
  138. data/src/core/lib/iomgr/ev_epollsig_linux.cc +0 -1743
@@ -125,9 +125,6 @@ grpc_mdelem grpc_mdelem_create(
125
125
 
126
126
  bool grpc_mdelem_eq(grpc_mdelem a, grpc_mdelem b);
127
127
 
128
- size_t grpc_mdelem_get_size_in_hpack_table(grpc_mdelem elem,
129
- bool use_true_binary_metadata);
130
-
131
128
  /* Mutator and accessor for grpc_mdelem user data. The destructor function
132
129
  is used as a type tag and is checked during user_data fetch. */
133
130
  void* grpc_mdelem_get_user_data(grpc_mdelem md, void (*if_destroy_func)(void*));
@@ -105,7 +105,7 @@ static grpc_error* maybe_link_callout(grpc_metadata_batch* batch,
105
105
  return GRPC_ERROR_NONE;
106
106
  }
107
107
  if (batch->idx.array[idx] == nullptr) {
108
- if (grpc_static_callout_is_default[idx]) ++batch->list.default_count;
108
+ ++batch->list.default_count;
109
109
  batch->idx.array[idx] = storage;
110
110
  return GRPC_ERROR_NONE;
111
111
  }
@@ -121,7 +121,7 @@ static void maybe_unlink_callout(grpc_metadata_batch* batch,
121
121
  if (idx == GRPC_BATCH_CALLOUTS_COUNT) {
122
122
  return;
123
123
  }
124
- if (grpc_static_callout_is_default[idx]) --batch->list.default_count;
124
+ --batch->list.default_count;
125
125
  GPR_ASSERT(batch->idx.array[idx] != nullptr);
126
126
  batch->idx.array[idx] = nullptr;
127
127
  }
@@ -82,6 +82,7 @@ void grpc_metadata_batch_set_value(grpc_linked_mdelem* storage,
82
82
  grpc_error* grpc_metadata_batch_link_head(grpc_metadata_batch* batch,
83
83
  grpc_linked_mdelem* storage)
84
84
  GRPC_MUST_USE_RESULT;
85
+
85
86
  /** Add \a storage to the end of \a batch. storage->md is
86
87
  assumed to be valid.
87
88
  \a storage is owned by the caller and must survive for the
@@ -100,6 +101,7 @@ grpc_error* grpc_metadata_batch_link_tail(grpc_metadata_batch* batch,
100
101
  grpc_error* grpc_metadata_batch_add_head(
101
102
  grpc_metadata_batch* batch, grpc_linked_mdelem* storage,
102
103
  grpc_mdelem elem_to_add) GRPC_MUST_USE_RESULT;
104
+
103
105
  /** Add \a elem_to_add as the last element in \a batch, using
104
106
  \a storage as backing storage for the linked list element.
105
107
  \a storage is owned by the caller and must survive for the
@@ -64,46 +64,46 @@ static uint8_t g_bytes[] = {
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
66
  97, 100, 100, 101, 102, 108, 97, 116, 101, 103, 122, 105, 112, 115, 116,
67
- 114, 101, 97, 109, 47, 103, 122, 105, 112, 48, 105, 100, 101, 110, 116,
68
- 105, 116, 121, 116, 114, 97, 105, 108, 101, 114, 115, 97, 112, 112, 108,
69
- 105, 99, 97, 116, 105, 111, 110, 47, 103, 114, 112, 99, 80, 79, 83,
70
- 84, 50, 48, 48, 52, 48, 52, 104, 116, 116, 112, 104, 116, 116, 112,
71
- 115, 103, 114, 112, 99, 71, 69, 84, 80, 85, 84, 47, 47, 105, 110,
72
- 100, 101, 120, 46, 104, 116, 109, 108, 50, 48, 52, 50, 48, 54, 51,
73
- 48, 52, 52, 48, 48, 53, 48, 48, 97, 99, 99, 101, 112, 116, 45,
74
- 99, 104, 97, 114, 115, 101, 116, 103, 122, 105, 112, 44, 32, 100, 101,
75
- 102, 108, 97, 116, 101, 97, 99, 99, 101, 112, 116, 45, 108, 97, 110,
76
- 103, 117, 97, 103, 101, 97, 99, 99, 101, 112, 116, 45, 114, 97, 110,
77
- 103, 101, 115, 97, 99, 99, 101, 112, 116, 97, 99, 99, 101, 115, 115,
78
- 45, 99, 111, 110, 116, 114, 111, 108, 45, 97, 108, 108, 111, 119, 45,
79
- 111, 114, 105, 103, 105, 110, 97, 103, 101, 97, 108, 108, 111, 119, 97,
80
- 117, 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 99, 97, 99,
81
- 104, 101, 45, 99, 111, 110, 116, 114, 111, 108, 99, 111, 110, 116, 101,
82
- 110, 116, 45, 100, 105, 115, 112, 111, 115, 105, 116, 105, 111, 110, 99,
83
- 111, 110, 116, 101, 110, 116, 45, 108, 97, 110, 103, 117, 97, 103, 101,
84
- 99, 111, 110, 116, 101, 110, 116, 45, 108, 101, 110, 103, 116, 104, 99,
85
- 111, 110, 116, 101, 110, 116, 45, 108, 111, 99, 97, 116, 105, 111, 110,
86
- 99, 111, 110, 116, 101, 110, 116, 45, 114, 97, 110, 103, 101, 99, 111,
87
- 111, 107, 105, 101, 100, 97, 116, 101, 101, 116, 97, 103, 101, 120, 112,
88
- 101, 99, 116, 101, 120, 112, 105, 114, 101, 115, 102, 114, 111, 109, 105,
89
- 102, 45, 109, 97, 116, 99, 104, 105, 102, 45, 109, 111, 100, 105, 102,
90
- 105, 101, 100, 45, 115, 105, 110, 99, 101, 105, 102, 45, 110, 111, 110,
91
- 101, 45, 109, 97, 116, 99, 104, 105, 102, 45, 114, 97, 110, 103, 101,
92
- 105, 102, 45, 117, 110, 109, 111, 100, 105, 102, 105, 101, 100, 45, 115,
93
- 105, 110, 99, 101, 108, 97, 115, 116, 45, 109, 111, 100, 105, 102, 105,
94
- 101, 100, 108, 98, 45, 99, 111, 115, 116, 45, 98, 105, 110, 108, 105,
95
- 110, 107, 108, 111, 99, 97, 116, 105, 111, 110, 109, 97, 120, 45, 102,
96
- 111, 114, 119, 97, 114, 100, 115, 112, 114, 111, 120, 121, 45, 97, 117,
97
- 116, 104, 101, 110, 116, 105, 99, 97, 116, 101, 112, 114, 111, 120, 121,
98
- 45, 97, 117, 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 114,
99
- 97, 110, 103, 101, 114, 101, 102, 101, 114, 101, 114, 114, 101, 102, 114,
100
- 101, 115, 104, 114, 101, 116, 114, 121, 45, 97, 102, 116, 101, 114, 115,
101
- 101, 114, 118, 101, 114, 115, 101, 116, 45, 99, 111, 111, 107, 105, 101,
102
- 115, 116, 114, 105, 99, 116, 45, 116, 114, 97, 110, 115, 112, 111, 114,
103
- 116, 45, 115, 101, 99, 117, 114, 105, 116, 121, 116, 114, 97, 110, 115,
104
- 102, 101, 114, 45, 101, 110, 99, 111, 100, 105, 110, 103, 118, 97, 114,
105
- 121, 118, 105, 97, 119, 119, 119, 45, 97, 117, 116, 104, 101, 110, 116,
106
- 105, 99, 97, 116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100,
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
107
  101, 102, 108, 97, 116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44,
108
108
  103, 122, 105, 112, 100, 101, 102, 108, 97, 116, 101, 44, 103, 122, 105,
109
109
  112, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102, 108, 97,
@@ -265,69 +265,69 @@ const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
265
265
  {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}},
266
266
  {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}},
267
267
  {&grpc_static_metadata_refcounts[37], {{g_bytes + 493, 11}}},
268
- {&grpc_static_metadata_refcounts[38], {{g_bytes + 504, 1}}},
269
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}},
270
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 513, 8}}},
271
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 521, 16}}},
272
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 537, 4}}},
273
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 541, 3}}},
274
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 544, 3}}},
275
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 547, 4}}},
276
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 551, 5}}},
277
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 556, 4}}},
278
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 560, 3}}},
279
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 563, 3}}},
280
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 566, 1}}},
281
- {&grpc_static_metadata_refcounts[51], {{g_bytes + 567, 11}}},
282
- {&grpc_static_metadata_refcounts[52], {{g_bytes + 578, 3}}},
283
- {&grpc_static_metadata_refcounts[53], {{g_bytes + 581, 3}}},
284
- {&grpc_static_metadata_refcounts[54], {{g_bytes + 584, 3}}},
285
- {&grpc_static_metadata_refcounts[55], {{g_bytes + 587, 3}}},
286
- {&grpc_static_metadata_refcounts[56], {{g_bytes + 590, 3}}},
287
- {&grpc_static_metadata_refcounts[57], {{g_bytes + 593, 14}}},
288
- {&grpc_static_metadata_refcounts[58], {{g_bytes + 607, 13}}},
289
- {&grpc_static_metadata_refcounts[59], {{g_bytes + 620, 15}}},
290
- {&grpc_static_metadata_refcounts[60], {{g_bytes + 635, 13}}},
291
- {&grpc_static_metadata_refcounts[61], {{g_bytes + 648, 6}}},
292
- {&grpc_static_metadata_refcounts[62], {{g_bytes + 654, 27}}},
293
- {&grpc_static_metadata_refcounts[63], {{g_bytes + 681, 3}}},
294
- {&grpc_static_metadata_refcounts[64], {{g_bytes + 684, 5}}},
295
- {&grpc_static_metadata_refcounts[65], {{g_bytes + 689, 13}}},
296
- {&grpc_static_metadata_refcounts[66], {{g_bytes + 702, 13}}},
297
- {&grpc_static_metadata_refcounts[67], {{g_bytes + 715, 19}}},
298
- {&grpc_static_metadata_refcounts[68], {{g_bytes + 734, 16}}},
299
- {&grpc_static_metadata_refcounts[69], {{g_bytes + 750, 14}}},
300
- {&grpc_static_metadata_refcounts[70], {{g_bytes + 764, 16}}},
301
- {&grpc_static_metadata_refcounts[71], {{g_bytes + 780, 13}}},
302
- {&grpc_static_metadata_refcounts[72], {{g_bytes + 793, 6}}},
303
- {&grpc_static_metadata_refcounts[73], {{g_bytes + 799, 4}}},
304
- {&grpc_static_metadata_refcounts[74], {{g_bytes + 803, 4}}},
305
- {&grpc_static_metadata_refcounts[75], {{g_bytes + 807, 6}}},
306
- {&grpc_static_metadata_refcounts[76], {{g_bytes + 813, 7}}},
307
- {&grpc_static_metadata_refcounts[77], {{g_bytes + 820, 4}}},
308
- {&grpc_static_metadata_refcounts[78], {{g_bytes + 824, 8}}},
309
- {&grpc_static_metadata_refcounts[79], {{g_bytes + 832, 17}}},
310
- {&grpc_static_metadata_refcounts[80], {{g_bytes + 849, 13}}},
311
- {&grpc_static_metadata_refcounts[81], {{g_bytes + 862, 8}}},
312
- {&grpc_static_metadata_refcounts[82], {{g_bytes + 870, 19}}},
313
- {&grpc_static_metadata_refcounts[83], {{g_bytes + 889, 13}}},
314
- {&grpc_static_metadata_refcounts[84], {{g_bytes + 902, 11}}},
315
- {&grpc_static_metadata_refcounts[85], {{g_bytes + 913, 4}}},
316
- {&grpc_static_metadata_refcounts[86], {{g_bytes + 917, 8}}},
317
- {&grpc_static_metadata_refcounts[87], {{g_bytes + 925, 12}}},
318
- {&grpc_static_metadata_refcounts[88], {{g_bytes + 937, 18}}},
319
- {&grpc_static_metadata_refcounts[89], {{g_bytes + 955, 19}}},
320
- {&grpc_static_metadata_refcounts[90], {{g_bytes + 974, 5}}},
321
- {&grpc_static_metadata_refcounts[91], {{g_bytes + 979, 7}}},
322
- {&grpc_static_metadata_refcounts[92], {{g_bytes + 986, 7}}},
323
- {&grpc_static_metadata_refcounts[93], {{g_bytes + 993, 11}}},
324
- {&grpc_static_metadata_refcounts[94], {{g_bytes + 1004, 6}}},
325
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1010, 10}}},
326
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1020, 25}}},
327
- {&grpc_static_metadata_refcounts[97], {{g_bytes + 1045, 17}}},
328
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1062, 4}}},
329
- {&grpc_static_metadata_refcounts[99], {{g_bytes + 1066, 3}}},
330
- {&grpc_static_metadata_refcounts[100], {{g_bytes + 1069, 16}}},
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
331
  {&grpc_static_metadata_refcounts[101], {{g_bytes + 1085, 16}}},
332
332
  {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}},
333
333
  {&grpc_static_metadata_refcounts[103], {{g_bytes + 1114, 12}}},
@@ -341,14 +341,15 @@ uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
341
341
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};
342
342
 
343
343
  static const int8_t elems_r[] = {
344
- 16, 11, -1, 0, 15, 2, -78, 24, 0, 18, -5, 0, 0, 0, 17, 14, -8, 0,
345
- 0, 27, 8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
346
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
347
- 0, 0, 0, -64, 0, -44, -43, -70, 0, 34, 33, 33, 32, 31, 30, 29, 28, 27,
348
- 27, 26, 25, 24, 23, 22, 21, 20, 20, 19, 19, 18, 17, 16, 15, 14, 13, 12,
349
- 11, 14, 13, 12, 11, 10, 9, 9, 8, 7, 6, 5, 0};
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};
350
351
  static uint32_t elems_phash(uint32_t i) {
351
- i -= 50;
352
+ i -= 40;
352
353
  uint32_t x = i % 103;
353
354
  uint32_t y = i / 103;
354
355
  uint32_t h = x;
@@ -360,28 +361,25 @@ static uint32_t elems_phash(uint32_t i) {
360
361
  }
361
362
 
362
363
  static const uint16_t elem_keys[] = {
363
- 1085, 1086, 565, 1709, 1089, 262, 263, 264, 265, 266, 1716,
364
- 153, 154, 1719, 760, 761, 50, 51, 465, 466, 467, 980,
365
- 981, 1604, 1499, 984, 773, 2129, 2234, 6014, 1611, 6434, 1738,
366
- 1614, 6539, 6644, 1511, 6749, 6854, 6959, 7064, 7169, 7274, 7379,
367
- 2024, 7484, 7589, 7694, 7799, 7904, 8009, 8114, 8219, 6224, 8324,
368
- 8429, 6329, 8534, 8639, 8744, 8849, 8954, 9059, 9164, 9269, 9374,
369
- 1151, 1152, 1153, 1154, 9479, 9584, 9689, 9794, 9899, 10004, 1782,
370
- 10109, 10214, 10319, 10424, 10529, 0, 0, 0, 0, 0, 344,
371
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
372
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
373
- 0, 253, 254, 147, 0, 0, 0, 0, 0, 0, 0,
374
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
375
- 0, 0, 0, 0};
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};
376
376
  static const uint8_t elem_idxs[] = {
377
- 77, 79, 6, 25, 76, 19, 20, 21, 22, 23, 84, 15, 16, 83, 1,
378
- 2, 17, 18, 11, 12, 13, 5, 4, 38, 43, 3, 0, 50, 57, 24,
379
- 37, 29, 26, 36, 30, 31, 7, 32, 33, 34, 35, 39, 40, 41, 72,
380
- 42, 44, 45, 46, 47, 48, 49, 51, 27, 52, 53, 28, 54, 55, 56,
381
- 58, 59, 60, 61, 62, 63, 78, 80, 81, 82, 64, 65, 66, 67, 68,
382
- 69, 85, 70, 71, 73, 74, 75, 255, 255, 255, 255, 255, 14, 255, 255,
383
- 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
384
- 255, 255, 255, 255, 255, 255, 9, 10, 8};
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};
385
383
 
386
384
  grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
387
385
  if (a == -1 || b == -1) return GRPC_MDNULL;
@@ -395,160 +393,160 @@ grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
395
393
  }
396
394
 
397
395
  grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
398
- {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
399
- {&grpc_static_metadata_refcounts[38], {{g_bytes + 504, 1}}}},
400
- {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
401
- {&grpc_static_metadata_refcounts[25], {{g_bytes + 350, 1}}}},
402
- {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
403
- {&grpc_static_metadata_refcounts[26], {{g_bytes + 351, 1}}}},
404
- {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
405
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
406
- {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
407
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
408
- {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
409
- {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}}},
410
- {{&grpc_static_metadata_refcounts[5], {{g_bytes + 36, 2}}},
411
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 513, 8}}}},
412
- {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
413
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 521, 16}}}},
414
- {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
415
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 537, 4}}}},
416
- {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
417
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 541, 3}}}},
418
- {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
419
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 544, 3}}}},
420
- {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
421
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 547, 4}}}},
422
- {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
423
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 551, 5}}}},
424
- {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
425
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 556, 4}}}},
426
396
  {{&grpc_static_metadata_refcounts[3], {{g_bytes + 19, 10}}},
427
397
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
428
398
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
429
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 560, 3}}}},
399
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 504, 3}}}},
430
400
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
431
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 563, 3}}}},
401
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 507, 4}}}},
432
402
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
433
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 566, 1}}}},
403
+ {&grpc_static_metadata_refcounts[40], {{g_bytes + 511, 1}}}},
434
404
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
435
- {&grpc_static_metadata_refcounts[51], {{g_bytes + 567, 11}}}},
405
+ {&grpc_static_metadata_refcounts[41], {{g_bytes + 512, 11}}}},
406
+ {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
407
+ {&grpc_static_metadata_refcounts[42], {{g_bytes + 523, 4}}}},
408
+ {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
409
+ {&grpc_static_metadata_refcounts[43], {{g_bytes + 527, 5}}}},
436
410
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
437
- {&grpc_static_metadata_refcounts[52], {{g_bytes + 578, 3}}}},
411
+ {&grpc_static_metadata_refcounts[44], {{g_bytes + 532, 3}}}},
438
412
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
439
- {&grpc_static_metadata_refcounts[53], {{g_bytes + 581, 3}}}},
413
+ {&grpc_static_metadata_refcounts[45], {{g_bytes + 535, 3}}}},
440
414
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
441
- {&grpc_static_metadata_refcounts[54], {{g_bytes + 584, 3}}}},
415
+ {&grpc_static_metadata_refcounts[46], {{g_bytes + 538, 3}}}},
442
416
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
443
- {&grpc_static_metadata_refcounts[55], {{g_bytes + 587, 3}}}},
417
+ {&grpc_static_metadata_refcounts[47], {{g_bytes + 541, 3}}}},
444
418
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
445
- {&grpc_static_metadata_refcounts[56], {{g_bytes + 590, 3}}}},
446
- {{&grpc_static_metadata_refcounts[57], {{g_bytes + 593, 14}}},
447
- {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
448
- {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
419
+ {&grpc_static_metadata_refcounts[48], {{g_bytes + 544, 3}}}},
420
+ {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
421
+ {&grpc_static_metadata_refcounts[49], {{g_bytes + 547, 3}}}},
422
+ {{&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}}},
449
425
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
450
426
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
451
- {&grpc_static_metadata_refcounts[58], {{g_bytes + 607, 13}}}},
452
- {{&grpc_static_metadata_refcounts[59], {{g_bytes + 620, 15}}},
427
+ {&grpc_static_metadata_refcounts[52], {{g_bytes + 567, 13}}}},
428
+ {{&grpc_static_metadata_refcounts[53], {{g_bytes + 580, 15}}},
453
429
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
454
- {{&grpc_static_metadata_refcounts[60], {{g_bytes + 635, 13}}},
430
+ {{&grpc_static_metadata_refcounts[54], {{g_bytes + 595, 13}}},
455
431
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
456
- {{&grpc_static_metadata_refcounts[61], {{g_bytes + 648, 6}}},
432
+ {{&grpc_static_metadata_refcounts[55], {{g_bytes + 608, 6}}},
457
433
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
458
- {{&grpc_static_metadata_refcounts[62], {{g_bytes + 654, 27}}},
434
+ {{&grpc_static_metadata_refcounts[56], {{g_bytes + 614, 27}}},
459
435
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
460
- {{&grpc_static_metadata_refcounts[63], {{g_bytes + 681, 3}}},
436
+ {{&grpc_static_metadata_refcounts[57], {{g_bytes + 641, 3}}},
461
437
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
462
- {{&grpc_static_metadata_refcounts[64], {{g_bytes + 684, 5}}},
438
+ {{&grpc_static_metadata_refcounts[58], {{g_bytes + 644, 5}}},
463
439
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
464
- {{&grpc_static_metadata_refcounts[65], {{g_bytes + 689, 13}}},
440
+ {{&grpc_static_metadata_refcounts[59], {{g_bytes + 649, 13}}},
465
441
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
466
- {{&grpc_static_metadata_refcounts[66], {{g_bytes + 702, 13}}},
442
+ {{&grpc_static_metadata_refcounts[60], {{g_bytes + 662, 13}}},
467
443
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
468
- {{&grpc_static_metadata_refcounts[67], {{g_bytes + 715, 19}}},
444
+ {{&grpc_static_metadata_refcounts[61], {{g_bytes + 675, 19}}},
469
445
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
470
- {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
471
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
472
- {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
473
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
474
446
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
475
447
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
476
- {{&grpc_static_metadata_refcounts[68], {{g_bytes + 734, 16}}},
448
+ {{&grpc_static_metadata_refcounts[62], {{g_bytes + 694, 16}}},
477
449
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
478
- {{&grpc_static_metadata_refcounts[69], {{g_bytes + 750, 14}}},
450
+ {{&grpc_static_metadata_refcounts[63], {{g_bytes + 710, 14}}},
479
451
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
480
- {{&grpc_static_metadata_refcounts[70], {{g_bytes + 764, 16}}},
452
+ {{&grpc_static_metadata_refcounts[64], {{g_bytes + 724, 16}}},
481
453
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
482
- {{&grpc_static_metadata_refcounts[71], {{g_bytes + 780, 13}}},
454
+ {{&grpc_static_metadata_refcounts[65], {{g_bytes + 740, 13}}},
483
455
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
484
456
  {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
485
457
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
486
- {{&grpc_static_metadata_refcounts[72], {{g_bytes + 793, 6}}},
458
+ {{&grpc_static_metadata_refcounts[66], {{g_bytes + 753, 6}}},
487
459
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
488
- {{&grpc_static_metadata_refcounts[73], {{g_bytes + 799, 4}}},
460
+ {{&grpc_static_metadata_refcounts[67], {{g_bytes + 759, 4}}},
489
461
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
490
- {{&grpc_static_metadata_refcounts[74], {{g_bytes + 803, 4}}},
462
+ {{&grpc_static_metadata_refcounts[68], {{g_bytes + 763, 4}}},
491
463
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
492
- {{&grpc_static_metadata_refcounts[75], {{g_bytes + 807, 6}}},
464
+ {{&grpc_static_metadata_refcounts[69], {{g_bytes + 767, 6}}},
493
465
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
494
- {{&grpc_static_metadata_refcounts[76], {{g_bytes + 813, 7}}},
466
+ {{&grpc_static_metadata_refcounts[70], {{g_bytes + 773, 7}}},
495
467
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
496
- {{&grpc_static_metadata_refcounts[77], {{g_bytes + 820, 4}}},
468
+ {{&grpc_static_metadata_refcounts[71], {{g_bytes + 780, 4}}},
497
469
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
498
470
  {{&grpc_static_metadata_refcounts[20], {{g_bytes + 278, 4}}},
499
471
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
500
- {{&grpc_static_metadata_refcounts[78], {{g_bytes + 824, 8}}},
472
+ {{&grpc_static_metadata_refcounts[72], {{g_bytes + 784, 8}}},
501
473
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
502
- {{&grpc_static_metadata_refcounts[79], {{g_bytes + 832, 17}}},
474
+ {{&grpc_static_metadata_refcounts[73], {{g_bytes + 792, 17}}},
503
475
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
504
- {{&grpc_static_metadata_refcounts[80], {{g_bytes + 849, 13}}},
476
+ {{&grpc_static_metadata_refcounts[74], {{g_bytes + 809, 13}}},
505
477
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
506
- {{&grpc_static_metadata_refcounts[81], {{g_bytes + 862, 8}}},
478
+ {{&grpc_static_metadata_refcounts[75], {{g_bytes + 822, 8}}},
507
479
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
508
- {{&grpc_static_metadata_refcounts[82], {{g_bytes + 870, 19}}},
480
+ {{&grpc_static_metadata_refcounts[76], {{g_bytes + 830, 19}}},
509
481
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
510
- {{&grpc_static_metadata_refcounts[83], {{g_bytes + 889, 13}}},
482
+ {{&grpc_static_metadata_refcounts[77], {{g_bytes + 849, 13}}},
511
483
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
512
- {{&grpc_static_metadata_refcounts[21], {{g_bytes + 282, 8}}},
484
+ {{&grpc_static_metadata_refcounts[78], {{g_bytes + 862, 4}}},
513
485
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
514
- {{&grpc_static_metadata_refcounts[84], {{g_bytes + 902, 11}}},
486
+ {{&grpc_static_metadata_refcounts[79], {{g_bytes + 866, 8}}},
515
487
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
516
- {{&grpc_static_metadata_refcounts[85], {{g_bytes + 913, 4}}},
488
+ {{&grpc_static_metadata_refcounts[80], {{g_bytes + 874, 12}}},
517
489
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
518
- {{&grpc_static_metadata_refcounts[86], {{g_bytes + 917, 8}}},
490
+ {{&grpc_static_metadata_refcounts[81], {{g_bytes + 886, 18}}},
519
491
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
520
- {{&grpc_static_metadata_refcounts[87], {{g_bytes + 925, 12}}},
492
+ {{&grpc_static_metadata_refcounts[82], {{g_bytes + 904, 19}}},
521
493
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
522
- {{&grpc_static_metadata_refcounts[88], {{g_bytes + 937, 18}}},
494
+ {{&grpc_static_metadata_refcounts[83], {{g_bytes + 923, 5}}},
523
495
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
524
- {{&grpc_static_metadata_refcounts[89], {{g_bytes + 955, 19}}},
496
+ {{&grpc_static_metadata_refcounts[84], {{g_bytes + 928, 7}}},
525
497
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
526
- {{&grpc_static_metadata_refcounts[90], {{g_bytes + 974, 5}}},
498
+ {{&grpc_static_metadata_refcounts[85], {{g_bytes + 935, 7}}},
527
499
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
528
- {{&grpc_static_metadata_refcounts[91], {{g_bytes + 979, 7}}},
500
+ {{&grpc_static_metadata_refcounts[86], {{g_bytes + 942, 11}}},
529
501
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
530
- {{&grpc_static_metadata_refcounts[92], {{g_bytes + 986, 7}}},
502
+ {{&grpc_static_metadata_refcounts[87], {{g_bytes + 953, 6}}},
531
503
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
532
- {{&grpc_static_metadata_refcounts[93], {{g_bytes + 993, 11}}},
504
+ {{&grpc_static_metadata_refcounts[88], {{g_bytes + 959, 10}}},
533
505
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
534
- {{&grpc_static_metadata_refcounts[94], {{g_bytes + 1004, 6}}},
506
+ {{&grpc_static_metadata_refcounts[89], {{g_bytes + 969, 25}}},
535
507
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
536
- {{&grpc_static_metadata_refcounts[95], {{g_bytes + 1010, 10}}},
508
+ {{&grpc_static_metadata_refcounts[90], {{g_bytes + 994, 17}}},
537
509
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
538
- {{&grpc_static_metadata_refcounts[96], {{g_bytes + 1020, 25}}},
510
+ {{&grpc_static_metadata_refcounts[19], {{g_bytes + 268, 10}}},
539
511
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
540
- {{&grpc_static_metadata_refcounts[97], {{g_bytes + 1045, 17}}},
512
+ {{&grpc_static_metadata_refcounts[91], {{g_bytes + 1011, 4}}},
541
513
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
542
- {{&grpc_static_metadata_refcounts[19], {{g_bytes + 268, 10}}},
514
+ {{&grpc_static_metadata_refcounts[92], {{g_bytes + 1015, 3}}},
543
515
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
544
- {{&grpc_static_metadata_refcounts[98], {{g_bytes + 1062, 4}}},
516
+ {{&grpc_static_metadata_refcounts[93], {{g_bytes + 1018, 16}}},
517
+ {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
518
+ {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
519
+ {&grpc_static_metadata_refcounts[94], {{g_bytes + 1034, 1}}}},
520
+ {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
521
+ {&grpc_static_metadata_refcounts[25], {{g_bytes + 350, 1}}}},
522
+ {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
523
+ {&grpc_static_metadata_refcounts[26], {{g_bytes + 351, 1}}}},
524
+ {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
525
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
526
+ {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
527
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
528
+ {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
529
+ {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}}},
530
+ {{&grpc_static_metadata_refcounts[5], {{g_bytes + 36, 2}}},
531
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1043, 8}}}},
532
+ {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
533
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1051, 16}}}},
534
+ {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
535
+ {&grpc_static_metadata_refcounts[98], {{g_bytes + 1067, 4}}}},
536
+ {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
537
+ {&grpc_static_metadata_refcounts[99], {{g_bytes + 1071, 3}}}},
538
+ {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
545
539
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
546
- {{&grpc_static_metadata_refcounts[99], {{g_bytes + 1066, 3}}},
540
+ {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
541
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
542
+ {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
543
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
544
+ {{&grpc_static_metadata_refcounts[21], {{g_bytes + 282, 8}}},
547
545
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
548
- {{&grpc_static_metadata_refcounts[100], {{g_bytes + 1069, 16}}},
546
+ {{&grpc_static_metadata_refcounts[100], {{g_bytes + 1074, 11}}},
549
547
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
550
548
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
551
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
549
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
552
550
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
553
551
  {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 7}}}},
554
552
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
@@ -562,39 +560,12 @@ grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
562
560
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
563
561
  {&grpc_static_metadata_refcounts[104], {{g_bytes + 1126, 21}}}},
564
562
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
565
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 505, 8}}}},
563
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1035, 8}}}},
566
564
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
567
565
  {&grpc_static_metadata_refcounts[36], {{g_bytes + 489, 4}}}},
568
566
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
569
567
  {&grpc_static_metadata_refcounts[102], {{g_bytes + 1101, 13}}}},
570
568
  };
571
- bool grpc_static_callout_is_default[GRPC_BATCH_CALLOUTS_COUNT] = {
572
- true, // :path
573
- true, // :method
574
- true, // :status
575
- true, // :authority
576
- true, // :scheme
577
- true, // te
578
- true, // grpc-message
579
- true, // grpc-status
580
- true, // grpc-payload-bin
581
- true, // grpc-encoding
582
- true, // grpc-accept-encoding
583
- true, // grpc-server-stats-bin
584
- true, // grpc-tags-bin
585
- true, // grpc-trace-bin
586
- true, // content-type
587
- true, // content-encoding
588
- true, // accept-encoding
589
- true, // grpc-internal-encoding-request
590
- true, // grpc-internal-stream-encoding-request
591
- true, // user-agent
592
- true, // host
593
- true, // lb-token
594
- true, // grpc-previous-rpc-attempts
595
- true, // grpc-retry-pushback-ms
596
- };
597
-
598
569
  const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,
599
570
  79, 80, 81, 82};
600
571