grpc 1.23.1 → 1.24.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 +757 -477
- data/include/grpc/grpc.h +3 -1
- data/include/grpc/grpc_security.h +20 -4
- data/include/grpc/impl/codegen/grpc_types.h +6 -5
- data/include/grpc/impl/codegen/port_platform.h +25 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +78 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +36 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +16 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +325 -267
- data/src/core/ext/filters/client_channel/client_channel_factory.h +0 -4
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +23 -32
- data/src/core/ext/filters/client_channel/http_proxy.cc +7 -3
- data/src/core/ext/filters/client_channel/lb_policy.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy.h +58 -34
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +46 -50
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +9 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +35 -17
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +130 -215
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +34 -21
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +1120 -802
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h +8 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc +33 -12
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.cc +151 -40
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h +184 -26
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.cc +389 -245
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +98 -60
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +6 -1
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +89 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +3 -8
- data/src/core/ext/filters/client_channel/server_address.cc +1 -3
- data/src/core/ext/filters/client_channel/server_address.h +1 -1
- data/src/core/ext/filters/client_channel/subchannel.h +2 -1
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +207 -29
- data/src/core/ext/filters/http/client/http_client_filter.cc +10 -8
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +10 -7
- data/src/core/ext/filters/http/server/http_server_filter.cc +52 -26
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +23 -20
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +24 -21
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +37 -24
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +237 -191
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +29 -27
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +19 -4
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +13 -4
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +2 -1
- data/src/core/ext/transport/chttp2/transport/internal.h +0 -2
- data/src/core/ext/transport/chttp2/transport/parsing.cc +99 -71
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +222 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +818 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +314 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +1142 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +158 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +69 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +49 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +240 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +110 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +324 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +235 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +661 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +84 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +274 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +175 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +572 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +150 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +596 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +80 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +95 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +308 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +128 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +392 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +236 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +111 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +324 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +23 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +50 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +52 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +130 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +39 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +87 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +39 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +85 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +17 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +18 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/http.upb.c +66 -0
- data/src/core/ext/upb-generated/google/api/http.upb.h +190 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +485 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1690 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +22 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +50 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +79 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +215 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +106 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +238 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +33 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +74 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +49 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +126 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +209 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +681 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +42 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +109 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +36 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +84 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +133 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +359 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +58 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +144 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +443 -0
- data/src/core/ext/upb-generated/validate/validate.upb.h +2037 -0
- data/src/core/lib/channel/channel_args.cc +21 -0
- data/src/core/lib/channel/channel_args.h +16 -2
- data/src/core/lib/channel/channel_stack.h +2 -1
- data/src/core/lib/channel/channelz.cc +54 -56
- data/src/core/lib/channel/channelz.h +29 -12
- data/src/core/lib/compression/compression.cc +2 -1
- data/src/core/lib/compression/compression_internal.h +8 -0
- data/src/core/lib/gpr/log_linux.cc +2 -2
- data/src/core/lib/gpr/log_posix.cc +2 -2
- data/src/core/lib/gpr/time_precise.cc +123 -36
- data/src/core/lib/gpr/time_precise.h +37 -0
- data/src/core/lib/gprpp/abstract.h +10 -0
- data/src/core/lib/gprpp/atomic.h +4 -0
- data/src/core/lib/gprpp/inlined_vector.h +20 -4
- data/src/core/lib/gprpp/map.h +109 -6
- data/src/core/lib/gprpp/memory.h +6 -0
- data/src/core/lib/gprpp/ref_counted_ptr.h +2 -0
- data/src/core/lib/iomgr/ev_epollex_linux.cc +29 -54
- data/src/core/lib/iomgr/exec_ctx.cc +27 -17
- data/src/core/lib/iomgr/exec_ctx.h +3 -0
- data/src/core/lib/iomgr/sockaddr_utils.cc +1 -3
- data/src/core/lib/iomgr/tcp_posix.cc +16 -25
- data/src/core/lib/iomgr/tcp_server_custom.cc +1 -1
- data/src/core/lib/iomgr/timer_manager.cc +8 -1
- data/src/core/lib/iomgr/timer_manager.h +2 -0
- data/src/core/lib/security/credentials/credentials.h +8 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +23 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +3 -0
- data/src/core/lib/security/credentials/tls/spiffe_credentials.cc +3 -3
- data/src/core/lib/security/security_connector/ssl_utils.cc +1 -12
- data/src/core/lib/security/security_connector/ssl_utils.h +10 -6
- data/src/core/lib/security/security_connector/ssl_utils_config.cc +32 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.h +30 -0
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +161 -49
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +34 -1
- data/src/core/lib/slice/slice_intern.cc +17 -9
- data/src/core/lib/slice/slice_internal.h +34 -7
- data/src/core/lib/slice/slice_utils.h +7 -3
- data/src/core/lib/surface/call.cc +97 -57
- data/src/core/lib/surface/channel.cc +2 -2
- data/src/core/lib/surface/completion_queue.cc +10 -16
- data/src/core/lib/surface/init.cc +3 -0
- data/src/core/lib/surface/server.cc +11 -14
- data/src/core/lib/surface/validate_metadata.cc +4 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/metadata.cc +4 -4
- data/src/core/lib/transport/metadata_batch.cc +72 -16
- data/src/core/lib/transport/metadata_batch.h +38 -0
- data/src/core/lib/transport/static_metadata.cc +814 -1023
- data/src/core/lib/transport/static_metadata.h +271 -213
- data/src/core/lib/transport/transport.h +12 -0
- data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +104 -76
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +34 -16
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +2 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +10 -6
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +4 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +74 -48
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +34 -26
- data/src/core/tsi/ssl_transport_security.cc +14 -6
- data/src/core/tsi/ssl_transport_security.h +4 -0
- data/src/ruby/ext/grpc/ext-export.clang +1 -0
- data/src/ruby/ext/grpc/ext-export.gcc +6 -0
- data/src/ruby/ext/grpc/extconf.rb +5 -0
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
- data/src/ruby/ext/grpc/rb_grpc.c +1 -42
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
- data/src/ruby/lib/grpc.rb +2 -0
- data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
- data/src/ruby/lib/grpc/errors.rb +4 -7
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +9 -4
- data/src/ruby/lib/grpc/structs.rb +15 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/errors_spec.rb +1 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +34 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +53 -29
- data/third_party/upb/upb/decode.c +604 -0
- data/third_party/upb/upb/decode.h +21 -0
- data/third_party/upb/upb/encode.c +378 -0
- data/third_party/upb/upb/encode.h +21 -0
- data/third_party/upb/upb/generated_util.h +105 -0
- data/third_party/upb/upb/msg.c +111 -0
- data/third_party/upb/upb/msg.h +69 -0
- data/third_party/upb/upb/port.c +27 -0
- data/third_party/upb/upb/port_def.inc +152 -0
- data/third_party/upb/upb/port_undef.inc +21 -0
- data/third_party/upb/upb/table.c +911 -0
- data/third_party/upb/upb/table.int.h +507 -0
- data/third_party/upb/upb/upb.c +261 -0
- data/third_party/upb/upb/upb.h +364 -0
- metadata +134 -55
- data/src/core/ext/filters/client_channel/health/health.pb.c +0 -23
- data/src/core/ext/filters/client_channel/health/health.pb.h +0 -73
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c +0 -19
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h +0 -54
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c +0 -19
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h +0 -54
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +0 -89
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +0 -164
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc +0 -520
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.h +0 -323
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc +0 -145
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h +0 -149
- data/src/core/tsi/alts/handshaker/altscontext.pb.c +0 -47
- data/src/core/tsi/alts/handshaker/altscontext.pb.h +0 -63
- data/src/core/tsi/alts/handshaker/handshaker.pb.c +0 -122
- data/src/core/tsi/alts/handshaker/handshaker.pb.h +0 -254
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.c +0 -49
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.h +0 -78
- data/third_party/nanopb/pb.h +0 -579
- data/third_party/nanopb/pb_common.c +0 -97
- data/third_party/nanopb/pb_common.h +0 -42
- data/third_party/nanopb/pb_decode.c +0 -1347
- data/third_party/nanopb/pb_decode.h +0 -149
- data/third_party/nanopb/pb_encode.c +0 -696
- data/third_party/nanopb/pb_encode.h +0 -154
@@ -0,0 +1,74 @@
|
|
1
|
+
/* This file was generated by upbc (the upb compiler) from the input
|
2
|
+
* file:
|
3
|
+
*
|
4
|
+
* google/rpc/status.proto
|
5
|
+
*
|
6
|
+
* Do not edit -- your changes will be discarded when the file is
|
7
|
+
* regenerated. */
|
8
|
+
|
9
|
+
#ifndef GOOGLE_RPC_STATUS_PROTO_UPB_H_
|
10
|
+
#define GOOGLE_RPC_STATUS_PROTO_UPB_H_
|
11
|
+
|
12
|
+
#include "upb/generated_util.h"
|
13
|
+
#include "upb/msg.h"
|
14
|
+
#include "upb/decode.h"
|
15
|
+
#include "upb/encode.h"
|
16
|
+
|
17
|
+
#include "upb/port_def.inc"
|
18
|
+
|
19
|
+
#ifdef __cplusplus
|
20
|
+
extern "C" {
|
21
|
+
#endif
|
22
|
+
|
23
|
+
struct google_rpc_Status;
|
24
|
+
typedef struct google_rpc_Status google_rpc_Status;
|
25
|
+
extern const upb_msglayout google_rpc_Status_msginit;
|
26
|
+
struct google_protobuf_Any;
|
27
|
+
extern const upb_msglayout google_protobuf_Any_msginit;
|
28
|
+
|
29
|
+
|
30
|
+
/* google.rpc.Status */
|
31
|
+
|
32
|
+
UPB_INLINE google_rpc_Status *google_rpc_Status_new(upb_arena *arena) {
|
33
|
+
return (google_rpc_Status *)upb_msg_new(&google_rpc_Status_msginit, arena);
|
34
|
+
}
|
35
|
+
UPB_INLINE google_rpc_Status *google_rpc_Status_parse(const char *buf, size_t size,
|
36
|
+
upb_arena *arena) {
|
37
|
+
google_rpc_Status *ret = google_rpc_Status_new(arena);
|
38
|
+
return (ret && upb_decode(buf, size, ret, &google_rpc_Status_msginit, arena)) ? ret : NULL;
|
39
|
+
}
|
40
|
+
UPB_INLINE char *google_rpc_Status_serialize(const google_rpc_Status *msg, upb_arena *arena, size_t *len) {
|
41
|
+
return upb_encode(msg, &google_rpc_Status_msginit, arena, len);
|
42
|
+
}
|
43
|
+
|
44
|
+
UPB_INLINE int32_t google_rpc_Status_code(const google_rpc_Status *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(0, 0)); }
|
45
|
+
UPB_INLINE upb_strview google_rpc_Status_message(const google_rpc_Status *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
46
|
+
UPB_INLINE const struct google_protobuf_Any* const* google_rpc_Status_details(const google_rpc_Status *msg, size_t *len) { return (const struct google_protobuf_Any* const*)_upb_array_accessor(msg, UPB_SIZE(12, 24), len); }
|
47
|
+
|
48
|
+
UPB_INLINE void google_rpc_Status_set_code(google_rpc_Status *msg, int32_t value) {
|
49
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(0, 0)) = value;
|
50
|
+
}
|
51
|
+
UPB_INLINE void google_rpc_Status_set_message(google_rpc_Status *msg, upb_strview value) {
|
52
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
53
|
+
}
|
54
|
+
UPB_INLINE struct google_protobuf_Any** google_rpc_Status_mutable_details(google_rpc_Status *msg, size_t *len) {
|
55
|
+
return (struct google_protobuf_Any**)_upb_array_mutable_accessor(msg, UPB_SIZE(12, 24), len);
|
56
|
+
}
|
57
|
+
UPB_INLINE struct google_protobuf_Any** google_rpc_Status_resize_details(google_rpc_Status *msg, size_t len, upb_arena *arena) {
|
58
|
+
return (struct google_protobuf_Any**)_upb_array_resize_accessor(msg, UPB_SIZE(12, 24), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
59
|
+
}
|
60
|
+
UPB_INLINE struct google_protobuf_Any* google_rpc_Status_add_details(google_rpc_Status *msg, upb_arena *arena) {
|
61
|
+
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)upb_msg_new(&google_protobuf_Any_msginit, arena);
|
62
|
+
bool ok = _upb_array_append_accessor(
|
63
|
+
msg, UPB_SIZE(12, 24), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
64
|
+
if (!ok) return NULL;
|
65
|
+
return sub;
|
66
|
+
}
|
67
|
+
|
68
|
+
#ifdef __cplusplus
|
69
|
+
} /* extern "C" */
|
70
|
+
#endif
|
71
|
+
|
72
|
+
#include "upb/port_undef.inc"
|
73
|
+
|
74
|
+
#endif /* GOOGLE_RPC_STATUS_PROTO_UPB_H_ */
|
@@ -0,0 +1,49 @@
|
|
1
|
+
/* This file was generated by upbc (the upb compiler) from the input
|
2
|
+
* file:
|
3
|
+
*
|
4
|
+
* src/proto/grpc/gcp/altscontext.proto
|
5
|
+
*
|
6
|
+
* Do not edit -- your changes will be discarded when the file is
|
7
|
+
* regenerated. */
|
8
|
+
|
9
|
+
#include <stddef.h>
|
10
|
+
#include "upb/msg.h"
|
11
|
+
#include "src/proto/grpc/gcp/altscontext.upb.h"
|
12
|
+
#include "src/proto/grpc/gcp/transport_security_common.upb.h"
|
13
|
+
|
14
|
+
#include "upb/port_def.inc"
|
15
|
+
|
16
|
+
static const upb_msglayout *const grpc_gcp_AltsContext_submsgs[2] = {
|
17
|
+
&grpc_gcp_AltsContext_PeerAttributesEntry_msginit,
|
18
|
+
&grpc_gcp_RpcProtocolVersions_msginit,
|
19
|
+
};
|
20
|
+
|
21
|
+
static const upb_msglayout_field grpc_gcp_AltsContext__fields[7] = {
|
22
|
+
{1, UPB_SIZE(8, 8), 0, 0, 9, 1},
|
23
|
+
{2, UPB_SIZE(16, 24), 0, 0, 9, 1},
|
24
|
+
{3, UPB_SIZE(0, 0), 0, 0, 14, 1},
|
25
|
+
{4, UPB_SIZE(24, 40), 0, 0, 9, 1},
|
26
|
+
{5, UPB_SIZE(32, 56), 0, 0, 9, 1},
|
27
|
+
{6, UPB_SIZE(40, 72), 0, 1, 11, 1},
|
28
|
+
{7, UPB_SIZE(44, 80), 0, 0, 11, 3},
|
29
|
+
};
|
30
|
+
|
31
|
+
const upb_msglayout grpc_gcp_AltsContext_msginit = {
|
32
|
+
&grpc_gcp_AltsContext_submsgs[0],
|
33
|
+
&grpc_gcp_AltsContext__fields[0],
|
34
|
+
UPB_SIZE(48, 96), 7, false,
|
35
|
+
};
|
36
|
+
|
37
|
+
static const upb_msglayout_field grpc_gcp_AltsContext_PeerAttributesEntry__fields[2] = {
|
38
|
+
{1, UPB_SIZE(0, 0), 0, 0, 9, 1},
|
39
|
+
{2, UPB_SIZE(8, 16), 0, 0, 9, 1},
|
40
|
+
};
|
41
|
+
|
42
|
+
const upb_msglayout grpc_gcp_AltsContext_PeerAttributesEntry_msginit = {
|
43
|
+
NULL,
|
44
|
+
&grpc_gcp_AltsContext_PeerAttributesEntry__fields[0],
|
45
|
+
UPB_SIZE(16, 32), 2, false,
|
46
|
+
};
|
47
|
+
|
48
|
+
#include "upb/port_undef.inc"
|
49
|
+
|
@@ -0,0 +1,126 @@
|
|
1
|
+
/* This file was generated by upbc (the upb compiler) from the input
|
2
|
+
* file:
|
3
|
+
*
|
4
|
+
* src/proto/grpc/gcp/altscontext.proto
|
5
|
+
*
|
6
|
+
* Do not edit -- your changes will be discarded when the file is
|
7
|
+
* regenerated. */
|
8
|
+
|
9
|
+
#ifndef SRC_PROTO_GRPC_GCP_ALTSCONTEXT_PROTO_UPB_H_
|
10
|
+
#define SRC_PROTO_GRPC_GCP_ALTSCONTEXT_PROTO_UPB_H_
|
11
|
+
|
12
|
+
#include "upb/generated_util.h"
|
13
|
+
#include "upb/msg.h"
|
14
|
+
#include "upb/decode.h"
|
15
|
+
#include "upb/encode.h"
|
16
|
+
|
17
|
+
#include "upb/port_def.inc"
|
18
|
+
|
19
|
+
#ifdef __cplusplus
|
20
|
+
extern "C" {
|
21
|
+
#endif
|
22
|
+
|
23
|
+
struct grpc_gcp_AltsContext;
|
24
|
+
struct grpc_gcp_AltsContext_PeerAttributesEntry;
|
25
|
+
typedef struct grpc_gcp_AltsContext grpc_gcp_AltsContext;
|
26
|
+
typedef struct grpc_gcp_AltsContext_PeerAttributesEntry grpc_gcp_AltsContext_PeerAttributesEntry;
|
27
|
+
extern const upb_msglayout grpc_gcp_AltsContext_msginit;
|
28
|
+
extern const upb_msglayout grpc_gcp_AltsContext_PeerAttributesEntry_msginit;
|
29
|
+
struct grpc_gcp_RpcProtocolVersions;
|
30
|
+
extern const upb_msglayout grpc_gcp_RpcProtocolVersions_msginit;
|
31
|
+
|
32
|
+
|
33
|
+
/* grpc.gcp.AltsContext */
|
34
|
+
|
35
|
+
UPB_INLINE grpc_gcp_AltsContext *grpc_gcp_AltsContext_new(upb_arena *arena) {
|
36
|
+
return (grpc_gcp_AltsContext *)upb_msg_new(&grpc_gcp_AltsContext_msginit, arena);
|
37
|
+
}
|
38
|
+
UPB_INLINE grpc_gcp_AltsContext *grpc_gcp_AltsContext_parse(const char *buf, size_t size,
|
39
|
+
upb_arena *arena) {
|
40
|
+
grpc_gcp_AltsContext *ret = grpc_gcp_AltsContext_new(arena);
|
41
|
+
return (ret && upb_decode(buf, size, ret, &grpc_gcp_AltsContext_msginit, arena)) ? ret : NULL;
|
42
|
+
}
|
43
|
+
UPB_INLINE char *grpc_gcp_AltsContext_serialize(const grpc_gcp_AltsContext *msg, upb_arena *arena, size_t *len) {
|
44
|
+
return upb_encode(msg, &grpc_gcp_AltsContext_msginit, arena, len);
|
45
|
+
}
|
46
|
+
|
47
|
+
UPB_INLINE upb_strview grpc_gcp_AltsContext_application_protocol(const grpc_gcp_AltsContext *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 8)); }
|
48
|
+
UPB_INLINE upb_strview grpc_gcp_AltsContext_record_protocol(const grpc_gcp_AltsContext *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(16, 24)); }
|
49
|
+
UPB_INLINE int32_t grpc_gcp_AltsContext_security_level(const grpc_gcp_AltsContext *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(0, 0)); }
|
50
|
+
UPB_INLINE upb_strview grpc_gcp_AltsContext_peer_service_account(const grpc_gcp_AltsContext *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(24, 40)); }
|
51
|
+
UPB_INLINE upb_strview grpc_gcp_AltsContext_local_service_account(const grpc_gcp_AltsContext *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 56)); }
|
52
|
+
UPB_INLINE const struct grpc_gcp_RpcProtocolVersions* grpc_gcp_AltsContext_peer_rpc_versions(const grpc_gcp_AltsContext *msg) { return UPB_FIELD_AT(msg, const struct grpc_gcp_RpcProtocolVersions*, UPB_SIZE(40, 72)); }
|
53
|
+
UPB_INLINE const grpc_gcp_AltsContext_PeerAttributesEntry* const* grpc_gcp_AltsContext_peer_attributes(const grpc_gcp_AltsContext *msg, size_t *len) { return (const grpc_gcp_AltsContext_PeerAttributesEntry* const*)_upb_array_accessor(msg, UPB_SIZE(44, 80), len); }
|
54
|
+
|
55
|
+
UPB_INLINE void grpc_gcp_AltsContext_set_application_protocol(grpc_gcp_AltsContext *msg, upb_strview value) {
|
56
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 8)) = value;
|
57
|
+
}
|
58
|
+
UPB_INLINE void grpc_gcp_AltsContext_set_record_protocol(grpc_gcp_AltsContext *msg, upb_strview value) {
|
59
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(16, 24)) = value;
|
60
|
+
}
|
61
|
+
UPB_INLINE void grpc_gcp_AltsContext_set_security_level(grpc_gcp_AltsContext *msg, int32_t value) {
|
62
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(0, 0)) = value;
|
63
|
+
}
|
64
|
+
UPB_INLINE void grpc_gcp_AltsContext_set_peer_service_account(grpc_gcp_AltsContext *msg, upb_strview value) {
|
65
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(24, 40)) = value;
|
66
|
+
}
|
67
|
+
UPB_INLINE void grpc_gcp_AltsContext_set_local_service_account(grpc_gcp_AltsContext *msg, upb_strview value) {
|
68
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 56)) = value;
|
69
|
+
}
|
70
|
+
UPB_INLINE void grpc_gcp_AltsContext_set_peer_rpc_versions(grpc_gcp_AltsContext *msg, struct grpc_gcp_RpcProtocolVersions* value) {
|
71
|
+
UPB_FIELD_AT(msg, struct grpc_gcp_RpcProtocolVersions*, UPB_SIZE(40, 72)) = value;
|
72
|
+
}
|
73
|
+
UPB_INLINE struct grpc_gcp_RpcProtocolVersions* grpc_gcp_AltsContext_mutable_peer_rpc_versions(grpc_gcp_AltsContext *msg, upb_arena *arena) {
|
74
|
+
struct grpc_gcp_RpcProtocolVersions* sub = (struct grpc_gcp_RpcProtocolVersions*)grpc_gcp_AltsContext_peer_rpc_versions(msg);
|
75
|
+
if (sub == NULL) {
|
76
|
+
sub = (struct grpc_gcp_RpcProtocolVersions*)upb_msg_new(&grpc_gcp_RpcProtocolVersions_msginit, arena);
|
77
|
+
if (!sub) return NULL;
|
78
|
+
grpc_gcp_AltsContext_set_peer_rpc_versions(msg, sub);
|
79
|
+
}
|
80
|
+
return sub;
|
81
|
+
}
|
82
|
+
UPB_INLINE grpc_gcp_AltsContext_PeerAttributesEntry** grpc_gcp_AltsContext_mutable_peer_attributes(grpc_gcp_AltsContext *msg, size_t *len) {
|
83
|
+
return (grpc_gcp_AltsContext_PeerAttributesEntry**)_upb_array_mutable_accessor(msg, UPB_SIZE(44, 80), len);
|
84
|
+
}
|
85
|
+
UPB_INLINE grpc_gcp_AltsContext_PeerAttributesEntry** grpc_gcp_AltsContext_resize_peer_attributes(grpc_gcp_AltsContext *msg, size_t len, upb_arena *arena) {
|
86
|
+
return (grpc_gcp_AltsContext_PeerAttributesEntry**)_upb_array_resize_accessor(msg, UPB_SIZE(44, 80), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
87
|
+
}
|
88
|
+
UPB_INLINE struct grpc_gcp_AltsContext_PeerAttributesEntry* grpc_gcp_AltsContext_add_peer_attributes(grpc_gcp_AltsContext *msg, upb_arena *arena) {
|
89
|
+
struct grpc_gcp_AltsContext_PeerAttributesEntry* sub = (struct grpc_gcp_AltsContext_PeerAttributesEntry*)upb_msg_new(&grpc_gcp_AltsContext_PeerAttributesEntry_msginit, arena);
|
90
|
+
bool ok = _upb_array_append_accessor(
|
91
|
+
msg, UPB_SIZE(44, 80), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
92
|
+
if (!ok) return NULL;
|
93
|
+
return sub;
|
94
|
+
}
|
95
|
+
|
96
|
+
/* grpc.gcp.AltsContext.PeerAttributesEntry */
|
97
|
+
|
98
|
+
UPB_INLINE grpc_gcp_AltsContext_PeerAttributesEntry *grpc_gcp_AltsContext_PeerAttributesEntry_new(upb_arena *arena) {
|
99
|
+
return (grpc_gcp_AltsContext_PeerAttributesEntry *)upb_msg_new(&grpc_gcp_AltsContext_PeerAttributesEntry_msginit, arena);
|
100
|
+
}
|
101
|
+
UPB_INLINE grpc_gcp_AltsContext_PeerAttributesEntry *grpc_gcp_AltsContext_PeerAttributesEntry_parse(const char *buf, size_t size,
|
102
|
+
upb_arena *arena) {
|
103
|
+
grpc_gcp_AltsContext_PeerAttributesEntry *ret = grpc_gcp_AltsContext_PeerAttributesEntry_new(arena);
|
104
|
+
return (ret && upb_decode(buf, size, ret, &grpc_gcp_AltsContext_PeerAttributesEntry_msginit, arena)) ? ret : NULL;
|
105
|
+
}
|
106
|
+
UPB_INLINE char *grpc_gcp_AltsContext_PeerAttributesEntry_serialize(const grpc_gcp_AltsContext_PeerAttributesEntry *msg, upb_arena *arena, size_t *len) {
|
107
|
+
return upb_encode(msg, &grpc_gcp_AltsContext_PeerAttributesEntry_msginit, arena, len);
|
108
|
+
}
|
109
|
+
|
110
|
+
UPB_INLINE upb_strview grpc_gcp_AltsContext_PeerAttributesEntry_key(const grpc_gcp_AltsContext_PeerAttributesEntry *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(0, 0)); }
|
111
|
+
UPB_INLINE upb_strview grpc_gcp_AltsContext_PeerAttributesEntry_value(const grpc_gcp_AltsContext_PeerAttributesEntry *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 16)); }
|
112
|
+
|
113
|
+
UPB_INLINE void grpc_gcp_AltsContext_PeerAttributesEntry_set_key(grpc_gcp_AltsContext_PeerAttributesEntry *msg, upb_strview value) {
|
114
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(0, 0)) = value;
|
115
|
+
}
|
116
|
+
UPB_INLINE void grpc_gcp_AltsContext_PeerAttributesEntry_set_value(grpc_gcp_AltsContext_PeerAttributesEntry *msg, upb_strview value) {
|
117
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 16)) = value;
|
118
|
+
}
|
119
|
+
|
120
|
+
#ifdef __cplusplus
|
121
|
+
} /* extern "C" */
|
122
|
+
#endif
|
123
|
+
|
124
|
+
#include "upb/port_undef.inc"
|
125
|
+
|
126
|
+
#endif /* SRC_PROTO_GRPC_GCP_ALTSCONTEXT_PROTO_UPB_H_ */
|
@@ -0,0 +1,209 @@
|
|
1
|
+
/* This file was generated by upbc (the upb compiler) from the input
|
2
|
+
* file:
|
3
|
+
*
|
4
|
+
* src/proto/grpc/gcp/handshaker.proto
|
5
|
+
*
|
6
|
+
* Do not edit -- your changes will be discarded when the file is
|
7
|
+
* regenerated. */
|
8
|
+
|
9
|
+
#include <stddef.h>
|
10
|
+
#include "upb/msg.h"
|
11
|
+
#include "src/proto/grpc/gcp/handshaker.upb.h"
|
12
|
+
#include "src/proto/grpc/gcp/transport_security_common.upb.h"
|
13
|
+
|
14
|
+
#include "upb/port_def.inc"
|
15
|
+
|
16
|
+
static const upb_msglayout_field grpc_gcp_Endpoint__fields[3] = {
|
17
|
+
{1, UPB_SIZE(12, 16), 0, 0, 9, 1},
|
18
|
+
{2, UPB_SIZE(8, 8), 0, 0, 5, 1},
|
19
|
+
{3, UPB_SIZE(0, 0), 0, 0, 14, 1},
|
20
|
+
};
|
21
|
+
|
22
|
+
const upb_msglayout grpc_gcp_Endpoint_msginit = {
|
23
|
+
NULL,
|
24
|
+
&grpc_gcp_Endpoint__fields[0],
|
25
|
+
UPB_SIZE(24, 32), 3, false,
|
26
|
+
};
|
27
|
+
|
28
|
+
static const upb_msglayout *const grpc_gcp_Identity_submsgs[1] = {
|
29
|
+
&grpc_gcp_Identity_AttributesEntry_msginit,
|
30
|
+
};
|
31
|
+
|
32
|
+
static const upb_msglayout_field grpc_gcp_Identity__fields[3] = {
|
33
|
+
{1, UPB_SIZE(4, 8), UPB_SIZE(-13, -25), 0, 9, 1},
|
34
|
+
{2, UPB_SIZE(4, 8), UPB_SIZE(-13, -25), 0, 9, 1},
|
35
|
+
{3, UPB_SIZE(0, 0), 0, 0, 11, 3},
|
36
|
+
};
|
37
|
+
|
38
|
+
const upb_msglayout grpc_gcp_Identity_msginit = {
|
39
|
+
&grpc_gcp_Identity_submsgs[0],
|
40
|
+
&grpc_gcp_Identity__fields[0],
|
41
|
+
UPB_SIZE(16, 32), 3, false,
|
42
|
+
};
|
43
|
+
|
44
|
+
static const upb_msglayout_field grpc_gcp_Identity_AttributesEntry__fields[2] = {
|
45
|
+
{1, UPB_SIZE(0, 0), 0, 0, 9, 1},
|
46
|
+
{2, UPB_SIZE(8, 16), 0, 0, 9, 1},
|
47
|
+
};
|
48
|
+
|
49
|
+
const upb_msglayout grpc_gcp_Identity_AttributesEntry_msginit = {
|
50
|
+
NULL,
|
51
|
+
&grpc_gcp_Identity_AttributesEntry__fields[0],
|
52
|
+
UPB_SIZE(16, 32), 2, false,
|
53
|
+
};
|
54
|
+
|
55
|
+
static const upb_msglayout *const grpc_gcp_StartClientHandshakeReq_submsgs[5] = {
|
56
|
+
&grpc_gcp_Endpoint_msginit,
|
57
|
+
&grpc_gcp_Identity_msginit,
|
58
|
+
&grpc_gcp_RpcProtocolVersions_msginit,
|
59
|
+
};
|
60
|
+
|
61
|
+
static const upb_msglayout_field grpc_gcp_StartClientHandshakeReq__fields[9] = {
|
62
|
+
{1, UPB_SIZE(0, 0), 0, 0, 14, 1},
|
63
|
+
{2, UPB_SIZE(32, 56), 0, 0, 9, 3},
|
64
|
+
{3, UPB_SIZE(36, 64), 0, 0, 9, 3},
|
65
|
+
{4, UPB_SIZE(40, 72), 0, 1, 11, 3},
|
66
|
+
{5, UPB_SIZE(16, 24), 0, 1, 11, 1},
|
67
|
+
{6, UPB_SIZE(20, 32), 0, 0, 11, 1},
|
68
|
+
{7, UPB_SIZE(24, 40), 0, 0, 11, 1},
|
69
|
+
{8, UPB_SIZE(8, 8), 0, 0, 9, 1},
|
70
|
+
{9, UPB_SIZE(28, 48), 0, 2, 11, 1},
|
71
|
+
};
|
72
|
+
|
73
|
+
const upb_msglayout grpc_gcp_StartClientHandshakeReq_msginit = {
|
74
|
+
&grpc_gcp_StartClientHandshakeReq_submsgs[0],
|
75
|
+
&grpc_gcp_StartClientHandshakeReq__fields[0],
|
76
|
+
UPB_SIZE(48, 80), 9, false,
|
77
|
+
};
|
78
|
+
|
79
|
+
static const upb_msglayout *const grpc_gcp_ServerHandshakeParameters_submsgs[1] = {
|
80
|
+
&grpc_gcp_Identity_msginit,
|
81
|
+
};
|
82
|
+
|
83
|
+
static const upb_msglayout_field grpc_gcp_ServerHandshakeParameters__fields[2] = {
|
84
|
+
{1, UPB_SIZE(0, 0), 0, 0, 9, 3},
|
85
|
+
{2, UPB_SIZE(4, 8), 0, 0, 11, 3},
|
86
|
+
};
|
87
|
+
|
88
|
+
const upb_msglayout grpc_gcp_ServerHandshakeParameters_msginit = {
|
89
|
+
&grpc_gcp_ServerHandshakeParameters_submsgs[0],
|
90
|
+
&grpc_gcp_ServerHandshakeParameters__fields[0],
|
91
|
+
UPB_SIZE(8, 16), 2, false,
|
92
|
+
};
|
93
|
+
|
94
|
+
static const upb_msglayout *const grpc_gcp_StartServerHandshakeReq_submsgs[4] = {
|
95
|
+
&grpc_gcp_Endpoint_msginit,
|
96
|
+
&grpc_gcp_RpcProtocolVersions_msginit,
|
97
|
+
&grpc_gcp_StartServerHandshakeReq_HandshakeParametersEntry_msginit,
|
98
|
+
};
|
99
|
+
|
100
|
+
static const upb_msglayout_field grpc_gcp_StartServerHandshakeReq__fields[6] = {
|
101
|
+
{1, UPB_SIZE(20, 40), 0, 0, 9, 3},
|
102
|
+
{2, UPB_SIZE(24, 48), 0, 2, 11, 3},
|
103
|
+
{3, UPB_SIZE(0, 0), 0, 0, 12, 1},
|
104
|
+
{4, UPB_SIZE(8, 16), 0, 0, 11, 1},
|
105
|
+
{5, UPB_SIZE(12, 24), 0, 0, 11, 1},
|
106
|
+
{6, UPB_SIZE(16, 32), 0, 1, 11, 1},
|
107
|
+
};
|
108
|
+
|
109
|
+
const upb_msglayout grpc_gcp_StartServerHandshakeReq_msginit = {
|
110
|
+
&grpc_gcp_StartServerHandshakeReq_submsgs[0],
|
111
|
+
&grpc_gcp_StartServerHandshakeReq__fields[0],
|
112
|
+
UPB_SIZE(32, 64), 6, false,
|
113
|
+
};
|
114
|
+
|
115
|
+
static const upb_msglayout *const grpc_gcp_StartServerHandshakeReq_HandshakeParametersEntry_submsgs[1] = {
|
116
|
+
&grpc_gcp_ServerHandshakeParameters_msginit,
|
117
|
+
};
|
118
|
+
|
119
|
+
static const upb_msglayout_field grpc_gcp_StartServerHandshakeReq_HandshakeParametersEntry__fields[2] = {
|
120
|
+
{1, UPB_SIZE(0, 0), 0, 0, 5, 1},
|
121
|
+
{2, UPB_SIZE(4, 8), 0, 0, 11, 1},
|
122
|
+
};
|
123
|
+
|
124
|
+
const upb_msglayout grpc_gcp_StartServerHandshakeReq_HandshakeParametersEntry_msginit = {
|
125
|
+
&grpc_gcp_StartServerHandshakeReq_HandshakeParametersEntry_submsgs[0],
|
126
|
+
&grpc_gcp_StartServerHandshakeReq_HandshakeParametersEntry__fields[0],
|
127
|
+
UPB_SIZE(8, 16), 2, false,
|
128
|
+
};
|
129
|
+
|
130
|
+
static const upb_msglayout_field grpc_gcp_NextHandshakeMessageReq__fields[1] = {
|
131
|
+
{1, UPB_SIZE(0, 0), 0, 0, 12, 1},
|
132
|
+
};
|
133
|
+
|
134
|
+
const upb_msglayout grpc_gcp_NextHandshakeMessageReq_msginit = {
|
135
|
+
NULL,
|
136
|
+
&grpc_gcp_NextHandshakeMessageReq__fields[0],
|
137
|
+
UPB_SIZE(8, 16), 1, false,
|
138
|
+
};
|
139
|
+
|
140
|
+
static const upb_msglayout *const grpc_gcp_HandshakerReq_submsgs[3] = {
|
141
|
+
&grpc_gcp_NextHandshakeMessageReq_msginit,
|
142
|
+
&grpc_gcp_StartClientHandshakeReq_msginit,
|
143
|
+
&grpc_gcp_StartServerHandshakeReq_msginit,
|
144
|
+
};
|
145
|
+
|
146
|
+
static const upb_msglayout_field grpc_gcp_HandshakerReq__fields[3] = {
|
147
|
+
{1, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 1, 11, 1},
|
148
|
+
{2, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 2, 11, 1},
|
149
|
+
{3, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 0, 11, 1},
|
150
|
+
};
|
151
|
+
|
152
|
+
const upb_msglayout grpc_gcp_HandshakerReq_msginit = {
|
153
|
+
&grpc_gcp_HandshakerReq_submsgs[0],
|
154
|
+
&grpc_gcp_HandshakerReq__fields[0],
|
155
|
+
UPB_SIZE(8, 16), 3, false,
|
156
|
+
};
|
157
|
+
|
158
|
+
static const upb_msglayout *const grpc_gcp_HandshakerResult_submsgs[3] = {
|
159
|
+
&grpc_gcp_Identity_msginit,
|
160
|
+
&grpc_gcp_RpcProtocolVersions_msginit,
|
161
|
+
};
|
162
|
+
|
163
|
+
static const upb_msglayout_field grpc_gcp_HandshakerResult__fields[7] = {
|
164
|
+
{1, UPB_SIZE(4, 8), 0, 0, 9, 1},
|
165
|
+
{2, UPB_SIZE(12, 24), 0, 0, 9, 1},
|
166
|
+
{3, UPB_SIZE(20, 40), 0, 0, 12, 1},
|
167
|
+
{4, UPB_SIZE(28, 56), 0, 0, 11, 1},
|
168
|
+
{5, UPB_SIZE(32, 64), 0, 0, 11, 1},
|
169
|
+
{6, UPB_SIZE(0, 0), 0, 0, 8, 1},
|
170
|
+
{7, UPB_SIZE(36, 72), 0, 1, 11, 1},
|
171
|
+
};
|
172
|
+
|
173
|
+
const upb_msglayout grpc_gcp_HandshakerResult_msginit = {
|
174
|
+
&grpc_gcp_HandshakerResult_submsgs[0],
|
175
|
+
&grpc_gcp_HandshakerResult__fields[0],
|
176
|
+
UPB_SIZE(40, 80), 7, false,
|
177
|
+
};
|
178
|
+
|
179
|
+
static const upb_msglayout_field grpc_gcp_HandshakerStatus__fields[2] = {
|
180
|
+
{1, UPB_SIZE(0, 0), 0, 0, 13, 1},
|
181
|
+
{2, UPB_SIZE(4, 8), 0, 0, 9, 1},
|
182
|
+
};
|
183
|
+
|
184
|
+
const upb_msglayout grpc_gcp_HandshakerStatus_msginit = {
|
185
|
+
NULL,
|
186
|
+
&grpc_gcp_HandshakerStatus__fields[0],
|
187
|
+
UPB_SIZE(16, 32), 2, false,
|
188
|
+
};
|
189
|
+
|
190
|
+
static const upb_msglayout *const grpc_gcp_HandshakerResp_submsgs[2] = {
|
191
|
+
&grpc_gcp_HandshakerResult_msginit,
|
192
|
+
&grpc_gcp_HandshakerStatus_msginit,
|
193
|
+
};
|
194
|
+
|
195
|
+
static const upb_msglayout_field grpc_gcp_HandshakerResp__fields[4] = {
|
196
|
+
{1, UPB_SIZE(4, 8), 0, 0, 12, 1},
|
197
|
+
{2, UPB_SIZE(0, 0), 0, 0, 13, 1},
|
198
|
+
{3, UPB_SIZE(12, 24), 0, 0, 11, 1},
|
199
|
+
{4, UPB_SIZE(16, 32), 0, 1, 11, 1},
|
200
|
+
};
|
201
|
+
|
202
|
+
const upb_msglayout grpc_gcp_HandshakerResp_msginit = {
|
203
|
+
&grpc_gcp_HandshakerResp_submsgs[0],
|
204
|
+
&grpc_gcp_HandshakerResp__fields[0],
|
205
|
+
UPB_SIZE(24, 48), 4, false,
|
206
|
+
};
|
207
|
+
|
208
|
+
#include "upb/port_undef.inc"
|
209
|
+
|