grpc 1.18.0 → 1.19.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 +301 -33
- data/include/grpc/grpc_security.h +195 -0
- data/include/grpc/impl/codegen/grpc_types.h +17 -1
- data/include/grpc/impl/codegen/port_platform.h +36 -0
- data/include/grpc/impl/codegen/slice.h +1 -1
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +2 -0
- data/src/core/ext/filters/client_channel/client_channel.cc +74 -69
- data/src/core/ext/filters/client_channel/client_channel.h +2 -2
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +5 -6
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +5 -4
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +2 -2
- data/src/core/ext/filters/client_channel/client_channel_factory.h +4 -4
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +3 -3
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +176 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +68 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +10 -8
- data/src/core/ext/filters/client_channel/health/health_check_client.h +1 -1
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +146 -156
- data/src/core/ext/filters/client_channel/lb_policy.cc +30 -1
- data/src/core/ext/filters/client_channel/lb_policy.h +29 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +28 -30
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +5 -8
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +5 -8
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +23 -24
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +80 -15
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +6 -1
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +2 -2
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +96 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +56 -0
- data/src/core/ext/filters/client_channel/parse_address.cc +24 -5
- data/src/core/ext/filters/client_channel/request_routing.cc +13 -3
- data/src/core/ext/filters/client_channel/request_routing.h +5 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +11 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +7 -35
- data/src/core/ext/filters/client_channel/subchannel.cc +698 -791
- data/src/core/ext/filters/client_channel/subchannel.h +213 -123
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +97 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +94 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +5 -2
- data/src/core/ext/filters/max_age/max_age_filter.cc +1 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +13 -12
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +5 -7
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +19 -27
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +18 -19
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +27 -6
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +3 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/writing.cc +8 -5
- data/src/core/lib/channel/handshaker.cc +141 -214
- data/src/core/lib/channel/handshaker.h +110 -101
- data/src/core/lib/channel/handshaker_factory.h +11 -19
- data/src/core/lib/channel/handshaker_registry.cc +64 -52
- data/src/core/lib/channel/handshaker_registry.h +21 -16
- data/src/core/lib/gpr/log_posix.cc +2 -1
- data/src/core/lib/gpr/time.cc +8 -0
- data/src/core/lib/gpr/time_posix.cc +8 -2
- data/src/core/lib/gprpp/optional.h +47 -0
- data/src/core/lib/http/httpcli_security_connector.cc +13 -14
- data/src/core/lib/iomgr/buffer_list.cc +182 -24
- data/src/core/lib/iomgr/buffer_list.h +70 -8
- data/src/core/lib/iomgr/combiner.cc +11 -3
- data/src/core/lib/iomgr/error.cc +9 -5
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +3 -0
- data/src/core/lib/iomgr/ev_epollex_linux.cc +136 -162
- data/src/core/lib/iomgr/ev_poll_posix.cc +3 -0
- data/src/core/lib/iomgr/ev_posix.cc +4 -0
- data/src/core/lib/iomgr/ev_posix.h +4 -0
- data/src/core/lib/iomgr/exec_ctx.cc +1 -0
- data/src/core/lib/iomgr/exec_ctx.h +137 -8
- data/src/core/lib/iomgr/executor.cc +122 -87
- data/src/core/lib/iomgr/executor.h +53 -48
- data/src/core/lib/iomgr/fork_posix.cc +6 -4
- data/src/core/lib/iomgr/{network_status_tracker.cc → grpc_if_nametoindex.h} +8 -14
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +42 -0
- data/src/core/lib/iomgr/{network_status_tracker.h → grpc_if_nametoindex_unsupported.cc} +15 -9
- data/src/core/lib/iomgr/internal_errqueue.h +105 -3
- data/src/core/lib/iomgr/iomgr.cc +6 -5
- data/src/core/lib/iomgr/iomgr.h +8 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +6 -2
- 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 +10 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +8 -1
- data/src/core/lib/iomgr/port.h +1 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +4 -3
- data/src/core/lib/iomgr/resolve_address_windows.cc +2 -1
- data/src/core/lib/iomgr/tcp_custom.cc +0 -4
- data/src/core/lib/iomgr/tcp_posix.cc +58 -44
- data/src/core/lib/iomgr/tcp_uv.cc +0 -1
- data/src/core/lib/iomgr/tcp_windows.cc +0 -4
- data/src/core/lib/iomgr/timer_manager.cc +8 -0
- data/src/core/lib/iomgr/udp_server.cc +6 -4
- data/src/core/lib/json/json.cc +1 -4
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +1 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -2
- data/src/core/lib/security/credentials/composite/composite_credentials.h +4 -0
- data/src/core/lib/security/credentials/credentials.h +9 -1
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +15 -2
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +2 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +1 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +3 -2
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +2 -2
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +1 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +192 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +213 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +10 -8
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +6 -10
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +10 -8
- data/src/core/lib/security/security_connector/security_connector.h +2 -2
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +4 -6
- data/src/core/lib/security/security_connector/ssl_utils.h +33 -0
- data/src/core/lib/security/transport/security_handshaker.cc +267 -300
- data/src/core/lib/security/transport/security_handshaker.h +11 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +1 -0
- data/src/core/lib/surface/call.cc +5 -1
- data/src/core/lib/surface/channel_init.h +5 -0
- data/src/core/lib/surface/completion_queue.cc +4 -7
- data/src/core/lib/surface/init.cc +5 -3
- data/src/core/lib/surface/init_secure.cc +1 -1
- data/src/core/lib/surface/server.cc +19 -17
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/service_config.h +1 -0
- data/src/core/lib/transport/static_metadata.cc +279 -279
- data/src/core/lib/transport/transport.cc +5 -3
- data/src/core/tsi/ssl_transport_security.cc +10 -4
- data/src/ruby/ext/grpc/extconf.rb +12 -4
- data/src/ruby/ext/grpc/rb_call_credentials.c +8 -5
- data/src/ruby/ext/grpc/rb_channel.c +14 -10
- data/src/ruby/ext/grpc/rb_channel_credentials.c +8 -4
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -7
- data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc.c +22 -23
- data/src/ruby/ext/grpc/rb_grpc.h +4 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +18 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +27 -0
- data/src/ruby/ext/grpc/rb_server.c +8 -4
- data/src/ruby/lib/grpc/version.rb +1 -1
- metadata +46 -39
- data/src/core/ext/filters/client_channel/subchannel_index.cc +0 -248
- data/src/core/ext/filters/client_channel/subchannel_index.h +0 -76
- data/src/core/lib/channel/handshaker_factory.cc +0 -42
@@ -24,11 +24,20 @@
|
|
24
24
|
#include "src/core/lib/channel/handshaker.h"
|
25
25
|
#include "src/core/lib/security/security_connector/security_connector.h"
|
26
26
|
|
27
|
+
namespace grpc_core {
|
28
|
+
|
27
29
|
/// Creates a security handshaker using \a handshaker.
|
28
|
-
|
30
|
+
RefCountedPtr<Handshaker> SecurityHandshakerCreate(
|
29
31
|
tsi_handshaker* handshaker, grpc_security_connector* connector);
|
30
32
|
|
31
33
|
/// Registers security handshaker factories.
|
32
|
-
void
|
34
|
+
void SecurityRegisterHandshakerFactories();
|
35
|
+
|
36
|
+
} // namespace grpc_core
|
37
|
+
|
38
|
+
// TODO(arjunroy): This is transitional to account for the new handshaker API
|
39
|
+
// and will eventually be removed entirely.
|
40
|
+
grpc_handshaker* grpc_security_handshaker_create(
|
41
|
+
tsi_handshaker* handshaker, grpc_security_connector* connector);
|
33
42
|
|
34
43
|
#endif /* GRPC_CORE_LIB_SECURITY_TRANSPORT_SECURITY_HANDSHAKER_H */
|
@@ -169,6 +169,7 @@ static void on_md_processing_done(
|
|
169
169
|
grpc_status_code status, const char* error_details) {
|
170
170
|
grpc_call_element* elem = static_cast<grpc_call_element*>(user_data);
|
171
171
|
call_data* calld = static_cast<call_data*>(elem->call_data);
|
172
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
172
173
|
grpc_core::ExecCtx exec_ctx;
|
173
174
|
// If the call was not cancelled while we were in flight, process the result.
|
174
175
|
if (gpr_atm_full_cas(&calld->state, static_cast<gpr_atm>(STATE_INIT),
|
@@ -556,6 +556,7 @@ void grpc_call_unref(grpc_call* c) {
|
|
556
556
|
GPR_TIMER_SCOPE("grpc_call_unref", 0);
|
557
557
|
|
558
558
|
child_call* cc = c->child;
|
559
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
559
560
|
grpc_core::ExecCtx exec_ctx;
|
560
561
|
|
561
562
|
GRPC_API_TRACE("grpc_call_unref(c=%p)", 1, (c));
|
@@ -597,6 +598,7 @@ void grpc_call_unref(grpc_call* c) {
|
|
597
598
|
grpc_call_error grpc_call_cancel(grpc_call* call, void* reserved) {
|
598
599
|
GRPC_API_TRACE("grpc_call_cancel(call=%p, reserved=%p)", 2, (call, reserved));
|
599
600
|
GPR_ASSERT(!reserved);
|
601
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
600
602
|
grpc_core::ExecCtx exec_ctx;
|
601
603
|
cancel_with_error(call, GRPC_ERROR_CANCELLED);
|
602
604
|
return GRPC_CALL_OK;
|
@@ -646,6 +648,7 @@ grpc_call_error grpc_call_cancel_with_status(grpc_call* c,
|
|
646
648
|
grpc_status_code status,
|
647
649
|
const char* description,
|
648
650
|
void* reserved) {
|
651
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
649
652
|
grpc_core::ExecCtx exec_ctx;
|
650
653
|
GRPC_API_TRACE(
|
651
654
|
"grpc_call_cancel_with_status("
|
@@ -1894,7 +1897,6 @@ done_with_error:
|
|
1894
1897
|
|
1895
1898
|
grpc_call_error grpc_call_start_batch(grpc_call* call, const grpc_op* ops,
|
1896
1899
|
size_t nops, void* tag, void* reserved) {
|
1897
|
-
grpc_core::ExecCtx exec_ctx;
|
1898
1900
|
grpc_call_error err;
|
1899
1901
|
|
1900
1902
|
GRPC_API_TRACE(
|
@@ -1905,6 +1907,8 @@ grpc_call_error grpc_call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1905
1907
|
if (reserved != nullptr) {
|
1906
1908
|
err = GRPC_CALL_ERROR;
|
1907
1909
|
} else {
|
1910
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
1911
|
+
grpc_core::ExecCtx exec_ctx;
|
1908
1912
|
err = call_start_batch(call, ops, nops, tag, 0);
|
1909
1913
|
}
|
1910
1914
|
|
@@ -45,6 +45,11 @@ void grpc_channel_init_init(void);
|
|
45
45
|
/// registration order (in the case of a tie).
|
46
46
|
/// Stages are registered against one of the pre-determined channel stack
|
47
47
|
/// types.
|
48
|
+
/// If the channel stack type is GRPC_CLIENT_SUBCHANNEL, the caller should
|
49
|
+
/// ensure that subchannels with different filter lists will always have
|
50
|
+
/// different channel args. This requires setting a channel arg in case the
|
51
|
+
/// registration function relies on some condition other than channel args to
|
52
|
+
/// decide whether to add a filter or not.
|
48
53
|
void grpc_channel_init_register_stage(grpc_channel_stack_type type,
|
49
54
|
int priority,
|
50
55
|
grpc_channel_init_stage stage_fn,
|
@@ -854,21 +854,17 @@ static void cq_end_op_for_callback(
|
|
854
854
|
// for reserved storage. Invoke the done callback right away to release it.
|
855
855
|
done(done_arg, storage);
|
856
856
|
|
857
|
-
|
858
|
-
cq_check_tag(cq, tag, false); /* Used in debug builds only */
|
857
|
+
cq_check_tag(cq, tag, true); /* Used in debug builds only */
|
859
858
|
|
860
859
|
gpr_atm_no_barrier_fetch_add(&cqd->things_queued_ever, 1);
|
861
860
|
if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) {
|
862
|
-
gpr_mu_unlock(cq->mu);
|
863
861
|
cq_finish_shutdown_callback(cq);
|
864
|
-
} else {
|
865
|
-
gpr_mu_unlock(cq->mu);
|
866
862
|
}
|
867
863
|
|
868
864
|
GRPC_ERROR_UNREF(error);
|
869
865
|
|
870
866
|
auto* functor = static_cast<grpc_experimental_completion_queue_functor*>(tag);
|
871
|
-
(
|
867
|
+
grpc_core::ApplicationCallbackExecCtx::Enqueue(functor, is_success);
|
872
868
|
}
|
873
869
|
|
874
870
|
void grpc_cq_end_op(grpc_completion_queue* cq, void* tag, grpc_error* error,
|
@@ -1352,7 +1348,7 @@ static void cq_finish_shutdown_callback(grpc_completion_queue* cq) {
|
|
1352
1348
|
GPR_ASSERT(cqd->shutdown_called);
|
1353
1349
|
|
1354
1350
|
cq->poller_vtable->shutdown(POLLSET_FROM_CQ(cq), &cq->pollset_shutdown_done);
|
1355
|
-
(
|
1351
|
+
grpc_core::ApplicationCallbackExecCtx::Enqueue(callback, true);
|
1356
1352
|
}
|
1357
1353
|
|
1358
1354
|
static void cq_shutdown_callback(grpc_completion_queue* cq) {
|
@@ -1385,6 +1381,7 @@ static void cq_shutdown_callback(grpc_completion_queue* cq) {
|
|
1385
1381
|
to zero here, then enter shutdown mode and wake up any waiters */
|
1386
1382
|
void grpc_completion_queue_shutdown(grpc_completion_queue* cq) {
|
1387
1383
|
GPR_TIMER_SCOPE("grpc_completion_queue_shutdown", 0);
|
1384
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
1388
1385
|
grpc_core::ExecCtx exec_ctx;
|
1389
1386
|
GRPC_API_TRACE("grpc_completion_queue_shutdown(cq=%p)", 1, (cq));
|
1390
1387
|
cq->vtable->shutdown(cq);
|
@@ -130,10 +130,11 @@ void grpc_init(void) {
|
|
130
130
|
grpc_channel_init_init();
|
131
131
|
grpc_core::channelz::ChannelzRegistry::Init();
|
132
132
|
grpc_security_pre_init();
|
133
|
+
grpc_core::ApplicationCallbackExecCtx::GlobalInit();
|
133
134
|
grpc_core::ExecCtx::GlobalInit();
|
134
135
|
grpc_iomgr_init();
|
135
136
|
gpr_timers_global_init();
|
136
|
-
|
137
|
+
grpc_core::HandshakerRegistry::Init();
|
137
138
|
grpc_security_init();
|
138
139
|
for (i = 0; i < g_number_of_plugins; i++) {
|
139
140
|
if (g_all_of_the_plugins[i].init != nullptr) {
|
@@ -165,7 +166,7 @@ void grpc_shutdown(void) {
|
|
165
166
|
{
|
166
167
|
grpc_timer_manager_set_threading(
|
167
168
|
false); // shutdown timer_manager thread
|
168
|
-
|
169
|
+
grpc_core::Executor::ShutdownAll();
|
169
170
|
for (i = g_number_of_plugins; i >= 0; i--) {
|
170
171
|
if (g_all_of_the_plugins[i].destroy != nullptr) {
|
171
172
|
g_all_of_the_plugins[i].destroy();
|
@@ -176,13 +177,14 @@ void grpc_shutdown(void) {
|
|
176
177
|
gpr_timers_global_destroy();
|
177
178
|
grpc_tracer_shutdown();
|
178
179
|
grpc_mdctx_global_shutdown();
|
179
|
-
|
180
|
+
grpc_core::HandshakerRegistry::Shutdown();
|
180
181
|
grpc_slice_intern_shutdown();
|
181
182
|
grpc_core::channelz::ChannelzRegistry::Shutdown();
|
182
183
|
grpc_stats_shutdown();
|
183
184
|
grpc_core::Fork::GlobalShutdown();
|
184
185
|
}
|
185
186
|
grpc_core::ExecCtx::GlobalShutdown();
|
187
|
+
grpc_core::ApplicationCallbackExecCtx::GlobalShutdown();
|
186
188
|
}
|
187
189
|
gpr_mu_unlock(&g_init_mu);
|
188
190
|
}
|
@@ -997,10 +997,12 @@ void grpc_server_register_completion_queue(grpc_server* server,
|
|
997
997
|
"grpc_server_register_completion_queue(server=%p, cq=%p, reserved=%p)", 3,
|
998
998
|
(server, cq, reserved));
|
999
999
|
|
1000
|
-
|
1000
|
+
auto cq_type = grpc_get_cq_completion_type(cq);
|
1001
|
+
if (cq_type != GRPC_CQ_NEXT && cq_type != GRPC_CQ_CALLBACK) {
|
1001
1002
|
gpr_log(GPR_INFO,
|
1002
|
-
"Completion queue
|
1003
|
-
"
|
1003
|
+
"Completion queue of type %d is being registered as a "
|
1004
|
+
"server-completion-queue",
|
1005
|
+
static_cast<int>(cq_type));
|
1004
1006
|
/* Ideally we should log an error and abort but ruby-wrapped-language API
|
1005
1007
|
calls grpc_completion_queue_pluck() on server completion queues */
|
1006
1008
|
}
|
@@ -1134,8 +1136,9 @@ void grpc_server_start(grpc_server* server) {
|
|
1134
1136
|
server_ref(server);
|
1135
1137
|
server->starting = true;
|
1136
1138
|
GRPC_CLOSURE_SCHED(
|
1137
|
-
GRPC_CLOSURE_CREATE(
|
1138
|
-
|
1139
|
+
GRPC_CLOSURE_CREATE(
|
1140
|
+
start_listeners, server,
|
1141
|
+
grpc_core::Executor::Scheduler(grpc_core::ExecutorJobType::SHORT)),
|
1139
1142
|
GRPC_ERROR_NONE);
|
1140
1143
|
}
|
1141
1144
|
|
@@ -1301,6 +1304,7 @@ void grpc_server_shutdown_and_notify(grpc_server* server,
|
|
1301
1304
|
listener* l;
|
1302
1305
|
shutdown_tag* sdt;
|
1303
1306
|
channel_broadcaster broadcaster;
|
1307
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
1304
1308
|
grpc_core::ExecCtx exec_ctx;
|
1305
1309
|
|
1306
1310
|
GRPC_API_TRACE("grpc_server_shutdown_and_notify(server=%p, cq=%p, tag=%p)", 3,
|
@@ -1368,6 +1372,7 @@ void grpc_server_shutdown_and_notify(grpc_server* server,
|
|
1368
1372
|
|
1369
1373
|
void grpc_server_cancel_all_calls(grpc_server* server) {
|
1370
1374
|
channel_broadcaster broadcaster;
|
1375
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
1371
1376
|
grpc_core::ExecCtx exec_ctx;
|
1372
1377
|
|
1373
1378
|
GRPC_API_TRACE("grpc_server_cancel_all_calls(server=%p)", 1, (server));
|
@@ -1383,6 +1388,7 @@ void grpc_server_cancel_all_calls(grpc_server* server) {
|
|
1383
1388
|
|
1384
1389
|
void grpc_server_destroy(grpc_server* server) {
|
1385
1390
|
listener* l;
|
1391
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
1386
1392
|
grpc_core::ExecCtx exec_ctx;
|
1387
1393
|
|
1388
1394
|
GRPC_API_TRACE("grpc_server_destroy(server=%p)", 1, (server));
|
@@ -1468,6 +1474,7 @@ grpc_call_error grpc_server_request_call(
|
|
1468
1474
|
grpc_completion_queue* cq_bound_to_call,
|
1469
1475
|
grpc_completion_queue* cq_for_notification, void* tag) {
|
1470
1476
|
grpc_call_error error;
|
1477
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
1471
1478
|
grpc_core::ExecCtx exec_ctx;
|
1472
1479
|
requested_call* rc = static_cast<requested_call*>(gpr_malloc(sizeof(*rc)));
|
1473
1480
|
GRPC_STATS_INC_SERVER_REQUESTED_CALLS();
|
@@ -1514,11 +1521,11 @@ grpc_call_error grpc_server_request_registered_call(
|
|
1514
1521
|
grpc_metadata_array* initial_metadata, grpc_byte_buffer** optional_payload,
|
1515
1522
|
grpc_completion_queue* cq_bound_to_call,
|
1516
1523
|
grpc_completion_queue* cq_for_notification, void* tag) {
|
1517
|
-
|
1524
|
+
grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
|
1518
1525
|
grpc_core::ExecCtx exec_ctx;
|
1526
|
+
GRPC_STATS_INC_SERVER_REQUESTED_CALLS();
|
1519
1527
|
requested_call* rc = static_cast<requested_call*>(gpr_malloc(sizeof(*rc)));
|
1520
1528
|
registered_method* rm = static_cast<registered_method*>(rmp);
|
1521
|
-
GRPC_STATS_INC_SERVER_REQUESTED_CALLS();
|
1522
1529
|
GRPC_API_TRACE(
|
1523
1530
|
"grpc_server_request_registered_call("
|
1524
1531
|
"server=%p, rmp=%p, call=%p, deadline=%p, initial_metadata=%p, "
|
@@ -1536,19 +1543,17 @@ grpc_call_error grpc_server_request_registered_call(
|
|
1536
1543
|
}
|
1537
1544
|
if (cq_idx == server->cq_count) {
|
1538
1545
|
gpr_free(rc);
|
1539
|
-
|
1540
|
-
goto done;
|
1546
|
+
return GRPC_CALL_ERROR_NOT_SERVER_COMPLETION_QUEUE;
|
1541
1547
|
}
|
1542
1548
|
if ((optional_payload == nullptr) !=
|
1543
1549
|
(rm->payload_handling == GRPC_SRM_PAYLOAD_NONE)) {
|
1544
1550
|
gpr_free(rc);
|
1545
|
-
|
1546
|
-
goto done;
|
1551
|
+
return GRPC_CALL_ERROR_PAYLOAD_TYPE_MISMATCH;
|
1547
1552
|
}
|
1553
|
+
|
1548
1554
|
if (grpc_cq_begin_op(cq_for_notification, tag) == false) {
|
1549
1555
|
gpr_free(rc);
|
1550
|
-
|
1551
|
-
goto done;
|
1556
|
+
return GRPC_CALL_ERROR_COMPLETION_QUEUE_SHUTDOWN;
|
1552
1557
|
}
|
1553
1558
|
rc->cq_idx = cq_idx;
|
1554
1559
|
rc->type = REGISTERED_CALL;
|
@@ -1560,10 +1565,7 @@ grpc_call_error grpc_server_request_registered_call(
|
|
1560
1565
|
rc->data.registered.deadline = deadline;
|
1561
1566
|
rc->initial_metadata = initial_metadata;
|
1562
1567
|
rc->data.registered.optional_payload = optional_payload;
|
1563
|
-
|
1564
|
-
done:
|
1565
|
-
|
1566
|
-
return error;
|
1568
|
+
return queue_call_request(server, cq_idx, rc);
|
1567
1569
|
}
|
1568
1570
|
|
1569
1571
|
static void fail_call(grpc_server* server, size_t cq_idx, requested_call* rc,
|
@@ -240,6 +240,7 @@ RefCountedPtr<T> ServiceConfig::MethodConfigTableLookup(
|
|
240
240
|
value = table.Get(wildcard_path);
|
241
241
|
grpc_slice_unref_internal(wildcard_path);
|
242
242
|
gpr_free(path_str);
|
243
|
+
if (value == nullptr) return nullptr;
|
243
244
|
}
|
244
245
|
return RefCountedPtr<T>(*value);
|
245
246
|
}
|
@@ -236,113 +236,113 @@ grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
|
|
236
236
|
};
|
237
237
|
|
238
238
|
const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
|
239
|
-
{&grpc_static_metadata_refcounts[0], {{g_bytes + 0
|
240
|
-
{&grpc_static_metadata_refcounts[1], {{g_bytes + 5
|
241
|
-
{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
242
|
-
{&grpc_static_metadata_refcounts[3], {{g_bytes + 19
|
243
|
-
{&grpc_static_metadata_refcounts[4], {{g_bytes + 29
|
244
|
-
{&grpc_static_metadata_refcounts[5], {{g_bytes + 36
|
245
|
-
{&grpc_static_metadata_refcounts[6], {{g_bytes + 38
|
246
|
-
{&grpc_static_metadata_refcounts[7], {{g_bytes + 50
|
247
|
-
{&grpc_static_metadata_refcounts[8], {{g_bytes + 61
|
248
|
-
{&grpc_static_metadata_refcounts[9], {{g_bytes + 77
|
249
|
-
{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
250
|
-
{&grpc_static_metadata_refcounts[11], {{g_bytes + 110
|
251
|
-
{&grpc_static_metadata_refcounts[12], {{g_bytes + 131
|
252
|
-
{&grpc_static_metadata_refcounts[13], {{g_bytes + 144
|
253
|
-
{&grpc_static_metadata_refcounts[14], {{g_bytes + 158
|
254
|
-
{&grpc_static_metadata_refcounts[15], {{g_bytes + 170
|
255
|
-
{&grpc_static_metadata_refcounts[16], {{g_bytes + 186
|
256
|
-
{&grpc_static_metadata_refcounts[17], {{g_bytes + 201
|
257
|
-
{&grpc_static_metadata_refcounts[18], {{g_bytes + 231
|
258
|
-
{&grpc_static_metadata_refcounts[19], {{g_bytes + 268
|
259
|
-
{&grpc_static_metadata_refcounts[20], {{g_bytes + 278
|
260
|
-
{&grpc_static_metadata_refcounts[21], {{g_bytes + 282
|
261
|
-
{&grpc_static_metadata_refcounts[22], {{g_bytes + 290
|
262
|
-
{&grpc_static_metadata_refcounts[23], {{g_bytes + 316
|
263
|
-
{&grpc_static_metadata_refcounts[24], {{g_bytes + 338
|
264
|
-
{&grpc_static_metadata_refcounts[25], {{g_bytes + 350
|
265
|
-
{&grpc_static_metadata_refcounts[26], {{g_bytes + 351
|
266
|
-
{&grpc_static_metadata_refcounts[27], {{g_bytes + 352
|
267
|
-
{&grpc_static_metadata_refcounts[28], {{g_bytes + 353
|
268
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
269
|
-
{&grpc_static_metadata_refcounts[30], {{g_bytes + 354
|
270
|
-
{&grpc_static_metadata_refcounts[31], {{g_bytes + 373
|
271
|
-
{&grpc_static_metadata_refcounts[32], {{g_bytes + 385
|
272
|
-
{&grpc_static_metadata_refcounts[33], {{g_bytes + 415
|
273
|
-
{&grpc_static_metadata_refcounts[34], {{g_bytes + 446
|
274
|
-
{&grpc_static_metadata_refcounts[35], {{g_bytes + 482
|
275
|
-
{&grpc_static_metadata_refcounts[36], {{g_bytes + 510
|
276
|
-
{&grpc_static_metadata_refcounts[37], {{g_bytes + 590
|
277
|
-
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597
|
278
|
-
{&grpc_static_metadata_refcounts[39], {{g_bytes + 601
|
279
|
-
{&grpc_static_metadata_refcounts[40], {{g_bytes + 612
|
280
|
-
{&grpc_static_metadata_refcounts[41], {{g_bytes + 615
|
281
|
-
{&grpc_static_metadata_refcounts[42], {{g_bytes + 619
|
282
|
-
{&grpc_static_metadata_refcounts[43], {{g_bytes + 620
|
283
|
-
{&grpc_static_metadata_refcounts[44], {{g_bytes + 631
|
284
|
-
{&grpc_static_metadata_refcounts[45], {{g_bytes + 635
|
285
|
-
{&grpc_static_metadata_refcounts[46], {{g_bytes + 640
|
286
|
-
{&grpc_static_metadata_refcounts[47], {{g_bytes + 643
|
287
|
-
{&grpc_static_metadata_refcounts[48], {{g_bytes + 646
|
288
|
-
{&grpc_static_metadata_refcounts[49], {{g_bytes + 649
|
289
|
-
{&grpc_static_metadata_refcounts[50], {{g_bytes + 652
|
290
|
-
{&grpc_static_metadata_refcounts[51], {{g_bytes + 655
|
291
|
-
{&grpc_static_metadata_refcounts[52], {{g_bytes + 658
|
292
|
-
{&grpc_static_metadata_refcounts[53], {{g_bytes + 661
|
293
|
-
{&grpc_static_metadata_refcounts[54], {{g_bytes + 675
|
294
|
-
{&grpc_static_metadata_refcounts[55], {{g_bytes + 688
|
295
|
-
{&grpc_static_metadata_refcounts[56], {{g_bytes + 703
|
296
|
-
{&grpc_static_metadata_refcounts[57], {{g_bytes + 716
|
297
|
-
{&grpc_static_metadata_refcounts[58], {{g_bytes + 722
|
298
|
-
{&grpc_static_metadata_refcounts[59], {{g_bytes + 749
|
299
|
-
{&grpc_static_metadata_refcounts[60], {{g_bytes + 752
|
300
|
-
{&grpc_static_metadata_refcounts[61], {{g_bytes + 757
|
301
|
-
{&grpc_static_metadata_refcounts[62], {{g_bytes + 770
|
302
|
-
{&grpc_static_metadata_refcounts[63], {{g_bytes + 783
|
303
|
-
{&grpc_static_metadata_refcounts[64], {{g_bytes + 802
|
304
|
-
{&grpc_static_metadata_refcounts[65], {{g_bytes + 818
|
305
|
-
{&grpc_static_metadata_refcounts[66], {{g_bytes + 832
|
306
|
-
{&grpc_static_metadata_refcounts[67], {{g_bytes + 848
|
307
|
-
{&grpc_static_metadata_refcounts[68], {{g_bytes + 861
|
308
|
-
{&grpc_static_metadata_refcounts[69], {{g_bytes + 867
|
309
|
-
{&grpc_static_metadata_refcounts[70], {{g_bytes + 871
|
310
|
-
{&grpc_static_metadata_refcounts[71], {{g_bytes + 875
|
311
|
-
{&grpc_static_metadata_refcounts[72], {{g_bytes + 881
|
312
|
-
{&grpc_static_metadata_refcounts[73], {{g_bytes + 888
|
313
|
-
{&grpc_static_metadata_refcounts[74], {{g_bytes + 892
|
314
|
-
{&grpc_static_metadata_refcounts[75], {{g_bytes + 900
|
315
|
-
{&grpc_static_metadata_refcounts[76], {{g_bytes + 917
|
316
|
-
{&grpc_static_metadata_refcounts[77], {{g_bytes + 930
|
317
|
-
{&grpc_static_metadata_refcounts[78], {{g_bytes + 938
|
318
|
-
{&grpc_static_metadata_refcounts[79], {{g_bytes + 957
|
319
|
-
{&grpc_static_metadata_refcounts[80], {{g_bytes + 970
|
320
|
-
{&grpc_static_metadata_refcounts[81], {{g_bytes + 974
|
321
|
-
{&grpc_static_metadata_refcounts[82], {{g_bytes + 982
|
322
|
-
{&grpc_static_metadata_refcounts[83], {{g_bytes + 994
|
323
|
-
{&grpc_static_metadata_refcounts[84], {{g_bytes + 1012
|
324
|
-
{&grpc_static_metadata_refcounts[85], {{g_bytes + 1031
|
325
|
-
{&grpc_static_metadata_refcounts[86], {{g_bytes + 1036
|
326
|
-
{&grpc_static_metadata_refcounts[87], {{g_bytes + 1043
|
327
|
-
{&grpc_static_metadata_refcounts[88], {{g_bytes + 1050
|
328
|
-
{&grpc_static_metadata_refcounts[89], {{g_bytes + 1061
|
329
|
-
{&grpc_static_metadata_refcounts[90], {{g_bytes + 1067
|
330
|
-
{&grpc_static_metadata_refcounts[91], {{g_bytes + 1077
|
331
|
-
{&grpc_static_metadata_refcounts[92], {{g_bytes + 1102
|
332
|
-
{&grpc_static_metadata_refcounts[93], {{g_bytes + 1119
|
333
|
-
{&grpc_static_metadata_refcounts[94], {{g_bytes + 1123
|
334
|
-
{&grpc_static_metadata_refcounts[95], {{g_bytes + 1126
|
335
|
-
{&grpc_static_metadata_refcounts[96], {{g_bytes + 1142
|
336
|
-
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143
|
337
|
-
{&grpc_static_metadata_refcounts[98], {{g_bytes + 1151
|
338
|
-
{&grpc_static_metadata_refcounts[99], {{g_bytes + 1159
|
339
|
-
{&grpc_static_metadata_refcounts[100], {{g_bytes + 1175
|
340
|
-
{&grpc_static_metadata_refcounts[101], {{g_bytes + 1179
|
341
|
-
{&grpc_static_metadata_refcounts[102], {{g_bytes + 1182
|
342
|
-
{&grpc_static_metadata_refcounts[103], {{g_bytes + 1193
|
343
|
-
{&grpc_static_metadata_refcounts[104], {{g_bytes + 1209
|
344
|
-
{&grpc_static_metadata_refcounts[105], {{g_bytes + 1222
|
345
|
-
{&grpc_static_metadata_refcounts[106], {{g_bytes + 1234
|
239
|
+
{&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
|
240
|
+
{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
241
|
+
{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
242
|
+
{&grpc_static_metadata_refcounts[3], {{10, g_bytes + 19}}},
|
243
|
+
{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
244
|
+
{&grpc_static_metadata_refcounts[5], {{2, g_bytes + 36}}},
|
245
|
+
{&grpc_static_metadata_refcounts[6], {{12, g_bytes + 38}}},
|
246
|
+
{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
247
|
+
{&grpc_static_metadata_refcounts[8], {{16, g_bytes + 61}}},
|
248
|
+
{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
249
|
+
{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
250
|
+
{&grpc_static_metadata_refcounts[11], {{21, g_bytes + 110}}},
|
251
|
+
{&grpc_static_metadata_refcounts[12], {{13, g_bytes + 131}}},
|
252
|
+
{&grpc_static_metadata_refcounts[13], {{14, g_bytes + 144}}},
|
253
|
+
{&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
|
254
|
+
{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
255
|
+
{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
256
|
+
{&grpc_static_metadata_refcounts[17], {{30, g_bytes + 201}}},
|
257
|
+
{&grpc_static_metadata_refcounts[18], {{37, g_bytes + 231}}},
|
258
|
+
{&grpc_static_metadata_refcounts[19], {{10, g_bytes + 268}}},
|
259
|
+
{&grpc_static_metadata_refcounts[20], {{4, g_bytes + 278}}},
|
260
|
+
{&grpc_static_metadata_refcounts[21], {{8, g_bytes + 282}}},
|
261
|
+
{&grpc_static_metadata_refcounts[22], {{26, g_bytes + 290}}},
|
262
|
+
{&grpc_static_metadata_refcounts[23], {{22, g_bytes + 316}}},
|
263
|
+
{&grpc_static_metadata_refcounts[24], {{12, g_bytes + 338}}},
|
264
|
+
{&grpc_static_metadata_refcounts[25], {{1, g_bytes + 350}}},
|
265
|
+
{&grpc_static_metadata_refcounts[26], {{1, g_bytes + 351}}},
|
266
|
+
{&grpc_static_metadata_refcounts[27], {{1, g_bytes + 352}}},
|
267
|
+
{&grpc_static_metadata_refcounts[28], {{1, g_bytes + 353}}},
|
268
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}},
|
269
|
+
{&grpc_static_metadata_refcounts[30], {{19, g_bytes + 354}}},
|
270
|
+
{&grpc_static_metadata_refcounts[31], {{12, g_bytes + 373}}},
|
271
|
+
{&grpc_static_metadata_refcounts[32], {{30, g_bytes + 385}}},
|
272
|
+
{&grpc_static_metadata_refcounts[33], {{31, g_bytes + 415}}},
|
273
|
+
{&grpc_static_metadata_refcounts[34], {{36, g_bytes + 446}}},
|
274
|
+
{&grpc_static_metadata_refcounts[35], {{28, g_bytes + 482}}},
|
275
|
+
{&grpc_static_metadata_refcounts[36], {{80, g_bytes + 510}}},
|
276
|
+
{&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}},
|
277
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}},
|
278
|
+
{&grpc_static_metadata_refcounts[39], {{11, g_bytes + 601}}},
|
279
|
+
{&grpc_static_metadata_refcounts[40], {{3, g_bytes + 612}}},
|
280
|
+
{&grpc_static_metadata_refcounts[41], {{4, g_bytes + 615}}},
|
281
|
+
{&grpc_static_metadata_refcounts[42], {{1, g_bytes + 619}}},
|
282
|
+
{&grpc_static_metadata_refcounts[43], {{11, g_bytes + 620}}},
|
283
|
+
{&grpc_static_metadata_refcounts[44], {{4, g_bytes + 631}}},
|
284
|
+
{&grpc_static_metadata_refcounts[45], {{5, g_bytes + 635}}},
|
285
|
+
{&grpc_static_metadata_refcounts[46], {{3, g_bytes + 640}}},
|
286
|
+
{&grpc_static_metadata_refcounts[47], {{3, g_bytes + 643}}},
|
287
|
+
{&grpc_static_metadata_refcounts[48], {{3, g_bytes + 646}}},
|
288
|
+
{&grpc_static_metadata_refcounts[49], {{3, g_bytes + 649}}},
|
289
|
+
{&grpc_static_metadata_refcounts[50], {{3, g_bytes + 652}}},
|
290
|
+
{&grpc_static_metadata_refcounts[51], {{3, g_bytes + 655}}},
|
291
|
+
{&grpc_static_metadata_refcounts[52], {{3, g_bytes + 658}}},
|
292
|
+
{&grpc_static_metadata_refcounts[53], {{14, g_bytes + 661}}},
|
293
|
+
{&grpc_static_metadata_refcounts[54], {{13, g_bytes + 675}}},
|
294
|
+
{&grpc_static_metadata_refcounts[55], {{15, g_bytes + 688}}},
|
295
|
+
{&grpc_static_metadata_refcounts[56], {{13, g_bytes + 703}}},
|
296
|
+
{&grpc_static_metadata_refcounts[57], {{6, g_bytes + 716}}},
|
297
|
+
{&grpc_static_metadata_refcounts[58], {{27, g_bytes + 722}}},
|
298
|
+
{&grpc_static_metadata_refcounts[59], {{3, g_bytes + 749}}},
|
299
|
+
{&grpc_static_metadata_refcounts[60], {{5, g_bytes + 752}}},
|
300
|
+
{&grpc_static_metadata_refcounts[61], {{13, g_bytes + 757}}},
|
301
|
+
{&grpc_static_metadata_refcounts[62], {{13, g_bytes + 770}}},
|
302
|
+
{&grpc_static_metadata_refcounts[63], {{19, g_bytes + 783}}},
|
303
|
+
{&grpc_static_metadata_refcounts[64], {{16, g_bytes + 802}}},
|
304
|
+
{&grpc_static_metadata_refcounts[65], {{14, g_bytes + 818}}},
|
305
|
+
{&grpc_static_metadata_refcounts[66], {{16, g_bytes + 832}}},
|
306
|
+
{&grpc_static_metadata_refcounts[67], {{13, g_bytes + 848}}},
|
307
|
+
{&grpc_static_metadata_refcounts[68], {{6, g_bytes + 861}}},
|
308
|
+
{&grpc_static_metadata_refcounts[69], {{4, g_bytes + 867}}},
|
309
|
+
{&grpc_static_metadata_refcounts[70], {{4, g_bytes + 871}}},
|
310
|
+
{&grpc_static_metadata_refcounts[71], {{6, g_bytes + 875}}},
|
311
|
+
{&grpc_static_metadata_refcounts[72], {{7, g_bytes + 881}}},
|
312
|
+
{&grpc_static_metadata_refcounts[73], {{4, g_bytes + 888}}},
|
313
|
+
{&grpc_static_metadata_refcounts[74], {{8, g_bytes + 892}}},
|
314
|
+
{&grpc_static_metadata_refcounts[75], {{17, g_bytes + 900}}},
|
315
|
+
{&grpc_static_metadata_refcounts[76], {{13, g_bytes + 917}}},
|
316
|
+
{&grpc_static_metadata_refcounts[77], {{8, g_bytes + 930}}},
|
317
|
+
{&grpc_static_metadata_refcounts[78], {{19, g_bytes + 938}}},
|
318
|
+
{&grpc_static_metadata_refcounts[79], {{13, g_bytes + 957}}},
|
319
|
+
{&grpc_static_metadata_refcounts[80], {{4, g_bytes + 970}}},
|
320
|
+
{&grpc_static_metadata_refcounts[81], {{8, g_bytes + 974}}},
|
321
|
+
{&grpc_static_metadata_refcounts[82], {{12, g_bytes + 982}}},
|
322
|
+
{&grpc_static_metadata_refcounts[83], {{18, g_bytes + 994}}},
|
323
|
+
{&grpc_static_metadata_refcounts[84], {{19, g_bytes + 1012}}},
|
324
|
+
{&grpc_static_metadata_refcounts[85], {{5, g_bytes + 1031}}},
|
325
|
+
{&grpc_static_metadata_refcounts[86], {{7, g_bytes + 1036}}},
|
326
|
+
{&grpc_static_metadata_refcounts[87], {{7, g_bytes + 1043}}},
|
327
|
+
{&grpc_static_metadata_refcounts[88], {{11, g_bytes + 1050}}},
|
328
|
+
{&grpc_static_metadata_refcounts[89], {{6, g_bytes + 1061}}},
|
329
|
+
{&grpc_static_metadata_refcounts[90], {{10, g_bytes + 1067}}},
|
330
|
+
{&grpc_static_metadata_refcounts[91], {{25, g_bytes + 1077}}},
|
331
|
+
{&grpc_static_metadata_refcounts[92], {{17, g_bytes + 1102}}},
|
332
|
+
{&grpc_static_metadata_refcounts[93], {{4, g_bytes + 1119}}},
|
333
|
+
{&grpc_static_metadata_refcounts[94], {{3, g_bytes + 1123}}},
|
334
|
+
{&grpc_static_metadata_refcounts[95], {{16, g_bytes + 1126}}},
|
335
|
+
{&grpc_static_metadata_refcounts[96], {{1, g_bytes + 1142}}},
|
336
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}},
|
337
|
+
{&grpc_static_metadata_refcounts[98], {{8, g_bytes + 1151}}},
|
338
|
+
{&grpc_static_metadata_refcounts[99], {{16, g_bytes + 1159}}},
|
339
|
+
{&grpc_static_metadata_refcounts[100], {{4, g_bytes + 1175}}},
|
340
|
+
{&grpc_static_metadata_refcounts[101], {{3, g_bytes + 1179}}},
|
341
|
+
{&grpc_static_metadata_refcounts[102], {{11, g_bytes + 1182}}},
|
342
|
+
{&grpc_static_metadata_refcounts[103], {{16, g_bytes + 1193}}},
|
343
|
+
{&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}},
|
344
|
+
{&grpc_static_metadata_refcounts[105], {{12, g_bytes + 1222}}},
|
345
|
+
{&grpc_static_metadata_refcounts[106], {{21, g_bytes + 1234}}},
|
346
346
|
};
|
347
347
|
|
348
348
|
uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
|
@@ -404,178 +404,178 @@ grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
|
|
404
404
|
}
|
405
405
|
|
406
406
|
grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
|
407
|
-
{{&grpc_static_metadata_refcounts[3], {{g_bytes + 19
|
408
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
409
|
-
{{&grpc_static_metadata_refcounts[1], {{g_bytes + 5
|
410
|
-
{&grpc_static_metadata_refcounts[40], {{g_bytes + 612
|
411
|
-
{{&grpc_static_metadata_refcounts[1], {{g_bytes + 5
|
412
|
-
{&grpc_static_metadata_refcounts[41], {{g_bytes + 615
|
413
|
-
{{&grpc_static_metadata_refcounts[0], {{g_bytes + 0
|
414
|
-
{&grpc_static_metadata_refcounts[42], {{g_bytes + 619
|
415
|
-
{{&grpc_static_metadata_refcounts[0], {{g_bytes + 0
|
416
|
-
{&grpc_static_metadata_refcounts[43], {{g_bytes + 620
|
417
|
-
{{&grpc_static_metadata_refcounts[4], {{g_bytes + 29
|
418
|
-
{&grpc_static_metadata_refcounts[44], {{g_bytes + 631
|
419
|
-
{{&grpc_static_metadata_refcounts[4], {{g_bytes + 29
|
420
|
-
{&grpc_static_metadata_refcounts[45], {{g_bytes + 635
|
421
|
-
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
422
|
-
{&grpc_static_metadata_refcounts[46], {{g_bytes + 640
|
423
|
-
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
424
|
-
{&grpc_static_metadata_refcounts[47], {{g_bytes + 643
|
425
|
-
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
426
|
-
{&grpc_static_metadata_refcounts[48], {{g_bytes + 646
|
427
|
-
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
428
|
-
{&grpc_static_metadata_refcounts[49], {{g_bytes + 649
|
429
|
-
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
430
|
-
{&grpc_static_metadata_refcounts[50], {{g_bytes + 652
|
431
|
-
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
432
|
-
{&grpc_static_metadata_refcounts[51], {{g_bytes + 655
|
433
|
-
{{&grpc_static_metadata_refcounts[2], {{g_bytes + 12
|
434
|
-
{&grpc_static_metadata_refcounts[52], {{g_bytes + 658
|
435
|
-
{{&grpc_static_metadata_refcounts[53], {{g_bytes + 661
|
436
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
437
|
-
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186
|
438
|
-
{&grpc_static_metadata_refcounts[54], {{g_bytes + 675
|
439
|
-
{{&grpc_static_metadata_refcounts[55], {{g_bytes + 688
|
440
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
441
|
-
{{&grpc_static_metadata_refcounts[56], {{g_bytes + 703
|
442
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
443
|
-
{{&grpc_static_metadata_refcounts[57], {{g_bytes + 716
|
444
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
445
|
-
{{&grpc_static_metadata_refcounts[58], {{g_bytes + 722
|
446
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
447
|
-
{{&grpc_static_metadata_refcounts[59], {{g_bytes + 749
|
448
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
449
|
-
{{&grpc_static_metadata_refcounts[60], {{g_bytes + 752
|
450
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
451
|
-
{{&grpc_static_metadata_refcounts[61], {{g_bytes + 757
|
452
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
453
|
-
{{&grpc_static_metadata_refcounts[62], {{g_bytes + 770
|
454
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
455
|
-
{{&grpc_static_metadata_refcounts[63], {{g_bytes + 783
|
456
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
457
|
-
{{&grpc_static_metadata_refcounts[15], {{g_bytes + 170
|
458
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
459
|
-
{{&grpc_static_metadata_refcounts[64], {{g_bytes + 802
|
460
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
461
|
-
{{&grpc_static_metadata_refcounts[65], {{g_bytes + 818
|
462
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
463
|
-
{{&grpc_static_metadata_refcounts[66], {{g_bytes + 832
|
464
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
465
|
-
{{&grpc_static_metadata_refcounts[67], {{g_bytes + 848
|
466
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
467
|
-
{{&grpc_static_metadata_refcounts[14], {{g_bytes + 158
|
468
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
469
|
-
{{&grpc_static_metadata_refcounts[68], {{g_bytes + 861
|
470
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
471
|
-
{{&grpc_static_metadata_refcounts[69], {{g_bytes + 867
|
472
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
473
|
-
{{&grpc_static_metadata_refcounts[70], {{g_bytes + 871
|
474
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
475
|
-
{{&grpc_static_metadata_refcounts[71], {{g_bytes + 875
|
476
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
477
|
-
{{&grpc_static_metadata_refcounts[72], {{g_bytes + 881
|
478
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
479
|
-
{{&grpc_static_metadata_refcounts[73], {{g_bytes + 888
|
480
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
481
|
-
{{&grpc_static_metadata_refcounts[20], {{g_bytes + 278
|
482
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
483
|
-
{{&grpc_static_metadata_refcounts[74], {{g_bytes + 892
|
484
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
485
|
-
{{&grpc_static_metadata_refcounts[75], {{g_bytes + 900
|
486
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
487
|
-
{{&grpc_static_metadata_refcounts[76], {{g_bytes + 917
|
488
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
489
|
-
{{&grpc_static_metadata_refcounts[77], {{g_bytes + 930
|
490
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
491
|
-
{{&grpc_static_metadata_refcounts[78], {{g_bytes + 938
|
492
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
493
|
-
{{&grpc_static_metadata_refcounts[79], {{g_bytes + 957
|
494
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
495
|
-
{{&grpc_static_metadata_refcounts[80], {{g_bytes + 970
|
496
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
497
|
-
{{&grpc_static_metadata_refcounts[81], {{g_bytes + 974
|
498
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
499
|
-
{{&grpc_static_metadata_refcounts[82], {{g_bytes + 982
|
500
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
501
|
-
{{&grpc_static_metadata_refcounts[83], {{g_bytes + 994
|
502
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
503
|
-
{{&grpc_static_metadata_refcounts[84], {{g_bytes + 1012
|
504
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
505
|
-
{{&grpc_static_metadata_refcounts[85], {{g_bytes + 1031
|
506
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
507
|
-
{{&grpc_static_metadata_refcounts[86], {{g_bytes + 1036
|
508
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
509
|
-
{{&grpc_static_metadata_refcounts[87], {{g_bytes + 1043
|
510
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
511
|
-
{{&grpc_static_metadata_refcounts[88], {{g_bytes + 1050
|
512
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
513
|
-
{{&grpc_static_metadata_refcounts[89], {{g_bytes + 1061
|
514
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
515
|
-
{{&grpc_static_metadata_refcounts[90], {{g_bytes + 1067
|
516
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
517
|
-
{{&grpc_static_metadata_refcounts[91], {{g_bytes + 1077
|
518
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
519
|
-
{{&grpc_static_metadata_refcounts[92], {{g_bytes + 1102
|
520
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
521
|
-
{{&grpc_static_metadata_refcounts[19], {{g_bytes + 268
|
522
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
523
|
-
{{&grpc_static_metadata_refcounts[93], {{g_bytes + 1119
|
524
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
525
|
-
{{&grpc_static_metadata_refcounts[94], {{g_bytes + 1123
|
526
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
527
|
-
{{&grpc_static_metadata_refcounts[95], {{g_bytes + 1126
|
528
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
529
|
-
{{&grpc_static_metadata_refcounts[7], {{g_bytes + 50
|
530
|
-
{&grpc_static_metadata_refcounts[96], {{g_bytes + 1142
|
531
|
-
{{&grpc_static_metadata_refcounts[7], {{g_bytes + 50
|
532
|
-
{&grpc_static_metadata_refcounts[25], {{g_bytes + 350
|
533
|
-
{{&grpc_static_metadata_refcounts[7], {{g_bytes + 50
|
534
|
-
{&grpc_static_metadata_refcounts[26], {{g_bytes + 351
|
535
|
-
{{&grpc_static_metadata_refcounts[9], {{g_bytes + 77
|
536
|
-
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143
|
537
|
-
{{&grpc_static_metadata_refcounts[9], {{g_bytes + 77
|
538
|
-
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597
|
539
|
-
{{&grpc_static_metadata_refcounts[9], {{g_bytes + 77
|
540
|
-
{&grpc_static_metadata_refcounts[37], {{g_bytes + 590
|
541
|
-
{{&grpc_static_metadata_refcounts[5], {{g_bytes + 36
|
542
|
-
{&grpc_static_metadata_refcounts[98], {{g_bytes + 1151
|
543
|
-
{{&grpc_static_metadata_refcounts[14], {{g_bytes + 158
|
544
|
-
{&grpc_static_metadata_refcounts[99], {{g_bytes + 1159
|
545
|
-
{{&grpc_static_metadata_refcounts[4], {{g_bytes + 29
|
546
|
-
{&grpc_static_metadata_refcounts[100], {{g_bytes + 1175
|
547
|
-
{{&grpc_static_metadata_refcounts[1], {{g_bytes + 5
|
548
|
-
{&grpc_static_metadata_refcounts[101], {{g_bytes + 1179
|
549
|
-
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186
|
550
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
551
|
-
{{&grpc_static_metadata_refcounts[15], {{g_bytes + 170
|
552
|
-
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143
|
553
|
-
{{&grpc_static_metadata_refcounts[15], {{g_bytes + 170
|
554
|
-
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597
|
555
|
-
{{&grpc_static_metadata_refcounts[21], {{g_bytes + 282
|
556
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
557
|
-
{{&grpc_static_metadata_refcounts[102], {{g_bytes + 1182
|
558
|
-
{&grpc_static_metadata_refcounts[29], {{g_bytes + 354
|
559
|
-
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
560
|
-
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143
|
561
|
-
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
562
|
-
{&grpc_static_metadata_refcounts[37], {{g_bytes + 590
|
563
|
-
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
564
|
-
{&grpc_static_metadata_refcounts[103], {{g_bytes + 1193
|
565
|
-
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
566
|
-
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597
|
567
|
-
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
568
|
-
{&grpc_static_metadata_refcounts[104], {{g_bytes + 1209
|
569
|
-
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
570
|
-
{&grpc_static_metadata_refcounts[105], {{g_bytes + 1222
|
571
|
-
{{&grpc_static_metadata_refcounts[10], {{g_bytes + 90
|
572
|
-
{&grpc_static_metadata_refcounts[106], {{g_bytes + 1234
|
573
|
-
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186
|
574
|
-
{&grpc_static_metadata_refcounts[97], {{g_bytes + 1143
|
575
|
-
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186
|
576
|
-
{&grpc_static_metadata_refcounts[38], {{g_bytes + 597
|
577
|
-
{{&grpc_static_metadata_refcounts[16], {{g_bytes + 186
|
578
|
-
{&grpc_static_metadata_refcounts[104], {{g_bytes + 1209
|
407
|
+
{{&grpc_static_metadata_refcounts[3], {{10, g_bytes + 19}}},
|
408
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
409
|
+
{{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
410
|
+
{&grpc_static_metadata_refcounts[40], {{3, g_bytes + 612}}}},
|
411
|
+
{{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
412
|
+
{&grpc_static_metadata_refcounts[41], {{4, g_bytes + 615}}}},
|
413
|
+
{{&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
|
414
|
+
{&grpc_static_metadata_refcounts[42], {{1, g_bytes + 619}}}},
|
415
|
+
{{&grpc_static_metadata_refcounts[0], {{5, g_bytes + 0}}},
|
416
|
+
{&grpc_static_metadata_refcounts[43], {{11, g_bytes + 620}}}},
|
417
|
+
{{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
418
|
+
{&grpc_static_metadata_refcounts[44], {{4, g_bytes + 631}}}},
|
419
|
+
{{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
420
|
+
{&grpc_static_metadata_refcounts[45], {{5, g_bytes + 635}}}},
|
421
|
+
{{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
422
|
+
{&grpc_static_metadata_refcounts[46], {{3, g_bytes + 640}}}},
|
423
|
+
{{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
424
|
+
{&grpc_static_metadata_refcounts[47], {{3, g_bytes + 643}}}},
|
425
|
+
{{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
426
|
+
{&grpc_static_metadata_refcounts[48], {{3, g_bytes + 646}}}},
|
427
|
+
{{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
428
|
+
{&grpc_static_metadata_refcounts[49], {{3, g_bytes + 649}}}},
|
429
|
+
{{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
430
|
+
{&grpc_static_metadata_refcounts[50], {{3, g_bytes + 652}}}},
|
431
|
+
{{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
432
|
+
{&grpc_static_metadata_refcounts[51], {{3, g_bytes + 655}}}},
|
433
|
+
{{&grpc_static_metadata_refcounts[2], {{7, g_bytes + 12}}},
|
434
|
+
{&grpc_static_metadata_refcounts[52], {{3, g_bytes + 658}}}},
|
435
|
+
{{&grpc_static_metadata_refcounts[53], {{14, g_bytes + 661}}},
|
436
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
437
|
+
{{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
438
|
+
{&grpc_static_metadata_refcounts[54], {{13, g_bytes + 675}}}},
|
439
|
+
{{&grpc_static_metadata_refcounts[55], {{15, g_bytes + 688}}},
|
440
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
441
|
+
{{&grpc_static_metadata_refcounts[56], {{13, g_bytes + 703}}},
|
442
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
443
|
+
{{&grpc_static_metadata_refcounts[57], {{6, g_bytes + 716}}},
|
444
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
445
|
+
{{&grpc_static_metadata_refcounts[58], {{27, g_bytes + 722}}},
|
446
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
447
|
+
{{&grpc_static_metadata_refcounts[59], {{3, g_bytes + 749}}},
|
448
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
449
|
+
{{&grpc_static_metadata_refcounts[60], {{5, g_bytes + 752}}},
|
450
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
451
|
+
{{&grpc_static_metadata_refcounts[61], {{13, g_bytes + 757}}},
|
452
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
453
|
+
{{&grpc_static_metadata_refcounts[62], {{13, g_bytes + 770}}},
|
454
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
455
|
+
{{&grpc_static_metadata_refcounts[63], {{19, g_bytes + 783}}},
|
456
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
457
|
+
{{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
458
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
459
|
+
{{&grpc_static_metadata_refcounts[64], {{16, g_bytes + 802}}},
|
460
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
461
|
+
{{&grpc_static_metadata_refcounts[65], {{14, g_bytes + 818}}},
|
462
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
463
|
+
{{&grpc_static_metadata_refcounts[66], {{16, g_bytes + 832}}},
|
464
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
465
|
+
{{&grpc_static_metadata_refcounts[67], {{13, g_bytes + 848}}},
|
466
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
467
|
+
{{&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
|
468
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
469
|
+
{{&grpc_static_metadata_refcounts[68], {{6, g_bytes + 861}}},
|
470
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
471
|
+
{{&grpc_static_metadata_refcounts[69], {{4, g_bytes + 867}}},
|
472
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
473
|
+
{{&grpc_static_metadata_refcounts[70], {{4, g_bytes + 871}}},
|
474
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
475
|
+
{{&grpc_static_metadata_refcounts[71], {{6, g_bytes + 875}}},
|
476
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
477
|
+
{{&grpc_static_metadata_refcounts[72], {{7, g_bytes + 881}}},
|
478
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
479
|
+
{{&grpc_static_metadata_refcounts[73], {{4, g_bytes + 888}}},
|
480
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
481
|
+
{{&grpc_static_metadata_refcounts[20], {{4, g_bytes + 278}}},
|
482
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
483
|
+
{{&grpc_static_metadata_refcounts[74], {{8, g_bytes + 892}}},
|
484
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
485
|
+
{{&grpc_static_metadata_refcounts[75], {{17, g_bytes + 900}}},
|
486
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
487
|
+
{{&grpc_static_metadata_refcounts[76], {{13, g_bytes + 917}}},
|
488
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
489
|
+
{{&grpc_static_metadata_refcounts[77], {{8, g_bytes + 930}}},
|
490
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
491
|
+
{{&grpc_static_metadata_refcounts[78], {{19, g_bytes + 938}}},
|
492
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
493
|
+
{{&grpc_static_metadata_refcounts[79], {{13, g_bytes + 957}}},
|
494
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
495
|
+
{{&grpc_static_metadata_refcounts[80], {{4, g_bytes + 970}}},
|
496
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
497
|
+
{{&grpc_static_metadata_refcounts[81], {{8, g_bytes + 974}}},
|
498
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
499
|
+
{{&grpc_static_metadata_refcounts[82], {{12, g_bytes + 982}}},
|
500
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
501
|
+
{{&grpc_static_metadata_refcounts[83], {{18, g_bytes + 994}}},
|
502
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
503
|
+
{{&grpc_static_metadata_refcounts[84], {{19, g_bytes + 1012}}},
|
504
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
505
|
+
{{&grpc_static_metadata_refcounts[85], {{5, g_bytes + 1031}}},
|
506
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
507
|
+
{{&grpc_static_metadata_refcounts[86], {{7, g_bytes + 1036}}},
|
508
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
509
|
+
{{&grpc_static_metadata_refcounts[87], {{7, g_bytes + 1043}}},
|
510
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
511
|
+
{{&grpc_static_metadata_refcounts[88], {{11, g_bytes + 1050}}},
|
512
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
513
|
+
{{&grpc_static_metadata_refcounts[89], {{6, g_bytes + 1061}}},
|
514
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
515
|
+
{{&grpc_static_metadata_refcounts[90], {{10, g_bytes + 1067}}},
|
516
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
517
|
+
{{&grpc_static_metadata_refcounts[91], {{25, g_bytes + 1077}}},
|
518
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
519
|
+
{{&grpc_static_metadata_refcounts[92], {{17, g_bytes + 1102}}},
|
520
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
521
|
+
{{&grpc_static_metadata_refcounts[19], {{10, g_bytes + 268}}},
|
522
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
523
|
+
{{&grpc_static_metadata_refcounts[93], {{4, g_bytes + 1119}}},
|
524
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
525
|
+
{{&grpc_static_metadata_refcounts[94], {{3, g_bytes + 1123}}},
|
526
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
527
|
+
{{&grpc_static_metadata_refcounts[95], {{16, g_bytes + 1126}}},
|
528
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
529
|
+
{{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
530
|
+
{&grpc_static_metadata_refcounts[96], {{1, g_bytes + 1142}}}},
|
531
|
+
{{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
532
|
+
{&grpc_static_metadata_refcounts[25], {{1, g_bytes + 350}}}},
|
533
|
+
{{&grpc_static_metadata_refcounts[7], {{11, g_bytes + 50}}},
|
534
|
+
{&grpc_static_metadata_refcounts[26], {{1, g_bytes + 351}}}},
|
535
|
+
{{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
536
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}},
|
537
|
+
{{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
538
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}},
|
539
|
+
{{&grpc_static_metadata_refcounts[9], {{13, g_bytes + 77}}},
|
540
|
+
{&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}}},
|
541
|
+
{{&grpc_static_metadata_refcounts[5], {{2, g_bytes + 36}}},
|
542
|
+
{&grpc_static_metadata_refcounts[98], {{8, g_bytes + 1151}}}},
|
543
|
+
{{&grpc_static_metadata_refcounts[14], {{12, g_bytes + 158}}},
|
544
|
+
{&grpc_static_metadata_refcounts[99], {{16, g_bytes + 1159}}}},
|
545
|
+
{{&grpc_static_metadata_refcounts[4], {{7, g_bytes + 29}}},
|
546
|
+
{&grpc_static_metadata_refcounts[100], {{4, g_bytes + 1175}}}},
|
547
|
+
{{&grpc_static_metadata_refcounts[1], {{7, g_bytes + 5}}},
|
548
|
+
{&grpc_static_metadata_refcounts[101], {{3, g_bytes + 1179}}}},
|
549
|
+
{{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
550
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
551
|
+
{{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
552
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}},
|
553
|
+
{{&grpc_static_metadata_refcounts[15], {{16, g_bytes + 170}}},
|
554
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}},
|
555
|
+
{{&grpc_static_metadata_refcounts[21], {{8, g_bytes + 282}}},
|
556
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
557
|
+
{{&grpc_static_metadata_refcounts[102], {{11, g_bytes + 1182}}},
|
558
|
+
{&grpc_static_metadata_refcounts[29], {{0, g_bytes + 354}}}},
|
559
|
+
{{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
560
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}},
|
561
|
+
{{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
562
|
+
{&grpc_static_metadata_refcounts[37], {{7, g_bytes + 590}}}},
|
563
|
+
{{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
564
|
+
{&grpc_static_metadata_refcounts[103], {{16, g_bytes + 1193}}}},
|
565
|
+
{{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
566
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}},
|
567
|
+
{{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
568
|
+
{&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}}},
|
569
|
+
{{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
570
|
+
{&grpc_static_metadata_refcounts[105], {{12, g_bytes + 1222}}}},
|
571
|
+
{{&grpc_static_metadata_refcounts[10], {{20, g_bytes + 90}}},
|
572
|
+
{&grpc_static_metadata_refcounts[106], {{21, g_bytes + 1234}}}},
|
573
|
+
{{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
574
|
+
{&grpc_static_metadata_refcounts[97], {{8, g_bytes + 1143}}}},
|
575
|
+
{{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
576
|
+
{&grpc_static_metadata_refcounts[38], {{4, g_bytes + 597}}}},
|
577
|
+
{{&grpc_static_metadata_refcounts[16], {{15, g_bytes + 186}}},
|
578
|
+
{&grpc_static_metadata_refcounts[104], {{13, g_bytes + 1209}}}},
|
579
579
|
};
|
580
580
|
const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,
|
581
581
|
79, 80, 81, 82};
|