grpc 1.17.1 → 1.18.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.
- checksums.yaml +4 -4
- data/Makefile +1228 -988
- data/etc/roots.pem +242 -30
- data/include/grpc/grpc.h +2 -1
- data/include/grpc/grpc_security_constants.h +3 -3
- data/include/grpc/impl/codegen/atm_gcc_sync.h +2 -0
- data/include/grpc/impl/codegen/atm_windows.h +2 -0
- data/include/grpc/impl/codegen/compression_types.h +2 -1
- data/include/grpc/impl/codegen/grpc_types.h +1 -1
- data/include/grpc/impl/codegen/port_platform.h +9 -0
- data/src/core/ext/filters/client_channel/client_channel.cc +163 -882
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +2 -4
- data/src/core/ext/filters/client_channel/health/health_check_client.h +2 -3
- data/src/core/ext/filters/client_channel/lb_policy.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy.h +8 -17
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +176 -216
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +20 -23
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +49 -52
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +13 -35
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +31 -30
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +69 -225
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc +20 -23
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +2 -84
- data/src/core/ext/filters/client_channel/request_routing.cc +936 -0
- data/src/core/ext/filters/client_channel/request_routing.h +177 -0
- data/src/core/ext/filters/client_channel/resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +37 -26
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +30 -18
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +119 -100
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +8 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +5 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +2 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +12 -14
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +5 -9
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +2 -1
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +1 -2
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +17 -17
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +45 -52
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +13 -17
- data/src/core/ext/filters/client_channel/server_address.cc +103 -0
- data/src/core/ext/filters/client_channel/server_address.h +108 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +10 -8
- data/src/core/ext/filters/client_channel/subchannel.h +9 -6
- data/src/core/ext/filters/client_channel/subchannel_index.cc +20 -27
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +3 -2
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +8 -9
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1 -1
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +1 -1
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +8 -11
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +24 -54
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -1
- data/src/core/ext/transport/chttp2/transport/context_list.cc +67 -0
- data/src/core/ext/transport/chttp2/transport/context_list.h +53 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +38 -11
- data/src/core/ext/transport/chttp2/transport/writing.cc +5 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -1
- data/src/core/lib/channel/channelz.cc +19 -18
- data/src/core/lib/channel/channelz.h +7 -1
- data/src/core/lib/channel/channelz_registry.cc +3 -2
- data/src/core/lib/debug/trace.cc +3 -0
- data/src/core/lib/debug/trace.h +5 -3
- data/src/core/lib/gpr/sync_posix.cc +96 -4
- data/src/core/lib/gprpp/inlined_vector.h +25 -19
- data/src/core/lib/gprpp/memory.h +2 -11
- data/src/core/lib/gprpp/orphanable.h +18 -82
- data/src/core/lib/gprpp/ref_counted.h +75 -84
- data/src/core/lib/gprpp/ref_counted_ptr.h +22 -17
- data/src/core/lib/http/httpcli_security_connector.cc +101 -94
- data/src/core/lib/http/parser.h +5 -5
- data/src/core/lib/iomgr/buffer_list.cc +16 -5
- data/src/core/lib/iomgr/buffer_list.h +10 -3
- data/src/core/lib/iomgr/call_combiner.cc +50 -2
- data/src/core/lib/iomgr/call_combiner.h +29 -2
- data/src/core/lib/iomgr/dynamic_annotations.h +67 -0
- data/src/core/lib/iomgr/endpoint.cc +4 -0
- data/src/core/lib/iomgr/endpoint.h +3 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +4 -0
- data/src/core/lib/iomgr/ev_epollex_linux.cc +4 -0
- data/src/core/lib/iomgr/ev_poll_posix.cc +4 -0
- data/src/core/lib/iomgr/ev_posix.cc +15 -7
- data/src/core/lib/iomgr/ev_posix.h +10 -0
- data/src/core/lib/iomgr/exec_ctx.cc +13 -0
- data/src/core/lib/iomgr/fork_posix.cc +1 -1
- data/src/core/lib/iomgr/internal_errqueue.cc +36 -3
- data/src/core/lib/iomgr/internal_errqueue.h +7 -1
- data/src/core/lib/iomgr/iomgr.cc +7 -0
- data/src/core/lib/iomgr/iomgr.h +4 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +3 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +4 -0
- data/src/core/lib/iomgr/iomgr_internal.h +4 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +6 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +4 -1
- data/src/core/lib/iomgr/port.h +1 -2
- data/src/core/lib/iomgr/resource_quota.cc +1 -0
- data/src/core/lib/iomgr/sockaddr_utils.cc +1 -0
- data/src/core/lib/iomgr/tcp_custom.cc +4 -1
- data/src/core/lib/iomgr/tcp_posix.cc +95 -35
- data/src/core/lib/iomgr/tcp_windows.cc +4 -1
- data/src/core/lib/iomgr/timer_manager.cc +6 -0
- data/src/core/lib/security/context/security_context.cc +75 -108
- data/src/core/lib/security/context/security_context.h +59 -35
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +36 -48
- data/src/core/lib/security/credentials/alts/alts_credentials.h +37 -10
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +97 -157
- data/src/core/lib/security/credentials/composite/composite_credentials.h +60 -24
- data/src/core/lib/security/credentials/credentials.cc +18 -142
- data/src/core/lib/security/credentials/credentials.h +119 -95
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +46 -71
- data/src/core/lib/security/credentials/fake/fake_credentials.h +23 -5
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +144 -51
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +28 -5
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +27 -35
- data/src/core/lib/security/credentials/iam/iam_credentials.h +18 -4
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +60 -69
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +29 -10
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +2 -0
- data/src/core/lib/security/credentials/local/local_credentials.cc +19 -32
- data/src/core/lib/security/credentials/local/local_credentials.h +32 -11
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +130 -149
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +74 -29
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +59 -77
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +40 -17
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +66 -83
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +58 -15
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +152 -177
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +12 -10
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +210 -215
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +9 -6
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +176 -169
- data/src/core/lib/security/security_connector/local/local_security_connector.h +10 -9
- data/src/core/lib/security/security_connector/security_connector.cc +41 -124
- data/src/core/lib/security/security_connector/security_connector.h +102 -105
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +348 -370
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +14 -12
- data/src/core/lib/security/security_connector/ssl_utils.cc +13 -9
- data/src/core/lib/security/security_connector/ssl_utils.h +3 -1
- data/src/core/lib/security/transport/client_auth_filter.cc +50 -50
- data/src/core/lib/security/transport/secure_endpoint.cc +7 -1
- data/src/core/lib/security/transport/security_handshaker.cc +82 -66
- data/src/core/lib/security/transport/server_auth_filter.cc +15 -13
- data/src/core/lib/surface/init.cc +1 -0
- data/src/core/lib/surface/server.cc +13 -11
- data/src/core/lib/surface/server.h +6 -6
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/metadata.cc +1 -0
- data/src/core/lib/transport/static_metadata.cc +228 -221
- data/src/core/lib/transport/static_metadata.h +75 -71
- data/src/core/lib/transport/transport.cc +2 -1
- data/src/core/lib/transport/transport.h +5 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +9 -2
- data/src/core/tsi/ssl_transport_security.cc +35 -24
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +1 -1
- data/src/ruby/lib/grpc/generic/rpc_server.rb +61 -0
- data/src/ruby/lib/grpc/generic/service.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/checker.rb +2 -3
- data/src/ruby/spec/generic/rpc_server_spec.rb +22 -0
- data/src/ruby/spec/support/services.rb +1 -0
- metadata +37 -32
- data/src/core/ext/filters/client_channel/lb_policy_factory.cc +0 -163
@@ -39,8 +39,12 @@ enum async_state {
|
|
39
39
|
};
|
40
40
|
|
41
41
|
struct channel_data {
|
42
|
-
grpc_auth_context* auth_context
|
43
|
-
|
42
|
+
channel_data(grpc_auth_context* auth_context, grpc_server_credentials* creds)
|
43
|
+
: auth_context(auth_context->Ref()), creds(creds->Ref()) {}
|
44
|
+
~channel_data() { auth_context.reset(DEBUG_LOCATION, "server_auth_filter"); }
|
45
|
+
|
46
|
+
grpc_core::RefCountedPtr<grpc_auth_context> auth_context;
|
47
|
+
grpc_core::RefCountedPtr<grpc_server_credentials> creds;
|
44
48
|
};
|
45
49
|
|
46
50
|
struct call_data {
|
@@ -58,7 +62,7 @@ struct call_data {
|
|
58
62
|
grpc_server_security_context_create(args.arena);
|
59
63
|
channel_data* chand = static_cast<channel_data*>(elem->channel_data);
|
60
64
|
server_ctx->auth_context =
|
61
|
-
|
65
|
+
chand->auth_context->Ref(DEBUG_LOCATION, "server_auth_filter");
|
62
66
|
if (args.context[GRPC_CONTEXT_SECURITY].value != nullptr) {
|
63
67
|
args.context[GRPC_CONTEXT_SECURITY].destroy(
|
64
68
|
args.context[GRPC_CONTEXT_SECURITY].value);
|
@@ -208,7 +212,8 @@ static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
|
|
208
212
|
call_data* calld = static_cast<call_data*>(elem->call_data);
|
209
213
|
grpc_transport_stream_op_batch* batch = calld->recv_initial_metadata_batch;
|
210
214
|
if (error == GRPC_ERROR_NONE) {
|
211
|
-
if (chand->creds != nullptr &&
|
215
|
+
if (chand->creds != nullptr &&
|
216
|
+
chand->creds->auth_metadata_processor().process != nullptr) {
|
212
217
|
// We're calling out to the application, so we need to make sure
|
213
218
|
// to drop the call combiner early if we get cancelled.
|
214
219
|
GRPC_CLOSURE_INIT(&calld->cancel_closure, cancel_call, elem,
|
@@ -218,9 +223,10 @@ static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
|
|
218
223
|
GRPC_CALL_STACK_REF(calld->owning_call, "server_auth_metadata");
|
219
224
|
calld->md = metadata_batch_to_md_array(
|
220
225
|
batch->payload->recv_initial_metadata.recv_initial_metadata);
|
221
|
-
chand->creds->
|
222
|
-
chand->creds->
|
223
|
-
calld->md.metadata, calld->md.count,
|
226
|
+
chand->creds->auth_metadata_processor().process(
|
227
|
+
chand->creds->auth_metadata_processor().state,
|
228
|
+
chand->auth_context.get(), calld->md.metadata, calld->md.count,
|
229
|
+
on_md_processing_done, elem);
|
224
230
|
return;
|
225
231
|
}
|
226
232
|
}
|
@@ -290,23 +296,19 @@ static void destroy_call_elem(grpc_call_element* elem,
|
|
290
296
|
static grpc_error* init_channel_elem(grpc_channel_element* elem,
|
291
297
|
grpc_channel_element_args* args) {
|
292
298
|
GPR_ASSERT(!args->is_last);
|
293
|
-
channel_data* chand = static_cast<channel_data*>(elem->channel_data);
|
294
299
|
grpc_auth_context* auth_context =
|
295
300
|
grpc_find_auth_context_in_args(args->channel_args);
|
296
301
|
GPR_ASSERT(auth_context != nullptr);
|
297
|
-
chand->auth_context =
|
298
|
-
GRPC_AUTH_CONTEXT_REF(auth_context, "server_auth_filter");
|
299
302
|
grpc_server_credentials* creds =
|
300
303
|
grpc_find_server_credentials_in_args(args->channel_args);
|
301
|
-
|
304
|
+
new (elem->channel_data) channel_data(auth_context, creds);
|
302
305
|
return GRPC_ERROR_NONE;
|
303
306
|
}
|
304
307
|
|
305
308
|
/* Destructor for channel data */
|
306
309
|
static void destroy_channel_elem(grpc_channel_element* elem) {
|
307
310
|
channel_data* chand = static_cast<channel_data*>(elem->channel_data);
|
308
|
-
|
309
|
-
grpc_server_credentials_unref(chand->creds);
|
311
|
+
chand->~channel_data();
|
310
312
|
}
|
311
313
|
|
312
314
|
const grpc_channel_filter grpc_server_auth_filter = {
|
@@ -28,6 +28,8 @@
|
|
28
28
|
#include <grpc/support/log.h>
|
29
29
|
#include <grpc/support/string_util.h>
|
30
30
|
|
31
|
+
#include <utility>
|
32
|
+
|
31
33
|
#include "src/core/lib/channel/channel_args.h"
|
32
34
|
#include "src/core/lib/channel/connected_channel.h"
|
33
35
|
#include "src/core/lib/debug/stats.h"
|
@@ -109,7 +111,7 @@ struct channel_data {
|
|
109
111
|
uint32_t registered_method_max_probes;
|
110
112
|
grpc_closure finish_destroy_channel_closure;
|
111
113
|
grpc_closure channel_connectivity_changed;
|
112
|
-
|
114
|
+
grpc_core::RefCountedPtr<grpc_core::channelz::SocketNode> socket_node;
|
113
115
|
};
|
114
116
|
|
115
117
|
typedef struct shutdown_tag {
|
@@ -937,6 +939,7 @@ static grpc_error* init_channel_elem(grpc_channel_element* elem,
|
|
937
939
|
static void destroy_channel_elem(grpc_channel_element* elem) {
|
938
940
|
size_t i;
|
939
941
|
channel_data* chand = static_cast<channel_data*>(elem->channel_data);
|
942
|
+
chand->socket_node.reset();
|
940
943
|
if (chand->registered_methods) {
|
941
944
|
for (i = 0; i < chand->registered_method_slots; i++) {
|
942
945
|
grpc_slice_unref_internal(chand->registered_methods[i].method);
|
@@ -1142,11 +1145,11 @@ void grpc_server_get_pollsets(grpc_server* server, grpc_pollset*** pollsets,
|
|
1142
1145
|
*pollsets = server->pollsets;
|
1143
1146
|
}
|
1144
1147
|
|
1145
|
-
void grpc_server_setup_transport(
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1148
|
+
void grpc_server_setup_transport(
|
1149
|
+
grpc_server* s, grpc_transport* transport, grpc_pollset* accepting_pollset,
|
1150
|
+
const grpc_channel_args* args,
|
1151
|
+
grpc_core::RefCountedPtr<grpc_core::channelz::SocketNode> socket_node,
|
1152
|
+
grpc_resource_user* resource_user) {
|
1150
1153
|
size_t num_registered_methods;
|
1151
1154
|
size_t alloc;
|
1152
1155
|
registered_method* rm;
|
@@ -1167,7 +1170,7 @@ void grpc_server_setup_transport(grpc_server* s, grpc_transport* transport,
|
|
1167
1170
|
chand->server = s;
|
1168
1171
|
server_ref(s);
|
1169
1172
|
chand->channel = channel;
|
1170
|
-
chand->
|
1173
|
+
chand->socket_node = std::move(socket_node);
|
1171
1174
|
|
1172
1175
|
size_t cq_idx;
|
1173
1176
|
for (cq_idx = 0; cq_idx < s->cq_count; cq_idx++) {
|
@@ -1243,14 +1246,13 @@ void grpc_server_setup_transport(grpc_server* s, grpc_transport* transport,
|
|
1243
1246
|
}
|
1244
1247
|
|
1245
1248
|
void grpc_server_populate_server_sockets(
|
1246
|
-
grpc_server* s, grpc_core::channelz::
|
1249
|
+
grpc_server* s, grpc_core::channelz::ChildSocketsList* server_sockets,
|
1247
1250
|
intptr_t start_idx) {
|
1248
1251
|
gpr_mu_lock(&s->mu_global);
|
1249
1252
|
channel_data* c = nullptr;
|
1250
1253
|
for (c = s->root_channel_data.next; c != &s->root_channel_data; c = c->next) {
|
1251
|
-
|
1252
|
-
|
1253
|
-
server_sockets->push_back(socket_uuid);
|
1254
|
+
if (c->socket_node != nullptr && c->socket_node->uuid() >= start_idx) {
|
1255
|
+
server_sockets->push_back(c->socket_node.get());
|
1254
1256
|
}
|
1255
1257
|
}
|
1256
1258
|
gpr_mu_unlock(&s->mu_global);
|
@@ -44,15 +44,15 @@ void grpc_server_add_listener(grpc_server* server, void* listener,
|
|
44
44
|
|
45
45
|
/* Setup a transport - creates a channel stack, binds the transport to the
|
46
46
|
server */
|
47
|
-
void grpc_server_setup_transport(
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
47
|
+
void grpc_server_setup_transport(
|
48
|
+
grpc_server* server, grpc_transport* transport,
|
49
|
+
grpc_pollset* accepting_pollset, const grpc_channel_args* args,
|
50
|
+
grpc_core::RefCountedPtr<grpc_core::channelz::SocketNode> socket_node,
|
51
|
+
grpc_resource_user* resource_user = nullptr);
|
52
52
|
|
53
53
|
/* fills in the uuids of all sockets used for connections on this server */
|
54
54
|
void grpc_server_populate_server_sockets(
|
55
|
-
grpc_server* server, grpc_core::channelz::
|
55
|
+
grpc_server* server, grpc_core::channelz::ChildSocketsList* server_sockets,
|
56
56
|
intptr_t start_idx);
|
57
57
|
|
58
58
|
/* fills in the uuids of all listen sockets on this server */
|
@@ -23,6 +23,6 @@
|
|
23
23
|
|
24
24
|
#include <grpc/grpc.h>
|
25
25
|
|
26
|
-
const char* grpc_version_string(void) { return "7.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 "
|
28
|
+
const char* grpc_g_stands_for(void) { return "goose"; }
|
@@ -65,51 +65,56 @@ static uint8_t g_bytes[] = {
|
|
65
65
|
97, 110, 99, 101, 114, 47, 66, 97, 108, 97, 110, 99, 101, 76, 111,
|
66
66
|
97, 100, 47, 103, 114, 112, 99, 46, 104, 101, 97, 108, 116, 104, 46,
|
67
67
|
118, 49, 46, 72, 101, 97, 108, 116, 104, 47, 87, 97, 116, 99, 104,
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
99,
|
81
|
-
|
82
|
-
|
83
|
-
97,
|
84
|
-
|
85
|
-
105, 111, 110, 99,
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
110, 103, 101,
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
116,
|
103
|
-
|
104
|
-
|
105
|
-
101,
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
68
|
+
47, 101, 110, 118, 111, 121, 46, 115, 101, 114, 118, 105, 99, 101, 46,
|
69
|
+
100, 105, 115, 99, 111, 118, 101, 114, 121, 46, 118, 50, 46, 65, 103,
|
70
|
+
103, 114, 101, 103, 97, 116, 101, 100, 68, 105, 115, 99, 111, 118, 101,
|
71
|
+
114, 121, 83, 101, 114, 118, 105, 99, 101, 47, 83, 116, 114, 101, 97,
|
72
|
+
109, 65, 103, 103, 114, 101, 103, 97, 116, 101, 100, 82, 101, 115, 111,
|
73
|
+
117, 114, 99, 101, 115, 100, 101, 102, 108, 97, 116, 101, 103, 122, 105,
|
74
|
+
112, 115, 116, 114, 101, 97, 109, 47, 103, 122, 105, 112, 71, 69, 84,
|
75
|
+
80, 79, 83, 84, 47, 47, 105, 110, 100, 101, 120, 46, 104, 116, 109,
|
76
|
+
108, 104, 116, 116, 112, 104, 116, 116, 112, 115, 50, 48, 48, 50, 48,
|
77
|
+
52, 50, 48, 54, 51, 48, 52, 52, 48, 48, 52, 48, 52, 53, 48,
|
78
|
+
48, 97, 99, 99, 101, 112, 116, 45, 99, 104, 97, 114, 115, 101, 116,
|
79
|
+
103, 122, 105, 112, 44, 32, 100, 101, 102, 108, 97, 116, 101, 97, 99,
|
80
|
+
99, 101, 112, 116, 45, 108, 97, 110, 103, 117, 97, 103, 101, 97, 99,
|
81
|
+
99, 101, 112, 116, 45, 114, 97, 110, 103, 101, 115, 97, 99, 99, 101,
|
82
|
+
112, 116, 97, 99, 99, 101, 115, 115, 45, 99, 111, 110, 116, 114, 111,
|
83
|
+
108, 45, 97, 108, 108, 111, 119, 45, 111, 114, 105, 103, 105, 110, 97,
|
84
|
+
103, 101, 97, 108, 108, 111, 119, 97, 117, 116, 104, 111, 114, 105, 122,
|
85
|
+
97, 116, 105, 111, 110, 99, 97, 99, 104, 101, 45, 99, 111, 110, 116,
|
86
|
+
114, 111, 108, 99, 111, 110, 116, 101, 110, 116, 45, 100, 105, 115, 112,
|
87
|
+
111, 115, 105, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116, 45,
|
88
|
+
108, 97, 110, 103, 117, 97, 103, 101, 99, 111, 110, 116, 101, 110, 116,
|
89
|
+
45, 108, 101, 110, 103, 116, 104, 99, 111, 110, 116, 101, 110, 116, 45,
|
90
|
+
108, 111, 99, 97, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116,
|
91
|
+
45, 114, 97, 110, 103, 101, 99, 111, 111, 107, 105, 101, 100, 97, 116,
|
92
|
+
101, 101, 116, 97, 103, 101, 120, 112, 101, 99, 116, 101, 120, 112, 105,
|
93
|
+
114, 101, 115, 102, 114, 111, 109, 105, 102, 45, 109, 97, 116, 99, 104,
|
94
|
+
105, 102, 45, 109, 111, 100, 105, 102, 105, 101, 100, 45, 115, 105, 110,
|
95
|
+
99, 101, 105, 102, 45, 110, 111, 110, 101, 45, 109, 97, 116, 99, 104,
|
96
|
+
105, 102, 45, 114, 97, 110, 103, 101, 105, 102, 45, 117, 110, 109, 111,
|
97
|
+
100, 105, 102, 105, 101, 100, 45, 115, 105, 110, 99, 101, 108, 97, 115,
|
98
|
+
116, 45, 109, 111, 100, 105, 102, 105, 101, 100, 108, 105, 110, 107, 108,
|
99
|
+
111, 99, 97, 116, 105, 111, 110, 109, 97, 120, 45, 102, 111, 114, 119,
|
100
|
+
97, 114, 100, 115, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 101,
|
101
|
+
110, 116, 105, 99, 97, 116, 101, 112, 114, 111, 120, 121, 45, 97, 117,
|
102
|
+
116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 114, 97, 110, 103,
|
103
|
+
101, 114, 101, 102, 101, 114, 101, 114, 114, 101, 102, 114, 101, 115, 104,
|
104
|
+
114, 101, 116, 114, 121, 45, 97, 102, 116, 101, 114, 115, 101, 114, 118,
|
105
|
+
101, 114, 115, 101, 116, 45, 99, 111, 111, 107, 105, 101, 115, 116, 114,
|
106
|
+
105, 99, 116, 45, 116, 114, 97, 110, 115, 112, 111, 114, 116, 45, 115,
|
107
|
+
101, 99, 117, 114, 105, 116, 121, 116, 114, 97, 110, 115, 102, 101, 114,
|
108
|
+
45, 101, 110, 99, 111, 100, 105, 110, 103, 118, 97, 114, 121, 118, 105,
|
109
|
+
97, 119, 119, 119, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97,
|
110
|
+
116, 101, 48, 105, 100, 101, 110, 116, 105, 116, 121, 116, 114, 97, 105,
|
111
|
+
108, 101, 114, 115, 97, 112, 112, 108, 105, 99, 97, 116, 105, 111, 110,
|
112
|
+
47, 103, 114, 112, 99, 103, 114, 112, 99, 80, 85, 84, 108, 98, 45,
|
113
|
+
99, 111, 115, 116, 45, 98, 105, 110, 105, 100, 101, 110, 116, 105, 116,
|
114
|
+
121, 44, 100, 101, 102, 108, 97, 116, 101, 105, 100, 101, 110, 116, 105,
|
115
|
+
116, 121, 44, 103, 122, 105, 112, 100, 101, 102, 108, 97, 116, 101, 44,
|
116
|
+
103, 122, 105, 112, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101,
|
117
|
+
102, 108, 97, 116, 101, 44, 103, 122, 105, 112};
|
113
118
|
|
114
119
|
static void static_ref(void* unused) {}
|
115
120
|
static void static_unref(void* unused) {}
|
@@ -227,6 +232,7 @@ grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
|
|
227
232
|
{&grpc_static_metadata_vtable, &static_sub_refcnt},
|
228
233
|
{&grpc_static_metadata_vtable, &static_sub_refcnt},
|
229
234
|
{&grpc_static_metadata_vtable, &static_sub_refcnt},
|
235
|
+
{&grpc_static_metadata_vtable, &static_sub_refcnt},
|
230
236
|
};
|
231
237
|
|
232
238
|
const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
|
@@ -266,76 +272,77 @@ const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
|
|
266
272
|
{&grpc_static_metadata_refcounts[33], {{g_bytes + 415, 31}}},
|
267
273
|
{&grpc_static_metadata_refcounts[34], {{g_bytes + 446, 36}}},
|
268
274
|
{&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 28}}},
|
269
|
-
{&grpc_static_metadata_refcounts[36], {{g_bytes + 510,
|
270
|
-
{&grpc_static_metadata_refcounts[37], {{g_bytes +
|
271
|
-
{&grpc_static_metadata_refcounts[38], {{g_bytes +
|
272
|
-
{&grpc_static_metadata_refcounts[39], {{g_bytes +
|
273
|
-
{&grpc_static_metadata_refcounts[40], {{g_bytes +
|
274
|
-
{&grpc_static_metadata_refcounts[41], {{g_bytes +
|
275
|
-
{&grpc_static_metadata_refcounts[42], {{g_bytes +
|
276
|
-
{&grpc_static_metadata_refcounts[43], {{g_bytes +
|
277
|
-
{&grpc_static_metadata_refcounts[44], {{g_bytes +
|
278
|
-
{&grpc_static_metadata_refcounts[45], {{g_bytes +
|
279
|
-
{&grpc_static_metadata_refcounts[46], {{g_bytes +
|
280
|
-
{&grpc_static_metadata_refcounts[47], {{g_bytes +
|
281
|
-
{&grpc_static_metadata_refcounts[48], {{g_bytes +
|
282
|
-
{&grpc_static_metadata_refcounts[49], {{g_bytes +
|
283
|
-
{&grpc_static_metadata_refcounts[50], {{g_bytes +
|
284
|
-
{&grpc_static_metadata_refcounts[51], {{g_bytes +
|
285
|
-
{&grpc_static_metadata_refcounts[52], {{g_bytes +
|
286
|
-
{&grpc_static_metadata_refcounts[53], {{g_bytes +
|
287
|
-
{&grpc_static_metadata_refcounts[54], {{g_bytes +
|
288
|
-
{&grpc_static_metadata_refcounts[55], {{g_bytes +
|
289
|
-
{&grpc_static_metadata_refcounts[56], {{g_bytes +
|
290
|
-
{&grpc_static_metadata_refcounts[57], {{g_bytes +
|
291
|
-
{&grpc_static_metadata_refcounts[58], {{g_bytes +
|
292
|
-
{&grpc_static_metadata_refcounts[59], {{g_bytes +
|
293
|
-
{&grpc_static_metadata_refcounts[60], {{g_bytes +
|
294
|
-
{&grpc_static_metadata_refcounts[61], {{g_bytes +
|
295
|
-
{&grpc_static_metadata_refcounts[62], {{g_bytes +
|
296
|
-
{&grpc_static_metadata_refcounts[63], {{g_bytes +
|
297
|
-
{&grpc_static_metadata_refcounts[64], {{g_bytes +
|
298
|
-
{&grpc_static_metadata_refcounts[65], {{g_bytes +
|
299
|
-
{&grpc_static_metadata_refcounts[66], {{g_bytes +
|
300
|
-
{&grpc_static_metadata_refcounts[67], {{g_bytes +
|
301
|
-
{&grpc_static_metadata_refcounts[68], {{g_bytes +
|
302
|
-
{&grpc_static_metadata_refcounts[69], {{g_bytes +
|
303
|
-
{&grpc_static_metadata_refcounts[70], {{g_bytes +
|
304
|
-
{&grpc_static_metadata_refcounts[71], {{g_bytes +
|
305
|
-
{&grpc_static_metadata_refcounts[72], {{g_bytes +
|
306
|
-
{&grpc_static_metadata_refcounts[73], {{g_bytes +
|
307
|
-
{&grpc_static_metadata_refcounts[74], {{g_bytes +
|
308
|
-
{&grpc_static_metadata_refcounts[75], {{g_bytes +
|
309
|
-
{&grpc_static_metadata_refcounts[76], {{g_bytes +
|
310
|
-
{&grpc_static_metadata_refcounts[77], {{g_bytes +
|
311
|
-
{&grpc_static_metadata_refcounts[78], {{g_bytes +
|
312
|
-
{&grpc_static_metadata_refcounts[79], {{g_bytes +
|
313
|
-
{&grpc_static_metadata_refcounts[80], {{g_bytes +
|
314
|
-
{&grpc_static_metadata_refcounts[81], {{g_bytes +
|
315
|
-
{&grpc_static_metadata_refcounts[82], {{g_bytes +
|
316
|
-
{&grpc_static_metadata_refcounts[83], {{g_bytes +
|
317
|
-
{&grpc_static_metadata_refcounts[84], {{g_bytes +
|
318
|
-
{&grpc_static_metadata_refcounts[85], {{g_bytes +
|
319
|
-
{&grpc_static_metadata_refcounts[86], {{g_bytes +
|
320
|
-
{&grpc_static_metadata_refcounts[87], {{g_bytes +
|
321
|
-
{&grpc_static_metadata_refcounts[88], {{g_bytes +
|
322
|
-
{&grpc_static_metadata_refcounts[89], {{g_bytes +
|
323
|
-
{&grpc_static_metadata_refcounts[90], {{g_bytes +
|
324
|
-
{&grpc_static_metadata_refcounts[91], {{g_bytes +
|
325
|
-
{&grpc_static_metadata_refcounts[92], {{g_bytes +
|
326
|
-
{&grpc_static_metadata_refcounts[93], {{g_bytes +
|
327
|
-
{&grpc_static_metadata_refcounts[94], {{g_bytes +
|
328
|
-
{&grpc_static_metadata_refcounts[95], {{g_bytes +
|
329
|
-
{&grpc_static_metadata_refcounts[96], {{g_bytes +
|
330
|
-
{&grpc_static_metadata_refcounts[97], {{g_bytes +
|
331
|
-
{&grpc_static_metadata_refcounts[98], {{g_bytes +
|
332
|
-
{&grpc_static_metadata_refcounts[99], {{g_bytes +
|
333
|
-
{&grpc_static_metadata_refcounts[100], {{g_bytes +
|
334
|
-
{&grpc_static_metadata_refcounts[101], {{g_bytes +
|
335
|
-
{&grpc_static_metadata_refcounts[102], {{g_bytes +
|
336
|
-
{&grpc_static_metadata_refcounts[103], {{g_bytes +
|
337
|
-
{&grpc_static_metadata_refcounts[104], {{g_bytes +
|
338
|
-
{&grpc_static_metadata_refcounts[105], {{g_bytes +
|
275
|
+
{&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 80}}},
|
276
|
+
{&grpc_static_metadata_refcounts[37], {{g_bytes + 590, 7}}},
|
277
|
+
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}},
|
278
|
+
{&grpc_static_metadata_refcounts[39], {{g_bytes + 601, 11}}},
|
279
|
+
{&grpc_static_metadata_refcounts[40], {{g_bytes + 612, 3}}},
|
280
|
+
{&grpc_static_metadata_refcounts[41], {{g_bytes + 615, 4}}},
|
281
|
+
{&grpc_static_metadata_refcounts[42], {{g_bytes + 619, 1}}},
|
282
|
+
{&grpc_static_metadata_refcounts[43], {{g_bytes + 620, 11}}},
|
283
|
+
{&grpc_static_metadata_refcounts[44], {{g_bytes + 631, 4}}},
|
284
|
+
{&grpc_static_metadata_refcounts[45], {{g_bytes + 635, 5}}},
|
285
|
+
{&grpc_static_metadata_refcounts[46], {{g_bytes + 640, 3}}},
|
286
|
+
{&grpc_static_metadata_refcounts[47], {{g_bytes + 643, 3}}},
|
287
|
+
{&grpc_static_metadata_refcounts[48], {{g_bytes + 646, 3}}},
|
288
|
+
{&grpc_static_metadata_refcounts[49], {{g_bytes + 649, 3}}},
|
289
|
+
{&grpc_static_metadata_refcounts[50], {{g_bytes + 652, 3}}},
|
290
|
+
{&grpc_static_metadata_refcounts[51], {{g_bytes + 655, 3}}},
|
291
|
+
{&grpc_static_metadata_refcounts[52], {{g_bytes + 658, 3}}},
|
292
|
+
{&grpc_static_metadata_refcounts[53], {{g_bytes + 661, 14}}},
|
293
|
+
{&grpc_static_metadata_refcounts[54], {{g_bytes + 675, 13}}},
|
294
|
+
{&grpc_static_metadata_refcounts[55], {{g_bytes + 688, 15}}},
|
295
|
+
{&grpc_static_metadata_refcounts[56], {{g_bytes + 703, 13}}},
|
296
|
+
{&grpc_static_metadata_refcounts[57], {{g_bytes + 716, 6}}},
|
297
|
+
{&grpc_static_metadata_refcounts[58], {{g_bytes + 722, 27}}},
|
298
|
+
{&grpc_static_metadata_refcounts[59], {{g_bytes + 749, 3}}},
|
299
|
+
{&grpc_static_metadata_refcounts[60], {{g_bytes + 752, 5}}},
|
300
|
+
{&grpc_static_metadata_refcounts[61], {{g_bytes + 757, 13}}},
|
301
|
+
{&grpc_static_metadata_refcounts[62], {{g_bytes + 770, 13}}},
|
302
|
+
{&grpc_static_metadata_refcounts[63], {{g_bytes + 783, 19}}},
|
303
|
+
{&grpc_static_metadata_refcounts[64], {{g_bytes + 802, 16}}},
|
304
|
+
{&grpc_static_metadata_refcounts[65], {{g_bytes + 818, 14}}},
|
305
|
+
{&grpc_static_metadata_refcounts[66], {{g_bytes + 832, 16}}},
|
306
|
+
{&grpc_static_metadata_refcounts[67], {{g_bytes + 848, 13}}},
|
307
|
+
{&grpc_static_metadata_refcounts[68], {{g_bytes + 861, 6}}},
|
308
|
+
{&grpc_static_metadata_refcounts[69], {{g_bytes + 867, 4}}},
|
309
|
+
{&grpc_static_metadata_refcounts[70], {{g_bytes + 871, 4}}},
|
310
|
+
{&grpc_static_metadata_refcounts[71], {{g_bytes + 875, 6}}},
|
311
|
+
{&grpc_static_metadata_refcounts[72], {{g_bytes + 881, 7}}},
|
312
|
+
{&grpc_static_metadata_refcounts[73], {{g_bytes + 888, 4}}},
|
313
|
+
{&grpc_static_metadata_refcounts[74], {{g_bytes + 892, 8}}},
|
314
|
+
{&grpc_static_metadata_refcounts[75], {{g_bytes + 900, 17}}},
|
315
|
+
{&grpc_static_metadata_refcounts[76], {{g_bytes + 917, 13}}},
|
316
|
+
{&grpc_static_metadata_refcounts[77], {{g_bytes + 930, 8}}},
|
317
|
+
{&grpc_static_metadata_refcounts[78], {{g_bytes + 938, 19}}},
|
318
|
+
{&grpc_static_metadata_refcounts[79], {{g_bytes + 957, 13}}},
|
319
|
+
{&grpc_static_metadata_refcounts[80], {{g_bytes + 970, 4}}},
|
320
|
+
{&grpc_static_metadata_refcounts[81], {{g_bytes + 974, 8}}},
|
321
|
+
{&grpc_static_metadata_refcounts[82], {{g_bytes + 982, 12}}},
|
322
|
+
{&grpc_static_metadata_refcounts[83], {{g_bytes + 994, 18}}},
|
323
|
+
{&grpc_static_metadata_refcounts[84], {{g_bytes + 1012, 19}}},
|
324
|
+
{&grpc_static_metadata_refcounts[85], {{g_bytes + 1031, 5}}},
|
325
|
+
{&grpc_static_metadata_refcounts[86], {{g_bytes + 1036, 7}}},
|
326
|
+
{&grpc_static_metadata_refcounts[87], {{g_bytes + 1043, 7}}},
|
327
|
+
{&grpc_static_metadata_refcounts[88], {{g_bytes + 1050, 11}}},
|
328
|
+
{&grpc_static_metadata_refcounts[89], {{g_bytes + 1061, 6}}},
|
329
|
+
{&grpc_static_metadata_refcounts[90], {{g_bytes + 1067, 10}}},
|
330
|
+
{&grpc_static_metadata_refcounts[91], {{g_bytes + 1077, 25}}},
|
331
|
+
{&grpc_static_metadata_refcounts[92], {{g_bytes + 1102, 17}}},
|
332
|
+
{&grpc_static_metadata_refcounts[93], {{g_bytes + 1119, 4}}},
|
333
|
+
{&grpc_static_metadata_refcounts[94], {{g_bytes + 1123, 3}}},
|
334
|
+
{&grpc_static_metadata_refcounts[95], {{g_bytes + 1126, 16}}},
|
335
|
+
{&grpc_static_metadata_refcounts[96], {{g_bytes + 1142, 1}}},
|
336
|
+
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}},
|
337
|
+
{&grpc_static_metadata_refcounts[98], {{g_bytes + 1151, 8}}},
|
338
|
+
{&grpc_static_metadata_refcounts[99], {{g_bytes + 1159, 16}}},
|
339
|
+
{&grpc_static_metadata_refcounts[100], {{g_bytes + 1175, 4}}},
|
340
|
+
{&grpc_static_metadata_refcounts[101], {{g_bytes + 1179, 3}}},
|
341
|
+
{&grpc_static_metadata_refcounts[102], {{g_bytes + 1182, 11}}},
|
342
|
+
{&grpc_static_metadata_refcounts[103], {{g_bytes + 1193, 16}}},
|
343
|
+
{&grpc_static_metadata_refcounts[104], {{g_bytes + 1209, 13}}},
|
344
|
+
{&grpc_static_metadata_refcounts[105], {{g_bytes + 1222, 12}}},
|
345
|
+
{&grpc_static_metadata_refcounts[106], {{g_bytes + 1234, 21}}},
|
339
346
|
};
|
340
347
|
|
341
348
|
uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
|
@@ -345,17 +352,17 @@ uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
|
|
345
352
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};
|
346
353
|
|
347
354
|
static const int8_t elems_r[] = {
|
348
|
-
|
349
|
-
-3, -10, 0, 0, 0,
|
350
|
-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
351
|
-
0, 0, 0, 0, 0, 0, 0, -
|
352
|
-
33, 32,
|
353
|
-
19,
|
354
|
-
|
355
|
+
15, 10, -8, 0, 2, -42, -81, -43, 0, 6, -8, 0, 0, 0, 2,
|
356
|
+
-3, -10, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0,
|
357
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
358
|
+
0, 0, 0, 0, 0, 0, 0, 0, -64, 0, -67, -68, -69, -70, 0,
|
359
|
+
35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21,
|
360
|
+
20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6,
|
361
|
+
5, 4, 5, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0, -5, 0};
|
355
362
|
static uint32_t elems_phash(uint32_t i) {
|
356
|
-
i -=
|
357
|
-
uint32_t x = i %
|
358
|
-
uint32_t y = i /
|
363
|
+
i -= 42;
|
364
|
+
uint32_t x = i % 105;
|
365
|
+
uint32_t y = i / 105;
|
359
366
|
uint32_t h = x;
|
360
367
|
if (y < GPR_ARRAY_SIZE(elems_r)) {
|
361
368
|
uint32_t delta = (uint32_t)elems_r[y];
|
@@ -365,29 +372,29 @@ static uint32_t elems_phash(uint32_t i) {
|
|
365
372
|
}
|
366
373
|
|
367
374
|
static const uint16_t elem_keys[] = {
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
0, 0, 0, 0, 0, 0, 0,
|
377
|
-
0, 0, 0, 0, 0, 0, 0,
|
378
|
-
0, 0, 0, 0, 0, 0, 0,
|
379
|
-
0, 0, 0, 0};
|
375
|
+
260, 261, 262, 263, 264, 265, 266, 1107, 1108, 1741, 147, 148,
|
376
|
+
472, 473, 1634, 42, 43, 1527, 1750, 1000, 1001, 774, 775, 1643,
|
377
|
+
633, 845, 2062, 2169, 2276, 5700, 5914, 6021, 6128, 6235, 1766, 6342,
|
378
|
+
6449, 6556, 6663, 6770, 6877, 6984, 7091, 7198, 7305, 7412, 7519, 7626,
|
379
|
+
7733, 7840, 7947, 8054, 8161, 8268, 8375, 8482, 8589, 8696, 8803, 8910,
|
380
|
+
9017, 9124, 9231, 9338, 9445, 9552, 9659, 1167, 528, 9766, 9873, 208,
|
381
|
+
9980, 1173, 1174, 1175, 1176, 1809, 10087, 1060, 10194, 10943, 1702, 0,
|
382
|
+
1816, 0, 0, 1597, 0, 0, 350, 0, 0, 0, 0, 0,
|
383
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
384
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
385
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
386
|
+
0, 0, 0, 0, 0, 0, 0};
|
380
387
|
static const uint8_t elem_idxs[] = {
|
381
|
-
7, 8, 9, 10,
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
52, 53, 54, 76, 55,
|
386
|
-
|
388
|
+
7, 8, 9, 10, 11, 12, 13, 77, 79, 71, 1, 2, 5, 6, 25, 3,
|
389
|
+
4, 30, 84, 66, 65, 62, 63, 73, 67, 61, 57, 37, 74, 14, 16, 17,
|
390
|
+
18, 19, 15, 20, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34,
|
391
|
+
35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
392
|
+
52, 53, 54, 76, 69, 55, 56, 70, 58, 78, 80, 81, 82, 83, 59, 64,
|
393
|
+
60, 75, 72, 255, 85, 255, 255, 68, 255, 255, 0};
|
387
394
|
|
388
395
|
grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
|
389
396
|
if (a == -1 || b == -1) return GRPC_MDNULL;
|
390
|
-
uint32_t k = (uint32_t)(a *
|
397
|
+
uint32_t k = (uint32_t)(a * 107 + b);
|
391
398
|
uint32_t h = elems_phash(k);
|
392
399
|
return h < GPR_ARRAY_SIZE(elem_keys) && elem_keys[h] == k &&
|
393
400
|
elem_idxs[h] != 255
|
@@ -400,175 +407,175 @@ grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
|
|
400
407
|
{{&grpc_static_metadata_refcounts[3], {{g_bytes + 19, 10}}},
|
401
408
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
402
409
|
{{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
|
403
|
-
{&grpc_static_metadata_refcounts[
|
410
|
+
{&grpc_static_metadata_refcounts[40], {{g_bytes + 612, 3}}}},
|
404
411
|
{{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
|
405
|
-
{&grpc_static_metadata_refcounts[
|
412
|
+
{&grpc_static_metadata_refcounts[41], {{g_bytes + 615, 4}}}},
|
406
413
|
{{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
|
407
|
-
{&grpc_static_metadata_refcounts[
|
414
|
+
{&grpc_static_metadata_refcounts[42], {{g_bytes + 619, 1}}}},
|
408
415
|
{{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
|
409
|
-
{&grpc_static_metadata_refcounts[
|
416
|
+
{&grpc_static_metadata_refcounts[43], {{g_bytes + 620, 11}}}},
|
410
417
|
{{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
|
411
|
-
{&grpc_static_metadata_refcounts[
|
418
|
+
{&grpc_static_metadata_refcounts[44], {{g_bytes + 631, 4}}}},
|
412
419
|
{{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
|
413
|
-
{&grpc_static_metadata_refcounts[
|
420
|
+
{&grpc_static_metadata_refcounts[45], {{g_bytes + 635, 5}}}},
|
414
421
|
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
|
415
|
-
{&grpc_static_metadata_refcounts[
|
422
|
+
{&grpc_static_metadata_refcounts[46], {{g_bytes + 640, 3}}}},
|
416
423
|
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
|
417
|
-
{&grpc_static_metadata_refcounts[
|
424
|
+
{&grpc_static_metadata_refcounts[47], {{g_bytes + 643, 3}}}},
|
418
425
|
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
|
419
|
-
{&grpc_static_metadata_refcounts[
|
426
|
+
{&grpc_static_metadata_refcounts[48], {{g_bytes + 646, 3}}}},
|
420
427
|
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
|
421
|
-
{&grpc_static_metadata_refcounts[
|
428
|
+
{&grpc_static_metadata_refcounts[49], {{g_bytes + 649, 3}}}},
|
422
429
|
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
|
423
|
-
{&grpc_static_metadata_refcounts[
|
430
|
+
{&grpc_static_metadata_refcounts[50], {{g_bytes + 652, 3}}}},
|
424
431
|
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
|
425
|
-
{&grpc_static_metadata_refcounts[
|
432
|
+
{&grpc_static_metadata_refcounts[51], {{g_bytes + 655, 3}}}},
|
426
433
|
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
|
427
|
-
{&grpc_static_metadata_refcounts[
|
428
|
-
{{&grpc_static_metadata_refcounts[
|
434
|
+
{&grpc_static_metadata_refcounts[52], {{g_bytes + 658, 3}}}},
|
435
|
+
{{&grpc_static_metadata_refcounts[53], {{g_bytes + 661, 14}}},
|
429
436
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
430
437
|
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
|
431
|
-
{&grpc_static_metadata_refcounts[
|
432
|
-
{{&grpc_static_metadata_refcounts[
|
438
|
+
{&grpc_static_metadata_refcounts[54], {{g_bytes + 675, 13}}}},
|
439
|
+
{{&grpc_static_metadata_refcounts[55], {{g_bytes + 688, 15}}},
|
433
440
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
434
|
-
{{&grpc_static_metadata_refcounts[
|
441
|
+
{{&grpc_static_metadata_refcounts[56], {{g_bytes + 703, 13}}},
|
435
442
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
436
|
-
{{&grpc_static_metadata_refcounts[
|
443
|
+
{{&grpc_static_metadata_refcounts[57], {{g_bytes + 716, 6}}},
|
437
444
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
438
|
-
{{&grpc_static_metadata_refcounts[
|
445
|
+
{{&grpc_static_metadata_refcounts[58], {{g_bytes + 722, 27}}},
|
439
446
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
440
|
-
{{&grpc_static_metadata_refcounts[
|
447
|
+
{{&grpc_static_metadata_refcounts[59], {{g_bytes + 749, 3}}},
|
441
448
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
442
|
-
{{&grpc_static_metadata_refcounts[
|
449
|
+
{{&grpc_static_metadata_refcounts[60], {{g_bytes + 752, 5}}},
|
443
450
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
444
|
-
{{&grpc_static_metadata_refcounts[
|
451
|
+
{{&grpc_static_metadata_refcounts[61], {{g_bytes + 757, 13}}},
|
445
452
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
446
|
-
{{&grpc_static_metadata_refcounts[
|
453
|
+
{{&grpc_static_metadata_refcounts[62], {{g_bytes + 770, 13}}},
|
447
454
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
448
|
-
{{&grpc_static_metadata_refcounts[
|
455
|
+
{{&grpc_static_metadata_refcounts[63], {{g_bytes + 783, 19}}},
|
449
456
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
450
457
|
{{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
|
451
458
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
452
|
-
{{&grpc_static_metadata_refcounts[
|
459
|
+
{{&grpc_static_metadata_refcounts[64], {{g_bytes + 802, 16}}},
|
453
460
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
454
|
-
{{&grpc_static_metadata_refcounts[
|
461
|
+
{{&grpc_static_metadata_refcounts[65], {{g_bytes + 818, 14}}},
|
455
462
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
456
|
-
{{&grpc_static_metadata_refcounts[
|
463
|
+
{{&grpc_static_metadata_refcounts[66], {{g_bytes + 832, 16}}},
|
457
464
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
458
|
-
{{&grpc_static_metadata_refcounts[
|
465
|
+
{{&grpc_static_metadata_refcounts[67], {{g_bytes + 848, 13}}},
|
459
466
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
460
467
|
{{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
|
461
468
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
462
|
-
{{&grpc_static_metadata_refcounts[
|
469
|
+
{{&grpc_static_metadata_refcounts[68], {{g_bytes + 861, 6}}},
|
463
470
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
464
|
-
{{&grpc_static_metadata_refcounts[
|
471
|
+
{{&grpc_static_metadata_refcounts[69], {{g_bytes + 867, 4}}},
|
465
472
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
466
|
-
{{&grpc_static_metadata_refcounts[
|
473
|
+
{{&grpc_static_metadata_refcounts[70], {{g_bytes + 871, 4}}},
|
467
474
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
468
|
-
{{&grpc_static_metadata_refcounts[
|
475
|
+
{{&grpc_static_metadata_refcounts[71], {{g_bytes + 875, 6}}},
|
469
476
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
470
|
-
{{&grpc_static_metadata_refcounts[
|
477
|
+
{{&grpc_static_metadata_refcounts[72], {{g_bytes + 881, 7}}},
|
471
478
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
472
|
-
{{&grpc_static_metadata_refcounts[
|
479
|
+
{{&grpc_static_metadata_refcounts[73], {{g_bytes + 888, 4}}},
|
473
480
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
474
481
|
{{&grpc_static_metadata_refcounts[20], {{g_bytes + 278, 4}}},
|
475
482
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
476
|
-
{{&grpc_static_metadata_refcounts[
|
483
|
+
{{&grpc_static_metadata_refcounts[74], {{g_bytes + 892, 8}}},
|
477
484
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
478
|
-
{{&grpc_static_metadata_refcounts[
|
485
|
+
{{&grpc_static_metadata_refcounts[75], {{g_bytes + 900, 17}}},
|
479
486
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
480
|
-
{{&grpc_static_metadata_refcounts[
|
487
|
+
{{&grpc_static_metadata_refcounts[76], {{g_bytes + 917, 13}}},
|
481
488
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
482
|
-
{{&grpc_static_metadata_refcounts[
|
489
|
+
{{&grpc_static_metadata_refcounts[77], {{g_bytes + 930, 8}}},
|
483
490
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
484
|
-
{{&grpc_static_metadata_refcounts[
|
491
|
+
{{&grpc_static_metadata_refcounts[78], {{g_bytes + 938, 19}}},
|
485
492
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
486
|
-
{{&grpc_static_metadata_refcounts[
|
493
|
+
{{&grpc_static_metadata_refcounts[79], {{g_bytes + 957, 13}}},
|
487
494
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
488
|
-
{{&grpc_static_metadata_refcounts[
|
495
|
+
{{&grpc_static_metadata_refcounts[80], {{g_bytes + 970, 4}}},
|
489
496
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
490
|
-
{{&grpc_static_metadata_refcounts[
|
497
|
+
{{&grpc_static_metadata_refcounts[81], {{g_bytes + 974, 8}}},
|
491
498
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
492
|
-
{{&grpc_static_metadata_refcounts[
|
499
|
+
{{&grpc_static_metadata_refcounts[82], {{g_bytes + 982, 12}}},
|
493
500
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
494
|
-
{{&grpc_static_metadata_refcounts[
|
501
|
+
{{&grpc_static_metadata_refcounts[83], {{g_bytes + 994, 18}}},
|
495
502
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
496
|
-
{{&grpc_static_metadata_refcounts[
|
503
|
+
{{&grpc_static_metadata_refcounts[84], {{g_bytes + 1012, 19}}},
|
497
504
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
498
|
-
{{&grpc_static_metadata_refcounts[
|
505
|
+
{{&grpc_static_metadata_refcounts[85], {{g_bytes + 1031, 5}}},
|
499
506
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
500
|
-
{{&grpc_static_metadata_refcounts[
|
507
|
+
{{&grpc_static_metadata_refcounts[86], {{g_bytes + 1036, 7}}},
|
501
508
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
502
|
-
{{&grpc_static_metadata_refcounts[
|
509
|
+
{{&grpc_static_metadata_refcounts[87], {{g_bytes + 1043, 7}}},
|
503
510
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
504
|
-
{{&grpc_static_metadata_refcounts[
|
511
|
+
{{&grpc_static_metadata_refcounts[88], {{g_bytes + 1050, 11}}},
|
505
512
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
506
|
-
{{&grpc_static_metadata_refcounts[
|
513
|
+
{{&grpc_static_metadata_refcounts[89], {{g_bytes + 1061, 6}}},
|
507
514
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
508
|
-
{{&grpc_static_metadata_refcounts[
|
515
|
+
{{&grpc_static_metadata_refcounts[90], {{g_bytes + 1067, 10}}},
|
509
516
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
510
|
-
{{&grpc_static_metadata_refcounts[
|
517
|
+
{{&grpc_static_metadata_refcounts[91], {{g_bytes + 1077, 25}}},
|
511
518
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
512
|
-
{{&grpc_static_metadata_refcounts[
|
519
|
+
{{&grpc_static_metadata_refcounts[92], {{g_bytes + 1102, 17}}},
|
513
520
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
514
521
|
{{&grpc_static_metadata_refcounts[19], {{g_bytes + 268, 10}}},
|
515
522
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
516
|
-
{{&grpc_static_metadata_refcounts[
|
523
|
+
{{&grpc_static_metadata_refcounts[93], {{g_bytes + 1119, 4}}},
|
517
524
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
518
|
-
{{&grpc_static_metadata_refcounts[
|
525
|
+
{{&grpc_static_metadata_refcounts[94], {{g_bytes + 1123, 3}}},
|
519
526
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
520
|
-
{{&grpc_static_metadata_refcounts[
|
527
|
+
{{&grpc_static_metadata_refcounts[95], {{g_bytes + 1126, 16}}},
|
521
528
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
522
529
|
{{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
|
523
|
-
{&grpc_static_metadata_refcounts[
|
530
|
+
{&grpc_static_metadata_refcounts[96], {{g_bytes + 1142, 1}}}},
|
524
531
|
{{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
|
525
532
|
{&grpc_static_metadata_refcounts[25], {{g_bytes + 350, 1}}}},
|
526
533
|
{{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
|
527
534
|
{&grpc_static_metadata_refcounts[26], {{g_bytes + 351, 1}}}},
|
528
535
|
{{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
|
529
|
-
{&grpc_static_metadata_refcounts[
|
536
|
+
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
|
530
537
|
{{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
|
531
|
-
{&grpc_static_metadata_refcounts[
|
538
|
+
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
|
532
539
|
{{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
|
533
|
-
{&grpc_static_metadata_refcounts[
|
540
|
+
{&grpc_static_metadata_refcounts[37], {{g_bytes + 590, 7}}}},
|
534
541
|
{{&grpc_static_metadata_refcounts[5], {{g_bytes + 36, 2}}},
|
535
|
-
{&grpc_static_metadata_refcounts[
|
542
|
+
{&grpc_static_metadata_refcounts[98], {{g_bytes + 1151, 8}}}},
|
536
543
|
{{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
|
537
|
-
{&grpc_static_metadata_refcounts[
|
544
|
+
{&grpc_static_metadata_refcounts[99], {{g_bytes + 1159, 16}}}},
|
538
545
|
{{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
|
539
|
-
{&grpc_static_metadata_refcounts[
|
546
|
+
{&grpc_static_metadata_refcounts[100], {{g_bytes + 1175, 4}}}},
|
540
547
|
{{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
|
541
|
-
{&grpc_static_metadata_refcounts[
|
548
|
+
{&grpc_static_metadata_refcounts[101], {{g_bytes + 1179, 3}}}},
|
542
549
|
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
|
543
550
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
544
551
|
{{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
|
545
|
-
{&grpc_static_metadata_refcounts[
|
552
|
+
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
|
546
553
|
{{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
|
547
|
-
{&grpc_static_metadata_refcounts[
|
554
|
+
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
|
548
555
|
{{&grpc_static_metadata_refcounts[21], {{g_bytes + 282, 8}}},
|
549
556
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
550
|
-
{{&grpc_static_metadata_refcounts[
|
557
|
+
{{&grpc_static_metadata_refcounts[102], {{g_bytes + 1182, 11}}},
|
551
558
|
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
|
552
559
|
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
|
553
|
-
{&grpc_static_metadata_refcounts[
|
560
|
+
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
|
554
561
|
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
|
555
|
-
{&grpc_static_metadata_refcounts[
|
562
|
+
{&grpc_static_metadata_refcounts[37], {{g_bytes + 590, 7}}}},
|
556
563
|
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
|
557
|
-
{&grpc_static_metadata_refcounts[
|
564
|
+
{&grpc_static_metadata_refcounts[103], {{g_bytes + 1193, 16}}}},
|
558
565
|
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
|
559
|
-
{&grpc_static_metadata_refcounts[
|
566
|
+
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
|
560
567
|
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
|
561
|
-
{&grpc_static_metadata_refcounts[
|
568
|
+
{&grpc_static_metadata_refcounts[104], {{g_bytes + 1209, 13}}}},
|
562
569
|
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
|
563
|
-
{&grpc_static_metadata_refcounts[
|
570
|
+
{&grpc_static_metadata_refcounts[105], {{g_bytes + 1222, 12}}}},
|
564
571
|
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
|
565
|
-
{&grpc_static_metadata_refcounts[
|
572
|
+
{&grpc_static_metadata_refcounts[106], {{g_bytes + 1234, 21}}}},
|
566
573
|
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
|
567
|
-
{&grpc_static_metadata_refcounts[
|
574
|
+
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
|
568
575
|
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
|
569
|
-
{&grpc_static_metadata_refcounts[
|
576
|
+
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
|
570
577
|
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
|
571
|
-
{&grpc_static_metadata_refcounts[
|
578
|
+
{&grpc_static_metadata_refcounts[104], {{g_bytes + 1209, 13}}}},
|
572
579
|
};
|
573
580
|
const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,
|
574
581
|
79, 80, 81, 82};
|