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