grpc 1.34.0 → 1.35.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 +808 -2787
- data/etc/roots.pem +257 -573
- data/include/grpc/compression.h +1 -1
- data/include/grpc/grpc.h +14 -0
- data/include/grpc/grpc_security.h +61 -3
- data/include/grpc/impl/codegen/atm_windows.h +4 -0
- data/include/grpc/impl/codegen/byte_buffer.h +1 -1
- data/include/grpc/impl/codegen/grpc_types.h +1 -1
- data/include/grpc/impl/codegen/log.h +0 -2
- data/include/grpc/impl/codegen/sync_windows.h +4 -0
- data/include/grpc/slice_buffer.h +3 -3
- data/include/grpc/support/sync.h +3 -3
- data/include/grpc/support/time.h +7 -7
- data/src/core/ext/filters/client_channel/backend_metric.cc +2 -4
- data/src/core/ext/filters/client_channel/client_channel.cc +2734 -1498
- data/src/core/ext/filters/client_channel/client_channel.h +0 -4
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
- data/src/core/ext/filters/client_channel/config_selector.h +4 -0
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +186 -0
- data/src/core/ext/filters/client_channel/dynamic_filters.h +99 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +6 -6
- data/src/core/ext/filters/client_channel/health/health_check_client.h +2 -2
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +4 -5
- data/src/core/ext/filters/client_channel/http_proxy.cc +21 -20
- data/src/core/ext/filters/client_channel/lb_policy.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy.h +2 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +32 -30
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +3 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +162 -20
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +0 -8
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +24 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +5 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +1262 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +7 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +1 -32
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +454 -16
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +6 -9
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +18 -31
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +3 -5
- data/src/core/ext/filters/client_channel/resolver_factory.h +6 -6
- data/src/core/ext/filters/client_channel/resolver_registry.cc +40 -39
- data/src/core/ext/filters/client_channel/resolver_registry.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +11 -13
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +8 -8
- data/src/core/ext/filters/client_channel/retry_throttle.cc +5 -3
- data/src/core/ext/filters/client_channel/retry_throttle.h +3 -1
- data/src/core/ext/filters/client_channel/service_config_call_data.h +19 -1
- data/src/core/ext/filters/client_channel/subchannel.cc +34 -50
- data/src/core/ext/filters/client_channel/subchannel.h +12 -18
- data/src/core/ext/filters/deadline/deadline_filter.cc +4 -2
- data/src/core/ext/filters/http/client_authority_filter.cc +6 -6
- data/src/core/ext/filters/http/http_filters_plugin.cc +6 -3
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
- data/src/core/ext/filters/workarounds/workaround_utils.cc +1 -1
- data/src/core/ext/transport/chttp2/client/authority.cc +3 -3
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +20 -8
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +21 -10
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +26 -14
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +178 -86
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +12 -5
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +7 -8
- data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +6 -6
- data/src/core/ext/transport/chttp2/transport/writing.cc +1 -1
- data/src/core/ext/transport/inproc/inproc_transport.cc +42 -8
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +1 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -27
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +139 -40
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +13 -13
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +44 -17
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +111 -111
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +424 -241
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +13 -5
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +22 -22
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +47 -21
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +21 -21
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +88 -39
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +15 -6
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +44 -44
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +200 -78
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +17 -17
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +72 -35
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +27 -11
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +30 -30
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +136 -49
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +39 -39
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +157 -89
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +17 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +47 -47
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +163 -78
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +9 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +13 -13
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +59 -36
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +16 -16
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +61 -29
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +26 -26
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +101 -66
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +11 -3
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +28 -28
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +122 -77
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +23 -23
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +106 -54
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +13 -0
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +16 -16
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +81 -35
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +38 -22
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +203 -203
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +845 -495
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +26 -6
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +17 -3
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +87 -87
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +343 -204
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +1 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +20 -20
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +85 -46
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +33 -11
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +32 -32
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +118 -67
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +29 -29
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +120 -82
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +31 -16
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +25 -11
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +7 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +6 -6
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +29 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +16 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +19 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +46 -3
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +41 -8
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +1 -0
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +15 -2
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +19 -0
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +7 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +34 -34
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +149 -72
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +34 -34
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +142 -59
- data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
- data/src/core/ext/upb-generated/google/api/http.upb.h +25 -6
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +7 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +90 -90
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +455 -292
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +7 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +7 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +4 -4
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +22 -3
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +7 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +9 -9
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +55 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +10 -3
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +4 -4
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +11 -3
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +41 -41
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +149 -76
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +5 -5
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +21 -6
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +13 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +17 -17
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +82 -25
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +19 -0
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +1 -1
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +7 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +1 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +2 -2
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +9 -2
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +1 -1
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +7 -0
- data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.c +1 -1
- data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.h +7 -0
- data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c +5 -5
- data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.h +21 -7
- data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c +2 -2
- data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.h +7 -0
- data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.c +4 -4
- data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.h +17 -8
- data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c +7 -7
- data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.h +31 -18
- data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c +5 -5
- data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.h +19 -11
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +3 -3
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +7 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +64 -64
- data/src/core/ext/upb-generated/validate/validate.upb.h +296 -157
- data/src/core/ext/xds/certificate_provider_store.cc +10 -7
- data/src/core/ext/xds/certificate_provider_store.h +12 -7
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +25 -0
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +1 -4
- data/src/core/ext/xds/xds_api.cc +220 -31
- data/src/core/ext/xds/xds_api.h +41 -10
- data/src/core/ext/xds/xds_bootstrap.h +0 -1
- data/src/core/ext/xds/xds_certificate_provider.cc +61 -2
- data/src/core/ext/xds/xds_certificate_provider.h +40 -2
- data/src/core/ext/xds/xds_client.cc +31 -29
- data/src/core/ext/xds/xds_client.h +6 -1
- data/src/core/ext/xds/xds_client_stats.cc +2 -2
- data/src/core/ext/xds/xds_server_config_fetcher.cc +131 -0
- data/src/core/lib/channel/channel_args.cc +8 -8
- data/src/core/lib/channel/channel_trace.h +1 -1
- data/src/core/lib/channel/channelz.cc +13 -14
- data/src/core/lib/channel/channelz.h +0 -1
- data/src/core/lib/channel/channelz_registry.h +0 -1
- data/src/core/lib/channel/handshaker.cc +2 -2
- data/src/core/lib/compression/compression_args.cc +3 -2
- data/src/core/lib/debug/stats.h +2 -2
- data/src/core/lib/debug/stats_data.h +13 -13
- data/src/core/lib/gpr/alloc.cc +3 -2
- data/src/core/lib/gpr/log.cc +53 -16
- data/src/core/lib/gpr/log_linux.cc +3 -1
- data/src/core/lib/gpr/log_posix.cc +3 -1
- data/src/core/lib/gpr/log_windows.cc +3 -1
- data/src/core/lib/gpr/spinlock.h +10 -2
- data/src/core/lib/gpr/string.cc +22 -21
- data/src/core/lib/gpr/string.h +5 -6
- data/src/core/lib/gpr/sync.cc +4 -4
- data/src/core/lib/gpr/time.cc +12 -12
- data/src/core/lib/gprpp/arena.h +3 -2
- data/src/core/lib/gprpp/ref_counted.h +2 -2
- data/src/core/lib/gprpp/ref_counted_ptr.h +9 -1
- data/src/core/lib/gprpp/thd_posix.cc +6 -1
- data/src/core/lib/gprpp/thd_windows.cc +3 -1
- data/src/core/lib/http/httpcli.cc +1 -1
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +1 -1
- data/src/core/lib/http/parser.cc +1 -2
- data/src/core/lib/iomgr/call_combiner.cc +8 -5
- data/src/core/lib/iomgr/combiner.cc +2 -1
- data/src/core/lib/iomgr/endpoint.h +1 -1
- data/src/core/lib/iomgr/error.cc +15 -11
- data/src/core/lib/iomgr/error_internal.h +1 -1
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +20 -13
- data/src/core/lib/iomgr/ev_epollex_linux.cc +17 -13
- data/src/core/lib/iomgr/ev_poll_posix.cc +9 -7
- data/src/core/lib/iomgr/exec_ctx.h +6 -4
- data/src/core/lib/iomgr/executor.cc +2 -1
- data/src/core/lib/iomgr/executor.h +1 -1
- data/src/core/lib/iomgr/executor/threadpool.h +1 -1
- data/src/core/lib/iomgr/iomgr.cc +1 -1
- data/src/core/lib/iomgr/load_file.h +1 -1
- data/src/core/lib/iomgr/lockfree_event.cc +19 -14
- data/src/core/lib/iomgr/lockfree_event.h +2 -2
- data/src/core/lib/iomgr/parse_address.cc +52 -46
- data/src/core/lib/iomgr/parse_address.h +13 -9
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +1 -1
- data/src/core/lib/iomgr/pollset_set_custom.cc +1 -1
- data/src/core/lib/iomgr/python_util.h +1 -1
- data/src/core/lib/iomgr/resolve_address.cc +4 -4
- data/src/core/lib/iomgr/resource_quota.cc +4 -4
- data/src/core/lib/iomgr/sockaddr_utils.cc +10 -10
- data/src/core/lib/iomgr/sockaddr_utils.h +1 -1
- data/src/core/lib/iomgr/socket_factory_posix.cc +3 -2
- data/src/core/lib/iomgr/socket_mutator.cc +3 -2
- data/src/core/lib/iomgr/tcp_client.cc +3 -3
- data/src/core/lib/iomgr/tcp_client_custom.cc +7 -6
- data/src/core/lib/iomgr/tcp_custom.cc +22 -17
- data/src/core/lib/iomgr/tcp_posix.cc +9 -6
- data/src/core/lib/iomgr/tcp_server_custom.cc +28 -22
- data/src/core/lib/iomgr/timer_custom.cc +3 -3
- data/src/core/lib/iomgr/timer_generic.cc +3 -3
- data/src/core/lib/iomgr/timer_manager.cc +2 -2
- data/src/core/lib/iomgr/udp_server.cc +1 -2
- data/src/core/lib/iomgr/udp_server.h +1 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +17 -18
- data/src/core/lib/json/json.h +10 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +5 -10
- data/src/core/lib/security/authorization/evaluate_args.h +1 -1
- data/src/core/lib/security/context/security_context.cc +4 -3
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
- data/src/core/lib/security/credentials/credentials.cc +6 -6
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +413 -0
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +80 -0
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +15 -10
- data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -2
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +217 -31
- data/src/core/lib/security/credentials/external/external_account_credentials.h +7 -5
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -6
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +3 -4
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +20 -18
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +5 -6
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -1
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +18 -12
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +18 -5
- data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +3 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +37 -44
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +5 -4
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +1 -1
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +5 -5
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +1 -6
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +1 -6
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +326 -5
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +64 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +0 -1
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -1
- data/src/core/lib/security/credentials/tls/tls_utils.cc +91 -0
- data/src/core/lib/security/credentials/tls/tls_utils.h +38 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +140 -10
- data/src/core/lib/security/credentials/xds/xds_credentials.h +27 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +46 -13
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +23 -6
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +3 -2
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +4 -4
- data/src/core/lib/security/security_connector/ssl_utils.cc +2 -2
- data/src/core/lib/security/security_connector/ssl_utils.h +12 -19
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +57 -12
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +2 -3
- data/src/core/lib/security/transport/secure_endpoint.cc +2 -2
- data/src/core/lib/security/transport/security_handshaker.cc +2 -2
- data/src/core/lib/slice/slice_intern.cc +4 -5
- data/src/core/lib/slice/slice_internal.h +2 -2
- data/src/core/lib/surface/call.cc +32 -24
- data/src/core/lib/surface/call_details.cc +8 -8
- data/src/core/lib/surface/channel.cc +16 -10
- data/src/core/lib/surface/channel.h +3 -2
- data/src/core/lib/surface/channel_init.cc +1 -1
- data/src/core/lib/surface/completion_queue.cc +23 -18
- data/src/core/lib/surface/completion_queue.h +16 -16
- data/src/core/lib/surface/init.cc +6 -5
- data/src/core/lib/surface/lame_client.cc +20 -46
- data/src/core/lib/surface/lame_client.h +4 -0
- data/src/core/lib/surface/server.cc +59 -15
- data/src/core/lib/surface/server.h +37 -5
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/authority_override.cc +6 -4
- data/src/core/lib/transport/authority_override.h +5 -2
- data/src/core/lib/transport/connectivity_state.h +6 -4
- data/src/core/lib/transport/error_utils.h +1 -1
- data/src/core/lib/transport/metadata_batch.h +4 -4
- data/src/core/lib/transport/static_metadata.cc +1 -1
- data/src/core/lib/transport/status_metadata.cc +4 -3
- data/src/core/lib/transport/transport.h +7 -7
- data/src/core/lib/uri/uri_parser.cc +131 -249
- data/src/core/lib/uri/uri_parser.h +57 -21
- data/src/core/plugin_registry/grpc_plugin_registry.cc +10 -4
- data/src/core/tsi/alts/crypt/gsec.cc +5 -4
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +8 -6
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +23 -23
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +8 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +4 -4
- data/src/core/tsi/fake_transport_security.cc +5 -3
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
- data/src/core/tsi/ssl_transport_security.cc +62 -49
- data/src/core/tsi/ssl_transport_security.h +6 -6
- data/src/core/tsi/transport_security.cc +6 -6
- data/src/core/tsi/transport_security_interface.h +1 -1
- data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +12 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +31 -13
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +28 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +18 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +2 -6
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +606 -0
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +197 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +399 -0
- data/third_party/abseil-cpp/absl/status/statusor.cc +71 -0
- data/third_party/abseil-cpp/absl/status/statusor.h +760 -0
- data/third_party/upb/third_party/wyhash/wyhash.h +145 -0
- data/third_party/upb/upb/decode.c +248 -167
- data/third_party/upb/upb/decode.h +20 -1
- data/third_party/upb/upb/decode.int.h +163 -0
- data/third_party/upb/upb/decode_fast.c +1040 -0
- data/third_party/upb/upb/decode_fast.h +126 -0
- data/third_party/upb/upb/def.c +525 -516
- data/third_party/upb/upb/def.h +16 -31
- data/third_party/upb/upb/def.hpp +37 -123
- data/third_party/upb/upb/encode.c +227 -169
- data/third_party/upb/upb/encode.h +27 -2
- data/third_party/upb/upb/json_decode.c +1443 -0
- data/third_party/upb/upb/json_decode.h +23 -0
- data/third_party/upb/upb/json_encode.c +713 -0
- data/third_party/upb/upb/json_encode.h +36 -0
- data/third_party/upb/upb/msg.c +167 -88
- data/third_party/upb/upb/msg.h +174 -34
- data/third_party/upb/upb/port_def.inc +74 -61
- data/third_party/upb/upb/port_undef.inc +3 -7
- data/third_party/upb/upb/reflection.c +36 -19
- data/third_party/upb/upb/table.c +34 -197
- data/third_party/upb/upb/table.int.h +14 -5
- data/third_party/upb/upb/text_encode.c +45 -22
- data/third_party/upb/upb/text_encode.h +4 -1
- data/third_party/upb/upb/upb.c +18 -41
- data/third_party/upb/upb/upb.h +36 -7
- data/third_party/upb/upb/upb.hpp +4 -4
- data/third_party/upb/upb/upb.int.h +29 -0
- metadata +60 -46
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +0 -909
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +0 -485
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +0 -68
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +0 -355
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +0 -138
- data/src/core/ext/xds/google_mesh_ca_certificate_provider_factory.cc +0 -265
- data/src/core/ext/xds/google_mesh_ca_certificate_provider_factory.h +0 -104
- data/src/core/lib/gprpp/map.h +0 -53
- data/third_party/upb/upb/port.c +0 -26
@@ -29,29 +29,29 @@ static const upb_msglayout_field envoy_config_cluster_v3_CircuitBreakers__fields
|
|
29
29
|
const upb_msglayout envoy_config_cluster_v3_CircuitBreakers_msginit = {
|
30
30
|
&envoy_config_cluster_v3_CircuitBreakers_submsgs[0],
|
31
31
|
&envoy_config_cluster_v3_CircuitBreakers__fields[0],
|
32
|
-
UPB_SIZE(
|
32
|
+
UPB_SIZE(8, 8), 1, false, 255,
|
33
33
|
};
|
34
34
|
|
35
|
-
static const upb_msglayout *const envoy_config_cluster_v3_CircuitBreakers_Thresholds_submsgs[
|
35
|
+
static const upb_msglayout *const envoy_config_cluster_v3_CircuitBreakers_Thresholds_submsgs[2] = {
|
36
36
|
&envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_msginit,
|
37
37
|
&google_protobuf_UInt32Value_msginit,
|
38
38
|
};
|
39
39
|
|
40
40
|
static const upb_msglayout_field envoy_config_cluster_v3_CircuitBreakers_Thresholds__fields[8] = {
|
41
|
-
{1, UPB_SIZE(
|
42
|
-
{2, UPB_SIZE(12, 16),
|
43
|
-
{3, UPB_SIZE(16, 24),
|
44
|
-
{4, UPB_SIZE(20, 32),
|
45
|
-
{5, UPB_SIZE(24, 40),
|
41
|
+
{1, UPB_SIZE(4, 4), 0, 0, 14, 1},
|
42
|
+
{2, UPB_SIZE(12, 16), 1, 1, 11, 1},
|
43
|
+
{3, UPB_SIZE(16, 24), 2, 1, 11, 1},
|
44
|
+
{4, UPB_SIZE(20, 32), 3, 1, 11, 1},
|
45
|
+
{5, UPB_SIZE(24, 40), 4, 1, 11, 1},
|
46
46
|
{6, UPB_SIZE(8, 8), 0, 0, 8, 1},
|
47
|
-
{7, UPB_SIZE(28, 48),
|
48
|
-
{8, UPB_SIZE(32, 56),
|
47
|
+
{7, UPB_SIZE(28, 48), 5, 1, 11, 1},
|
48
|
+
{8, UPB_SIZE(32, 56), 6, 0, 11, 1},
|
49
49
|
};
|
50
50
|
|
51
51
|
const upb_msglayout envoy_config_cluster_v3_CircuitBreakers_Thresholds_msginit = {
|
52
52
|
&envoy_config_cluster_v3_CircuitBreakers_Thresholds_submsgs[0],
|
53
53
|
&envoy_config_cluster_v3_CircuitBreakers_Thresholds__fields[0],
|
54
|
-
UPB_SIZE(40, 64), 8, false,
|
54
|
+
UPB_SIZE(40, 64), 8, false, 255,
|
55
55
|
};
|
56
56
|
|
57
57
|
static const upb_msglayout *const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_submsgs[2] = {
|
@@ -60,14 +60,14 @@ static const upb_msglayout *const envoy_config_cluster_v3_CircuitBreakers_Thresh
|
|
60
60
|
};
|
61
61
|
|
62
62
|
static const upb_msglayout_field envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget__fields[2] = {
|
63
|
-
{1, UPB_SIZE(
|
64
|
-
{2, UPB_SIZE(
|
63
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
64
|
+
{2, UPB_SIZE(8, 16), 2, 1, 11, 1},
|
65
65
|
};
|
66
66
|
|
67
67
|
const upb_msglayout envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_msginit = {
|
68
68
|
&envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_submsgs[0],
|
69
69
|
&envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget__fields[0],
|
70
|
-
UPB_SIZE(
|
70
|
+
UPB_SIZE(16, 24), 2, false, 255,
|
71
71
|
};
|
72
72
|
|
73
73
|
#include "upb/port_undef.inc"
|
@@ -11,6 +11,7 @@
|
|
11
11
|
|
12
12
|
#include "upb/msg.h"
|
13
13
|
#include "upb/decode.h"
|
14
|
+
#include "upb/decode_fast.h"
|
14
15
|
#include "upb/encode.h"
|
15
16
|
|
16
17
|
#include "upb/port_def.inc"
|
@@ -44,6 +45,12 @@ UPB_INLINE envoy_config_cluster_v3_CircuitBreakers *envoy_config_cluster_v3_Circ
|
|
44
45
|
envoy_config_cluster_v3_CircuitBreakers *ret = envoy_config_cluster_v3_CircuitBreakers_new(arena);
|
45
46
|
return (ret && upb_decode(buf, size, ret, &envoy_config_cluster_v3_CircuitBreakers_msginit, arena)) ? ret : NULL;
|
46
47
|
}
|
48
|
+
UPB_INLINE envoy_config_cluster_v3_CircuitBreakers *envoy_config_cluster_v3_CircuitBreakers_parse_ex(const char *buf, size_t size,
|
49
|
+
upb_arena *arena, int options) {
|
50
|
+
envoy_config_cluster_v3_CircuitBreakers *ret = envoy_config_cluster_v3_CircuitBreakers_new(arena);
|
51
|
+
return (ret && _upb_decode(buf, size, ret, &envoy_config_cluster_v3_CircuitBreakers_msginit, arena, options))
|
52
|
+
? ret : NULL;
|
53
|
+
}
|
47
54
|
UPB_INLINE char *envoy_config_cluster_v3_CircuitBreakers_serialize(const envoy_config_cluster_v3_CircuitBreakers *msg, upb_arena *arena, size_t *len) {
|
48
55
|
return upb_encode(msg, &envoy_config_cluster_v3_CircuitBreakers_msginit, arena, len);
|
49
56
|
}
|
@@ -55,12 +62,12 @@ UPB_INLINE envoy_config_cluster_v3_CircuitBreakers_Thresholds** envoy_config_clu
|
|
55
62
|
return (envoy_config_cluster_v3_CircuitBreakers_Thresholds**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
|
56
63
|
}
|
57
64
|
UPB_INLINE envoy_config_cluster_v3_CircuitBreakers_Thresholds** envoy_config_cluster_v3_CircuitBreakers_resize_thresholds(envoy_config_cluster_v3_CircuitBreakers *msg, size_t len, upb_arena *arena) {
|
58
|
-
return (envoy_config_cluster_v3_CircuitBreakers_Thresholds**)
|
65
|
+
return (envoy_config_cluster_v3_CircuitBreakers_Thresholds**)_upb_array_resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
|
59
66
|
}
|
60
67
|
UPB_INLINE struct envoy_config_cluster_v3_CircuitBreakers_Thresholds* envoy_config_cluster_v3_CircuitBreakers_add_thresholds(envoy_config_cluster_v3_CircuitBreakers *msg, upb_arena *arena) {
|
61
68
|
struct envoy_config_cluster_v3_CircuitBreakers_Thresholds* sub = (struct envoy_config_cluster_v3_CircuitBreakers_Thresholds*)_upb_msg_new(&envoy_config_cluster_v3_CircuitBreakers_Thresholds_msginit, arena);
|
62
|
-
bool ok =
|
63
|
-
msg, UPB_SIZE(0, 0), UPB_SIZE(
|
69
|
+
bool ok = _upb_array_append_accessor2(
|
70
|
+
msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
|
64
71
|
if (!ok) return NULL;
|
65
72
|
return sub;
|
66
73
|
}
|
@@ -75,29 +82,36 @@ UPB_INLINE envoy_config_cluster_v3_CircuitBreakers_Thresholds *envoy_config_clus
|
|
75
82
|
envoy_config_cluster_v3_CircuitBreakers_Thresholds *ret = envoy_config_cluster_v3_CircuitBreakers_Thresholds_new(arena);
|
76
83
|
return (ret && upb_decode(buf, size, ret, &envoy_config_cluster_v3_CircuitBreakers_Thresholds_msginit, arena)) ? ret : NULL;
|
77
84
|
}
|
85
|
+
UPB_INLINE envoy_config_cluster_v3_CircuitBreakers_Thresholds *envoy_config_cluster_v3_CircuitBreakers_Thresholds_parse_ex(const char *buf, size_t size,
|
86
|
+
upb_arena *arena, int options) {
|
87
|
+
envoy_config_cluster_v3_CircuitBreakers_Thresholds *ret = envoy_config_cluster_v3_CircuitBreakers_Thresholds_new(arena);
|
88
|
+
return (ret && _upb_decode(buf, size, ret, &envoy_config_cluster_v3_CircuitBreakers_Thresholds_msginit, arena, options))
|
89
|
+
? ret : NULL;
|
90
|
+
}
|
78
91
|
UPB_INLINE char *envoy_config_cluster_v3_CircuitBreakers_Thresholds_serialize(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, upb_arena *arena, size_t *len) {
|
79
92
|
return upb_encode(msg, &envoy_config_cluster_v3_CircuitBreakers_Thresholds_msginit, arena, len);
|
80
93
|
}
|
81
94
|
|
82
|
-
UPB_INLINE int32_t envoy_config_cluster_v3_CircuitBreakers_Thresholds_priority(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(
|
83
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_connections(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return
|
95
|
+
UPB_INLINE int32_t envoy_config_cluster_v3_CircuitBreakers_Thresholds_priority(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
|
96
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_connections(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return _upb_hasbit(msg, 1); }
|
84
97
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_max_connections(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 16), const struct google_protobuf_UInt32Value*); }
|
85
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_pending_requests(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return
|
98
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_pending_requests(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return _upb_hasbit(msg, 2); }
|
86
99
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_max_pending_requests(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(16, 24), const struct google_protobuf_UInt32Value*); }
|
87
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_requests(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return
|
100
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_requests(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return _upb_hasbit(msg, 3); }
|
88
101
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_max_requests(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 32), const struct google_protobuf_UInt32Value*); }
|
89
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_retries(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return
|
102
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_retries(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return _upb_hasbit(msg, 4); }
|
90
103
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_max_retries(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(24, 40), const struct google_protobuf_UInt32Value*); }
|
91
104
|
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_track_remaining(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), bool); }
|
92
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_connection_pools(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return
|
105
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_max_connection_pools(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return _upb_hasbit(msg, 5); }
|
93
106
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_max_connection_pools(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(28, 48), const struct google_protobuf_UInt32Value*); }
|
94
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_retry_budget(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return
|
107
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_has_retry_budget(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return _upb_hasbit(msg, 6); }
|
95
108
|
UPB_INLINE const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget* envoy_config_cluster_v3_CircuitBreakers_Thresholds_retry_budget(const envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(32, 56), const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget*); }
|
96
109
|
|
97
110
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_priority(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, int32_t value) {
|
98
|
-
*UPB_PTR_AT(msg, UPB_SIZE(
|
111
|
+
*UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
|
99
112
|
}
|
100
113
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_max_connections(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, struct google_protobuf_UInt32Value* value) {
|
114
|
+
_upb_sethas(msg, 1);
|
101
115
|
*UPB_PTR_AT(msg, UPB_SIZE(12, 16), struct google_protobuf_UInt32Value*) = value;
|
102
116
|
}
|
103
117
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_mutable_max_connections(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, upb_arena *arena) {
|
@@ -110,6 +124,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBr
|
|
110
124
|
return sub;
|
111
125
|
}
|
112
126
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_max_pending_requests(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, struct google_protobuf_UInt32Value* value) {
|
127
|
+
_upb_sethas(msg, 2);
|
113
128
|
*UPB_PTR_AT(msg, UPB_SIZE(16, 24), struct google_protobuf_UInt32Value*) = value;
|
114
129
|
}
|
115
130
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_mutable_max_pending_requests(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, upb_arena *arena) {
|
@@ -122,6 +137,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBr
|
|
122
137
|
return sub;
|
123
138
|
}
|
124
139
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_max_requests(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, struct google_protobuf_UInt32Value* value) {
|
140
|
+
_upb_sethas(msg, 3);
|
125
141
|
*UPB_PTR_AT(msg, UPB_SIZE(20, 32), struct google_protobuf_UInt32Value*) = value;
|
126
142
|
}
|
127
143
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_mutable_max_requests(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, upb_arena *arena) {
|
@@ -134,6 +150,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBr
|
|
134
150
|
return sub;
|
135
151
|
}
|
136
152
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_max_retries(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, struct google_protobuf_UInt32Value* value) {
|
153
|
+
_upb_sethas(msg, 4);
|
137
154
|
*UPB_PTR_AT(msg, UPB_SIZE(24, 40), struct google_protobuf_UInt32Value*) = value;
|
138
155
|
}
|
139
156
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_mutable_max_retries(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, upb_arena *arena) {
|
@@ -149,6 +166,7 @@ UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_track_rem
|
|
149
166
|
*UPB_PTR_AT(msg, UPB_SIZE(8, 8), bool) = value;
|
150
167
|
}
|
151
168
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_max_connection_pools(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, struct google_protobuf_UInt32Value* value) {
|
169
|
+
_upb_sethas(msg, 5);
|
152
170
|
*UPB_PTR_AT(msg, UPB_SIZE(28, 48), struct google_protobuf_UInt32Value*) = value;
|
153
171
|
}
|
154
172
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_mutable_max_connection_pools(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, upb_arena *arena) {
|
@@ -161,6 +179,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBr
|
|
161
179
|
return sub;
|
162
180
|
}
|
163
181
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_set_retry_budget(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget* value) {
|
182
|
+
_upb_sethas(msg, 6);
|
164
183
|
*UPB_PTR_AT(msg, UPB_SIZE(32, 56), envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget*) = value;
|
165
184
|
}
|
166
185
|
UPB_INLINE struct envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget* envoy_config_cluster_v3_CircuitBreakers_Thresholds_mutable_retry_budget(envoy_config_cluster_v3_CircuitBreakers_Thresholds *msg, upb_arena *arena) {
|
@@ -183,17 +202,24 @@ UPB_INLINE envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *envoy
|
|
183
202
|
envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *ret = envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_new(arena);
|
184
203
|
return (ret && upb_decode(buf, size, ret, &envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_msginit, arena)) ? ret : NULL;
|
185
204
|
}
|
205
|
+
UPB_INLINE envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_parse_ex(const char *buf, size_t size,
|
206
|
+
upb_arena *arena, int options) {
|
207
|
+
envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *ret = envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_new(arena);
|
208
|
+
return (ret && _upb_decode(buf, size, ret, &envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_msginit, arena, options))
|
209
|
+
? ret : NULL;
|
210
|
+
}
|
186
211
|
UPB_INLINE char *envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_serialize(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg, upb_arena *arena, size_t *len) {
|
187
212
|
return upb_encode(msg, &envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_msginit, arena, len);
|
188
213
|
}
|
189
214
|
|
190
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_has_budget_percent(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return
|
191
|
-
UPB_INLINE const struct envoy_type_v3_Percent* envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_budget_percent(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(
|
192
|
-
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_has_min_retry_concurrency(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return
|
193
|
-
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_min_retry_concurrency(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(
|
215
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_has_budget_percent(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return _upb_hasbit(msg, 1); }
|
216
|
+
UPB_INLINE const struct envoy_type_v3_Percent* envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_budget_percent(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct envoy_type_v3_Percent*); }
|
217
|
+
UPB_INLINE bool envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_has_min_retry_concurrency(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return _upb_hasbit(msg, 2); }
|
218
|
+
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_min_retry_concurrency(const envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const struct google_protobuf_UInt32Value*); }
|
194
219
|
|
195
220
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_set_budget_percent(envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg, struct envoy_type_v3_Percent* value) {
|
196
|
-
|
221
|
+
_upb_sethas(msg, 1);
|
222
|
+
*UPB_PTR_AT(msg, UPB_SIZE(4, 8), struct envoy_type_v3_Percent*) = value;
|
197
223
|
}
|
198
224
|
UPB_INLINE struct envoy_type_v3_Percent* envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_mutable_budget_percent(envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg, upb_arena *arena) {
|
199
225
|
struct envoy_type_v3_Percent* sub = (struct envoy_type_v3_Percent*)envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_budget_percent(msg);
|
@@ -205,7 +231,8 @@ UPB_INLINE struct envoy_type_v3_Percent* envoy_config_cluster_v3_CircuitBreakers
|
|
205
231
|
return sub;
|
206
232
|
}
|
207
233
|
UPB_INLINE void envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_set_min_retry_concurrency(envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg, struct google_protobuf_UInt32Value* value) {
|
208
|
-
|
234
|
+
_upb_sethas(msg, 2);
|
235
|
+
*UPB_PTR_AT(msg, UPB_SIZE(8, 16), struct google_protobuf_UInt32Value*) = value;
|
209
236
|
}
|
210
237
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_mutable_min_retry_concurrency(envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget *msg, upb_arena *arena) {
|
211
238
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_CircuitBreakers_Thresholds_RetryBudget_min_retry_concurrency(msg);
|
@@ -40,16 +40,16 @@ static const upb_msglayout *const envoy_config_cluster_v3_ClusterCollection_subm
|
|
40
40
|
};
|
41
41
|
|
42
42
|
static const upb_msglayout_field envoy_config_cluster_v3_ClusterCollection__fields[1] = {
|
43
|
-
{1, UPB_SIZE(
|
43
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
44
44
|
};
|
45
45
|
|
46
46
|
const upb_msglayout envoy_config_cluster_v3_ClusterCollection_msginit = {
|
47
47
|
&envoy_config_cluster_v3_ClusterCollection_submsgs[0],
|
48
48
|
&envoy_config_cluster_v3_ClusterCollection__fields[0],
|
49
|
-
UPB_SIZE(
|
49
|
+
UPB_SIZE(8, 16), 1, false, 255,
|
50
50
|
};
|
51
51
|
|
52
|
-
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_submsgs[
|
52
|
+
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_submsgs[32] = {
|
53
53
|
&envoy_config_cluster_v3_CircuitBreakers_msginit,
|
54
54
|
&envoy_config_cluster_v3_Cluster_CommonLbConfig_msginit,
|
55
55
|
&envoy_config_cluster_v3_Cluster_CustomClusterType_msginit,
|
@@ -85,59 +85,59 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_submsgs[35] =
|
|
85
85
|
};
|
86
86
|
|
87
87
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster__fields[47] = {
|
88
|
-
{1, UPB_SIZE(
|
89
|
-
{2, UPB_SIZE(
|
90
|
-
{3, UPB_SIZE(
|
91
|
-
{4, UPB_SIZE(
|
92
|
-
{5, UPB_SIZE(
|
93
|
-
{6, UPB_SIZE(
|
94
|
-
{8, UPB_SIZE(
|
95
|
-
{9, UPB_SIZE(
|
96
|
-
{10, UPB_SIZE(
|
97
|
-
{13, UPB_SIZE(
|
98
|
-
{14, UPB_SIZE(
|
99
|
-
{16, UPB_SIZE(
|
88
|
+
{1, UPB_SIZE(24, 24), 0, 0, 9, 1},
|
89
|
+
{2, UPB_SIZE(160, 296), UPB_SIZE(-165, -305), 0, 14, 1},
|
90
|
+
{3, UPB_SIZE(40, 56), 1, 3, 11, 1},
|
91
|
+
{4, UPB_SIZE(44, 64), 2, 30, 11, 1},
|
92
|
+
{5, UPB_SIZE(48, 72), 3, 31, 11, 1},
|
93
|
+
{6, UPB_SIZE(4, 4), 0, 0, 14, 1},
|
94
|
+
{8, UPB_SIZE(140, 256), 0, 21, 11, 3},
|
95
|
+
{9, UPB_SIZE(52, 80), 4, 31, 11, 1},
|
96
|
+
{10, UPB_SIZE(56, 88), 5, 0, 11, 1},
|
97
|
+
{13, UPB_SIZE(60, 96), 6, 22, 11, 1},
|
98
|
+
{14, UPB_SIZE(64, 104), 7, 23, 11, 1},
|
99
|
+
{16, UPB_SIZE(68, 112), 8, 30, 11, 1},
|
100
100
|
{17, UPB_SIZE(8, 8), 0, 0, 14, 1},
|
101
|
-
{18, UPB_SIZE(
|
102
|
-
{19, UPB_SIZE(
|
103
|
-
{20, UPB_SIZE(
|
104
|
-
{21, UPB_SIZE(
|
105
|
-
{22, UPB_SIZE(
|
106
|
-
{23, UPB_SIZE(
|
107
|
-
{24, UPB_SIZE(
|
108
|
-
{25, UPB_SIZE(
|
109
|
-
{26, UPB_SIZE(
|
110
|
-
{27, UPB_SIZE(
|
111
|
-
{28, UPB_SIZE(
|
112
|
-
{29, UPB_SIZE(
|
113
|
-
{30, UPB_SIZE(
|
114
|
-
{31, UPB_SIZE(
|
115
|
-
{32, UPB_SIZE(
|
116
|
-
{33, UPB_SIZE(
|
117
|
-
{34, UPB_SIZE(
|
118
|
-
{36, UPB_SIZE(
|
119
|
-
{37, UPB_SIZE(
|
120
|
-
{38, UPB_SIZE(
|
121
|
-
{39, UPB_SIZE(
|
122
|
-
{40, UPB_SIZE(
|
123
|
-
{41, UPB_SIZE(
|
124
|
-
{42, UPB_SIZE(
|
125
|
-
{43, UPB_SIZE(
|
126
|
-
{44, UPB_SIZE(
|
127
|
-
{45, UPB_SIZE(
|
128
|
-
{46, UPB_SIZE(
|
129
|
-
{47, UPB_SIZE(
|
130
|
-
{48, UPB_SIZE(
|
131
|
-
{49, UPB_SIZE(
|
132
|
-
{50, UPB_SIZE(
|
133
|
-
{51, UPB_SIZE(
|
134
|
-
{52, UPB_SIZE(
|
101
|
+
{18, UPB_SIZE(144, 264), 0, 18, 11, 3},
|
102
|
+
{19, UPB_SIZE(72, 120), 9, 15, 11, 1},
|
103
|
+
{20, UPB_SIZE(76, 128), 10, 30, 11, 1},
|
104
|
+
{21, UPB_SIZE(80, 136), 11, 19, 11, 1},
|
105
|
+
{22, UPB_SIZE(84, 144), 12, 4, 11, 1},
|
106
|
+
{23, UPB_SIZE(168, 312), UPB_SIZE(-173, -321), 10, 11, 1},
|
107
|
+
{24, UPB_SIZE(88, 152), 13, 26, 11, 1},
|
108
|
+
{25, UPB_SIZE(92, 160), 14, 25, 11, 1},
|
109
|
+
{26, UPB_SIZE(12, 12), 0, 0, 14, 1},
|
110
|
+
{27, UPB_SIZE(96, 168), 15, 1, 11, 1},
|
111
|
+
{28, UPB_SIZE(32, 40), 0, 0, 9, 1},
|
112
|
+
{29, UPB_SIZE(100, 176), 16, 24, 11, 1},
|
113
|
+
{30, UPB_SIZE(104, 184), 17, 17, 11, 1},
|
114
|
+
{31, UPB_SIZE(16, 16), 0, 0, 8, 1},
|
115
|
+
{32, UPB_SIZE(17, 17), 0, 0, 8, 1},
|
116
|
+
{33, UPB_SIZE(108, 192), 18, 29, 11, 1},
|
117
|
+
{34, UPB_SIZE(168, 312), UPB_SIZE(-173, -321), 7, 11, 1},
|
118
|
+
{36, UPB_SIZE(148, 272), 0, 12, 11, _UPB_LABEL_MAP},
|
119
|
+
{37, UPB_SIZE(168, 312), UPB_SIZE(-173, -321), 5, 11, 1},
|
120
|
+
{38, UPB_SIZE(160, 296), UPB_SIZE(-165, -305), 2, 11, 1},
|
121
|
+
{39, UPB_SIZE(18, 18), 0, 0, 8, 1},
|
122
|
+
{40, UPB_SIZE(152, 280), 0, 13, 11, 3},
|
123
|
+
{41, UPB_SIZE(112, 200), 19, 14, 11, 1},
|
124
|
+
{42, UPB_SIZE(116, 208), 20, 20, 11, 1},
|
125
|
+
{43, UPB_SIZE(156, 288), 0, 11, 11, 3},
|
126
|
+
{44, UPB_SIZE(120, 216), 21, 9, 11, 1},
|
127
|
+
{45, UPB_SIZE(19, 19), 0, 0, 8, 1},
|
128
|
+
{46, UPB_SIZE(124, 224), 22, 28, 11, 1},
|
129
|
+
{47, UPB_SIZE(20, 20), 0, 0, 8, 1},
|
130
|
+
{48, UPB_SIZE(128, 232), 23, 27, 11, 1},
|
131
|
+
{49, UPB_SIZE(132, 240), 24, 16, 11, 1},
|
132
|
+
{50, UPB_SIZE(136, 248), 25, 8, 11, 1},
|
133
|
+
{51, UPB_SIZE(21, 21), 0, 0, 8, 1},
|
134
|
+
{52, UPB_SIZE(168, 312), UPB_SIZE(-173, -321), 6, 11, 1},
|
135
135
|
};
|
136
136
|
|
137
137
|
const upb_msglayout envoy_config_cluster_v3_Cluster_msginit = {
|
138
138
|
&envoy_config_cluster_v3_Cluster_submsgs[0],
|
139
139
|
&envoy_config_cluster_v3_Cluster__fields[0],
|
140
|
-
UPB_SIZE(
|
140
|
+
UPB_SIZE(176, 336), 47, false, 255,
|
141
141
|
};
|
142
142
|
|
143
143
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_TransportSocketMatch_submsgs[2] = {
|
@@ -146,15 +146,15 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_TransportSocke
|
|
146
146
|
};
|
147
147
|
|
148
148
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_TransportSocketMatch__fields[3] = {
|
149
|
-
{1, UPB_SIZE(
|
150
|
-
{2, UPB_SIZE(
|
151
|
-
{3, UPB_SIZE(
|
149
|
+
{1, UPB_SIZE(4, 8), 0, 0, 9, 1},
|
150
|
+
{2, UPB_SIZE(12, 24), 1, 1, 11, 1},
|
151
|
+
{3, UPB_SIZE(16, 32), 2, 0, 11, 1},
|
152
152
|
};
|
153
153
|
|
154
154
|
const upb_msglayout envoy_config_cluster_v3_Cluster_TransportSocketMatch_msginit = {
|
155
155
|
&envoy_config_cluster_v3_Cluster_TransportSocketMatch_submsgs[0],
|
156
156
|
&envoy_config_cluster_v3_Cluster_TransportSocketMatch__fields[0],
|
157
|
-
UPB_SIZE(
|
157
|
+
UPB_SIZE(24, 48), 3, false, 255,
|
158
158
|
};
|
159
159
|
|
160
160
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CustomClusterType_submsgs[1] = {
|
@@ -162,14 +162,14 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CustomClusterT
|
|
162
162
|
};
|
163
163
|
|
164
164
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_CustomClusterType__fields[2] = {
|
165
|
-
{1, UPB_SIZE(
|
166
|
-
{2, UPB_SIZE(
|
165
|
+
{1, UPB_SIZE(4, 8), 0, 0, 9, 1},
|
166
|
+
{2, UPB_SIZE(12, 24), 1, 0, 11, 1},
|
167
167
|
};
|
168
168
|
|
169
169
|
const upb_msglayout envoy_config_cluster_v3_Cluster_CustomClusterType_msginit = {
|
170
170
|
&envoy_config_cluster_v3_Cluster_CustomClusterType_submsgs[0],
|
171
171
|
&envoy_config_cluster_v3_Cluster_CustomClusterType__fields[0],
|
172
|
-
UPB_SIZE(16, 32), 2, false,
|
172
|
+
UPB_SIZE(16, 32), 2, false, 255,
|
173
173
|
};
|
174
174
|
|
175
175
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_EdsClusterConfig_submsgs[2] = {
|
@@ -178,15 +178,15 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_EdsClusterConf
|
|
178
178
|
};
|
179
179
|
|
180
180
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_EdsClusterConfig__fields[3] = {
|
181
|
-
{1, UPB_SIZE(
|
182
|
-
{2, UPB_SIZE(
|
183
|
-
{3, UPB_SIZE(
|
181
|
+
{1, UPB_SIZE(12, 24), 1, 0, 11, 1},
|
182
|
+
{2, UPB_SIZE(4, 8), 0, 0, 9, 1},
|
183
|
+
{3, UPB_SIZE(16, 32), 2, 1, 11, 1},
|
184
184
|
};
|
185
185
|
|
186
186
|
const upb_msglayout envoy_config_cluster_v3_Cluster_EdsClusterConfig_msginit = {
|
187
187
|
&envoy_config_cluster_v3_Cluster_EdsClusterConfig_submsgs[0],
|
188
188
|
&envoy_config_cluster_v3_Cluster_EdsClusterConfig__fields[0],
|
189
|
-
UPB_SIZE(
|
189
|
+
UPB_SIZE(24, 48), 3, false, 255,
|
190
190
|
};
|
191
191
|
|
192
192
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_LbSubsetConfig_submsgs[2] = {
|
@@ -195,8 +195,8 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_LbSubsetConfig
|
|
195
195
|
};
|
196
196
|
|
197
197
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_LbSubsetConfig__fields[7] = {
|
198
|
-
{1, UPB_SIZE(
|
199
|
-
{2, UPB_SIZE(12, 16),
|
198
|
+
{1, UPB_SIZE(4, 4), 0, 0, 14, 1},
|
199
|
+
{2, UPB_SIZE(12, 16), 1, 1, 11, 1},
|
200
200
|
{3, UPB_SIZE(16, 24), 0, 0, 11, 3},
|
201
201
|
{4, UPB_SIZE(8, 8), 0, 0, 8, 1},
|
202
202
|
{5, UPB_SIZE(9, 9), 0, 0, 8, 1},
|
@@ -207,20 +207,20 @@ static const upb_msglayout_field envoy_config_cluster_v3_Cluster_LbSubsetConfig_
|
|
207
207
|
const upb_msglayout envoy_config_cluster_v3_Cluster_LbSubsetConfig_msginit = {
|
208
208
|
&envoy_config_cluster_v3_Cluster_LbSubsetConfig_submsgs[0],
|
209
209
|
&envoy_config_cluster_v3_Cluster_LbSubsetConfig__fields[0],
|
210
|
-
UPB_SIZE(24, 32), 7, false,
|
210
|
+
UPB_SIZE(24, 32), 7, false, 255,
|
211
211
|
};
|
212
212
|
|
213
213
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_LbSubsetConfig_LbSubsetSelector__fields[4] = {
|
214
|
-
{1, UPB_SIZE(
|
214
|
+
{1, UPB_SIZE(8, 8), 0, 0, 9, 3},
|
215
215
|
{2, UPB_SIZE(0, 0), 0, 0, 14, 1},
|
216
|
-
{3, UPB_SIZE(
|
217
|
-
{4, UPB_SIZE(
|
216
|
+
{3, UPB_SIZE(12, 16), 0, 0, 9, 3},
|
217
|
+
{4, UPB_SIZE(4, 4), 0, 0, 8, 1},
|
218
218
|
};
|
219
219
|
|
220
220
|
const upb_msglayout envoy_config_cluster_v3_Cluster_LbSubsetConfig_LbSubsetSelector_msginit = {
|
221
221
|
NULL,
|
222
222
|
&envoy_config_cluster_v3_Cluster_LbSubsetConfig_LbSubsetSelector__fields[0],
|
223
|
-
UPB_SIZE(
|
223
|
+
UPB_SIZE(16, 24), 4, false, 255,
|
224
224
|
};
|
225
225
|
|
226
226
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_LeastRequestLbConfig_submsgs[2] = {
|
@@ -229,30 +229,30 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_LeastRequestLb
|
|
229
229
|
};
|
230
230
|
|
231
231
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_LeastRequestLbConfig__fields[2] = {
|
232
|
-
{1, UPB_SIZE(
|
233
|
-
{2, UPB_SIZE(
|
232
|
+
{1, UPB_SIZE(4, 8), 1, 1, 11, 1},
|
233
|
+
{2, UPB_SIZE(8, 16), 2, 0, 11, 1},
|
234
234
|
};
|
235
235
|
|
236
236
|
const upb_msglayout envoy_config_cluster_v3_Cluster_LeastRequestLbConfig_msginit = {
|
237
237
|
&envoy_config_cluster_v3_Cluster_LeastRequestLbConfig_submsgs[0],
|
238
238
|
&envoy_config_cluster_v3_Cluster_LeastRequestLbConfig__fields[0],
|
239
|
-
UPB_SIZE(
|
239
|
+
UPB_SIZE(16, 24), 2, false, 255,
|
240
240
|
};
|
241
241
|
|
242
|
-
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_RingHashLbConfig_submsgs[
|
242
|
+
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_RingHashLbConfig_submsgs[1] = {
|
243
243
|
&google_protobuf_UInt64Value_msginit,
|
244
244
|
};
|
245
245
|
|
246
246
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_RingHashLbConfig__fields[3] = {
|
247
|
-
{1, UPB_SIZE(8, 8),
|
248
|
-
{3, UPB_SIZE(
|
249
|
-
{4, UPB_SIZE(12, 16),
|
247
|
+
{1, UPB_SIZE(8, 8), 1, 0, 11, 1},
|
248
|
+
{3, UPB_SIZE(4, 4), 0, 0, 14, 1},
|
249
|
+
{4, UPB_SIZE(12, 16), 2, 0, 11, 1},
|
250
250
|
};
|
251
251
|
|
252
252
|
const upb_msglayout envoy_config_cluster_v3_Cluster_RingHashLbConfig_msginit = {
|
253
253
|
&envoy_config_cluster_v3_Cluster_RingHashLbConfig_submsgs[0],
|
254
254
|
&envoy_config_cluster_v3_Cluster_RingHashLbConfig__fields[0],
|
255
|
-
UPB_SIZE(16, 24), 3, false,
|
255
|
+
UPB_SIZE(16, 24), 3, false, 255,
|
256
256
|
};
|
257
257
|
|
258
258
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_MaglevLbConfig_submsgs[1] = {
|
@@ -260,13 +260,13 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_MaglevLbConfig
|
|
260
260
|
};
|
261
261
|
|
262
262
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_MaglevLbConfig__fields[1] = {
|
263
|
-
{1, UPB_SIZE(
|
263
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
264
264
|
};
|
265
265
|
|
266
266
|
const upb_msglayout envoy_config_cluster_v3_Cluster_MaglevLbConfig_msginit = {
|
267
267
|
&envoy_config_cluster_v3_Cluster_MaglevLbConfig_submsgs[0],
|
268
268
|
&envoy_config_cluster_v3_Cluster_MaglevLbConfig__fields[0],
|
269
|
-
UPB_SIZE(
|
269
|
+
UPB_SIZE(8, 16), 1, false, 255,
|
270
270
|
};
|
271
271
|
|
272
272
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_OriginalDstLbConfig__fields[1] = {
|
@@ -276,7 +276,7 @@ static const upb_msglayout_field envoy_config_cluster_v3_Cluster_OriginalDstLbCo
|
|
276
276
|
const upb_msglayout envoy_config_cluster_v3_Cluster_OriginalDstLbConfig_msginit = {
|
277
277
|
NULL,
|
278
278
|
&envoy_config_cluster_v3_Cluster_OriginalDstLbConfig__fields[0],
|
279
|
-
UPB_SIZE(
|
279
|
+
UPB_SIZE(8, 8), 1, false, 255,
|
280
280
|
};
|
281
281
|
|
282
282
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CommonLbConfig_submsgs[5] = {
|
@@ -288,19 +288,19 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CommonLbConfig
|
|
288
288
|
};
|
289
289
|
|
290
290
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_CommonLbConfig__fields[7] = {
|
291
|
-
{1, UPB_SIZE(4, 8),
|
291
|
+
{1, UPB_SIZE(4, 8), 1, 3, 11, 1},
|
292
292
|
{2, UPB_SIZE(16, 32), UPB_SIZE(-21, -41), 2, 11, 1},
|
293
293
|
{3, UPB_SIZE(16, 32), UPB_SIZE(-21, -41), 1, 11, 1},
|
294
|
-
{4, UPB_SIZE(8, 16),
|
295
|
-
{5, UPB_SIZE(
|
296
|
-
{6, UPB_SIZE(
|
297
|
-
{7, UPB_SIZE(12, 24),
|
294
|
+
{4, UPB_SIZE(8, 16), 2, 4, 11, 1},
|
295
|
+
{5, UPB_SIZE(1, 1), 0, 0, 8, 1},
|
296
|
+
{6, UPB_SIZE(2, 2), 0, 0, 8, 1},
|
297
|
+
{7, UPB_SIZE(12, 24), 3, 0, 11, 1},
|
298
298
|
};
|
299
299
|
|
300
300
|
const upb_msglayout envoy_config_cluster_v3_Cluster_CommonLbConfig_msginit = {
|
301
301
|
&envoy_config_cluster_v3_Cluster_CommonLbConfig_submsgs[0],
|
302
302
|
&envoy_config_cluster_v3_Cluster_CommonLbConfig__fields[0],
|
303
|
-
UPB_SIZE(24, 48), 7, false,
|
303
|
+
UPB_SIZE(24, 48), 7, false, 255,
|
304
304
|
};
|
305
305
|
|
306
306
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CommonLbConfig_ZoneAwareLbConfig_submsgs[2] = {
|
@@ -309,21 +309,21 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CommonLbConfig
|
|
309
309
|
};
|
310
310
|
|
311
311
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_CommonLbConfig_ZoneAwareLbConfig__fields[3] = {
|
312
|
-
{1, UPB_SIZE(4, 8),
|
313
|
-
{2, UPB_SIZE(8, 16),
|
314
|
-
{3, UPB_SIZE(
|
312
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
313
|
+
{2, UPB_SIZE(8, 16), 2, 1, 11, 1},
|
314
|
+
{3, UPB_SIZE(1, 1), 0, 0, 8, 1},
|
315
315
|
};
|
316
316
|
|
317
317
|
const upb_msglayout envoy_config_cluster_v3_Cluster_CommonLbConfig_ZoneAwareLbConfig_msginit = {
|
318
318
|
&envoy_config_cluster_v3_Cluster_CommonLbConfig_ZoneAwareLbConfig_submsgs[0],
|
319
319
|
&envoy_config_cluster_v3_Cluster_CommonLbConfig_ZoneAwareLbConfig__fields[0],
|
320
|
-
UPB_SIZE(
|
320
|
+
UPB_SIZE(16, 24), 3, false, 255,
|
321
321
|
};
|
322
322
|
|
323
323
|
const upb_msglayout envoy_config_cluster_v3_Cluster_CommonLbConfig_LocalityWeightedLbConfig_msginit = {
|
324
324
|
NULL,
|
325
325
|
NULL,
|
326
|
-
UPB_SIZE(0, 0), 0, false,
|
326
|
+
UPB_SIZE(0, 0), 0, false, 255,
|
327
327
|
};
|
328
328
|
|
329
329
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CommonLbConfig_ConsistentHashingLbConfig_submsgs[1] = {
|
@@ -331,44 +331,44 @@ static const upb_msglayout *const envoy_config_cluster_v3_Cluster_CommonLbConfig
|
|
331
331
|
};
|
332
332
|
|
333
333
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_CommonLbConfig_ConsistentHashingLbConfig__fields[2] = {
|
334
|
-
{1, UPB_SIZE(
|
335
|
-
{2, UPB_SIZE(4, 8),
|
334
|
+
{1, UPB_SIZE(1, 1), 0, 0, 8, 1},
|
335
|
+
{2, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
336
336
|
};
|
337
337
|
|
338
338
|
const upb_msglayout envoy_config_cluster_v3_Cluster_CommonLbConfig_ConsistentHashingLbConfig_msginit = {
|
339
339
|
&envoy_config_cluster_v3_Cluster_CommonLbConfig_ConsistentHashingLbConfig_submsgs[0],
|
340
340
|
&envoy_config_cluster_v3_Cluster_CommonLbConfig_ConsistentHashingLbConfig__fields[0],
|
341
|
-
UPB_SIZE(8, 16), 2, false,
|
341
|
+
UPB_SIZE(8, 16), 2, false, 255,
|
342
342
|
};
|
343
343
|
|
344
|
-
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_RefreshRate_submsgs[
|
344
|
+
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_RefreshRate_submsgs[1] = {
|
345
345
|
&google_protobuf_Duration_msginit,
|
346
346
|
};
|
347
347
|
|
348
348
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_RefreshRate__fields[2] = {
|
349
|
-
{1, UPB_SIZE(
|
350
|
-
{2, UPB_SIZE(
|
349
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
350
|
+
{2, UPB_SIZE(8, 16), 2, 0, 11, 1},
|
351
351
|
};
|
352
352
|
|
353
353
|
const upb_msglayout envoy_config_cluster_v3_Cluster_RefreshRate_msginit = {
|
354
354
|
&envoy_config_cluster_v3_Cluster_RefreshRate_submsgs[0],
|
355
355
|
&envoy_config_cluster_v3_Cluster_RefreshRate__fields[0],
|
356
|
-
UPB_SIZE(
|
356
|
+
UPB_SIZE(16, 24), 2, false, 255,
|
357
357
|
};
|
358
358
|
|
359
|
-
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_PrefetchPolicy_submsgs[
|
359
|
+
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_PrefetchPolicy_submsgs[1] = {
|
360
360
|
&google_protobuf_DoubleValue_msginit,
|
361
361
|
};
|
362
362
|
|
363
363
|
static const upb_msglayout_field envoy_config_cluster_v3_Cluster_PrefetchPolicy__fields[2] = {
|
364
|
-
{1, UPB_SIZE(
|
365
|
-
{2, UPB_SIZE(
|
364
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
365
|
+
{2, UPB_SIZE(8, 16), 2, 0, 11, 1},
|
366
366
|
};
|
367
367
|
|
368
368
|
const upb_msglayout envoy_config_cluster_v3_Cluster_PrefetchPolicy_msginit = {
|
369
369
|
&envoy_config_cluster_v3_Cluster_PrefetchPolicy_submsgs[0],
|
370
370
|
&envoy_config_cluster_v3_Cluster_PrefetchPolicy__fields[0],
|
371
|
-
UPB_SIZE(
|
371
|
+
UPB_SIZE(16, 24), 2, false, 255,
|
372
372
|
};
|
373
373
|
|
374
374
|
static const upb_msglayout *const envoy_config_cluster_v3_Cluster_TypedExtensionProtocolOptionsEntry_submsgs[1] = {
|
@@ -383,7 +383,7 @@ static const upb_msglayout_field envoy_config_cluster_v3_Cluster_TypedExtensionP
|
|
383
383
|
const upb_msglayout envoy_config_cluster_v3_Cluster_TypedExtensionProtocolOptionsEntry_msginit = {
|
384
384
|
&envoy_config_cluster_v3_Cluster_TypedExtensionProtocolOptionsEntry_submsgs[0],
|
385
385
|
&envoy_config_cluster_v3_Cluster_TypedExtensionProtocolOptionsEntry__fields[0],
|
386
|
-
UPB_SIZE(16, 32), 2, false,
|
386
|
+
UPB_SIZE(16, 32), 2, false, 255,
|
387
387
|
};
|
388
388
|
|
389
389
|
static const upb_msglayout *const envoy_config_cluster_v3_LoadBalancingPolicy_submsgs[1] = {
|
@@ -397,7 +397,7 @@ static const upb_msglayout_field envoy_config_cluster_v3_LoadBalancingPolicy__fi
|
|
397
397
|
const upb_msglayout envoy_config_cluster_v3_LoadBalancingPolicy_msginit = {
|
398
398
|
&envoy_config_cluster_v3_LoadBalancingPolicy_submsgs[0],
|
399
399
|
&envoy_config_cluster_v3_LoadBalancingPolicy__fields[0],
|
400
|
-
UPB_SIZE(
|
400
|
+
UPB_SIZE(8, 8), 1, false, 255,
|
401
401
|
};
|
402
402
|
|
403
403
|
static const upb_msglayout *const envoy_config_cluster_v3_LoadBalancingPolicy_Policy_submsgs[1] = {
|
@@ -405,14 +405,14 @@ static const upb_msglayout *const envoy_config_cluster_v3_LoadBalancingPolicy_Po
|
|
405
405
|
};
|
406
406
|
|
407
407
|
static const upb_msglayout_field envoy_config_cluster_v3_LoadBalancingPolicy_Policy__fields[2] = {
|
408
|
-
{1, UPB_SIZE(
|
409
|
-
{3, UPB_SIZE(
|
408
|
+
{1, UPB_SIZE(4, 8), 0, 0, 9, 1},
|
409
|
+
{3, UPB_SIZE(12, 24), 1, 0, 11, 1},
|
410
410
|
};
|
411
411
|
|
412
412
|
const upb_msglayout envoy_config_cluster_v3_LoadBalancingPolicy_Policy_msginit = {
|
413
413
|
&envoy_config_cluster_v3_LoadBalancingPolicy_Policy_submsgs[0],
|
414
414
|
&envoy_config_cluster_v3_LoadBalancingPolicy_Policy__fields[0],
|
415
|
-
UPB_SIZE(16, 32), 2, false,
|
415
|
+
UPB_SIZE(16, 32), 2, false, 255,
|
416
416
|
};
|
417
417
|
|
418
418
|
static const upb_msglayout *const envoy_config_cluster_v3_UpstreamBindConfig_submsgs[1] = {
|
@@ -420,13 +420,13 @@ static const upb_msglayout *const envoy_config_cluster_v3_UpstreamBindConfig_sub
|
|
420
420
|
};
|
421
421
|
|
422
422
|
static const upb_msglayout_field envoy_config_cluster_v3_UpstreamBindConfig__fields[1] = {
|
423
|
-
{1, UPB_SIZE(
|
423
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
424
424
|
};
|
425
425
|
|
426
426
|
const upb_msglayout envoy_config_cluster_v3_UpstreamBindConfig_msginit = {
|
427
427
|
&envoy_config_cluster_v3_UpstreamBindConfig_submsgs[0],
|
428
428
|
&envoy_config_cluster_v3_UpstreamBindConfig__fields[0],
|
429
|
-
UPB_SIZE(
|
429
|
+
UPB_SIZE(8, 16), 1, false, 255,
|
430
430
|
};
|
431
431
|
|
432
432
|
static const upb_msglayout *const envoy_config_cluster_v3_UpstreamConnectionOptions_submsgs[1] = {
|
@@ -434,13 +434,13 @@ static const upb_msglayout *const envoy_config_cluster_v3_UpstreamConnectionOpti
|
|
434
434
|
};
|
435
435
|
|
436
436
|
static const upb_msglayout_field envoy_config_cluster_v3_UpstreamConnectionOptions__fields[1] = {
|
437
|
-
{1, UPB_SIZE(
|
437
|
+
{1, UPB_SIZE(4, 8), 1, 0, 11, 1},
|
438
438
|
};
|
439
439
|
|
440
440
|
const upb_msglayout envoy_config_cluster_v3_UpstreamConnectionOptions_msginit = {
|
441
441
|
&envoy_config_cluster_v3_UpstreamConnectionOptions_submsgs[0],
|
442
442
|
&envoy_config_cluster_v3_UpstreamConnectionOptions__fields[0],
|
443
|
-
UPB_SIZE(
|
443
|
+
UPB_SIZE(8, 16), 1, false, 255,
|
444
444
|
};
|
445
445
|
|
446
446
|
static const upb_msglayout_field envoy_config_cluster_v3_TrackClusterStats__fields[2] = {
|
@@ -451,7 +451,7 @@ static const upb_msglayout_field envoy_config_cluster_v3_TrackClusterStats__fiel
|
|
451
451
|
const upb_msglayout envoy_config_cluster_v3_TrackClusterStats_msginit = {
|
452
452
|
NULL,
|
453
453
|
&envoy_config_cluster_v3_TrackClusterStats__fields[0],
|
454
|
-
UPB_SIZE(
|
454
|
+
UPB_SIZE(8, 8), 2, false, 255,
|
455
455
|
};
|
456
456
|
|
457
457
|
#include "upb/port_undef.inc"
|