grpc 1.78.0 → 1.80.0.pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +22 -8
- data/include/grpc/credentials.h +47 -37
- data/include/grpc/credentials_cpp.h +39 -0
- data/include/grpc/event_engine/event_engine.h +8 -3
- data/include/grpc/grpc.h +4 -0
- data/include/grpc/impl/call.h +9 -0
- data/include/grpc/impl/channel_arg_names.h +7 -0
- data/include/grpc/module.modulemap +2 -0
- data/include/grpc/private_key_signer.h +104 -0
- data/include/grpc/support/port_platform.h +6 -0
- data/src/core/call/call_filters.h +101 -78
- data/src/core/call/call_spine.h +91 -68
- data/src/core/call/call_state.h +60 -4
- data/src/core/call/client_call.cc +9 -9
- data/src/core/call/client_call.h +1 -1
- data/src/core/call/metadata_batch.cc +2 -0
- data/src/core/call/metadata_batch.h +48 -1
- data/src/core/call/metadata_info.cc +35 -0
- data/src/core/call/metadata_info.h +2 -0
- data/src/core/call/simple_slice_based_metadata.h +2 -1
- data/src/core/channelz/channelz.cc +9 -6
- data/src/core/channelz/channelz.h +7 -4
- data/src/core/channelz/property_list.h +5 -0
- data/src/core/channelz/v2tov1/convert.cc +1 -1
- data/src/core/channelz/v2tov1/legacy_api.cc +164 -307
- data/src/core/client_channel/buffered_call.cc +7 -3
- data/src/core/client_channel/buffered_call.h +11 -5
- data/src/core/client_channel/client_channel.cc +106 -44
- data/src/core/client_channel/client_channel.h +3 -6
- data/src/core/client_channel/client_channel_filter.cc +90 -64
- data/src/core/client_channel/client_channel_filter.h +3 -6
- data/src/core/client_channel/client_channel_internal.h +5 -0
- data/src/core/client_channel/config_selector.h +17 -12
- data/src/core/client_channel/dynamic_filters.cc +8 -7
- data/src/core/client_channel/dynamic_filters.h +7 -5
- data/src/core/client_channel/retry_filter.cc +1 -1
- data/src/core/client_channel/retry_filter.h +2 -2
- data/src/core/client_channel/subchannel.cc +1682 -266
- data/src/core/client_channel/subchannel.h +411 -134
- data/src/core/client_channel/subchannel_stream_client.cc +22 -18
- data/src/core/client_channel/subchannel_stream_client.h +8 -9
- data/src/core/client_channel/subchannel_stream_limiter.cc +76 -0
- data/src/core/client_channel/subchannel_stream_limiter.h +51 -0
- data/src/core/config/config_vars.cc +9 -1
- data/src/core/config/config_vars.h +6 -0
- data/src/core/credentials/call/call_creds_registry.h +51 -22
- data/src/core/credentials/call/call_creds_registry_init.cc +86 -2
- data/src/core/credentials/call/external/aws_external_account_credentials.cc +2 -2
- data/src/core/credentials/call/external/external_account_credentials.cc +11 -4
- data/src/core/credentials/call/external/file_external_account_credentials.cc +2 -2
- data/src/core/credentials/transport/channel_creds_registry.h +71 -20
- data/src/core/credentials/transport/channel_creds_registry_init.cc +338 -29
- data/src/core/credentials/transport/ssl/ssl_credentials.cc +43 -24
- data/src/core/credentials/transport/ssl/ssl_credentials.h +7 -1
- data/src/core/credentials/transport/ssl/ssl_security_connector.cc +2 -8
- data/src/core/credentials/transport/ssl/ssl_security_connector.h +4 -3
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +25 -5
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +7 -5
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +181 -109
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +55 -42
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.cc +28 -23
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.h +26 -23
- data/src/core/credentials/transport/tls/spiffe_utils.cc +2 -2
- data/src/core/credentials/transport/tls/ssl_utils.cc +18 -18
- data/src/core/credentials/transport/tls/ssl_utils.h +12 -10
- data/src/core/credentials/transport/tls/tls_security_connector.cc +106 -74
- data/src/core/credentials/transport/tls/tls_security_connector.h +12 -8
- data/src/core/credentials/transport/xds/xds_credentials.cc +76 -32
- data/src/core/credentials/transport/xds/xds_credentials.h +4 -2
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +117 -35
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +42 -4
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +58 -29
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +19 -11
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +82 -25
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +28 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +9 -7
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +1 -1
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +7 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +117 -67
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +2 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +11 -1
- data/src/core/ext/transport/chttp2/transport/frame.cc +2 -15
- data/src/core/ext/transport/chttp2/transport/frame.h +0 -4
- data/src/core/ext/transport/chttp2/transport/goaway.cc +17 -2
- data/src/core/ext/transport/chttp2/transport/goaway.h +27 -6
- data/src/core/ext/transport/chttp2/transport/header_assembler.h +8 -21
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +101 -40
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +95 -0
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.cc +923 -772
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.h +406 -423
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +8 -1
- data/src/core/ext/transport/chttp2/transport/http2_settings_promises.h +25 -13
- data/src/core/ext/transport/chttp2/transport/http2_transport.cc +71 -24
- data/src/core/ext/transport/chttp2/transport/http2_transport.h +25 -49
- data/src/core/ext/transport/chttp2/transport/http2_ztrace_collector.h +2 -2
- data/src/core/ext/transport/chttp2/transport/incoming_metadata_tracker.h +29 -9
- data/src/core/ext/transport/chttp2/transport/internal.h +6 -2
- data/src/core/ext/transport/chttp2/transport/keepalive.cc +14 -20
- data/src/core/ext/transport/chttp2/transport/keepalive.h +9 -6
- data/src/core/ext/transport/chttp2/transport/parsing.cc +11 -0
- data/src/core/ext/transport/chttp2/transport/ping_promise.cc +34 -74
- data/src/core/ext/transport/chttp2/transport/ping_promise.h +123 -79
- data/src/core/ext/transport/chttp2/transport/security_frame.h +233 -3
- data/src/core/ext/transport/chttp2/transport/stream.h +152 -73
- data/src/core/ext/transport/chttp2/transport/stream_data_queue.h +155 -85
- data/src/core/ext/transport/chttp2/transport/transport_common.h +0 -5
- data/src/core/ext/transport/chttp2/transport/writable_streams.h +8 -7
- data/src/core/ext/transport/chttp2/transport/write_cycle.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/write_cycle.h +355 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +31 -29
- data/src/core/ext/upb-gen/cel/expr/checked.upb.h +1875 -0
- data/src/core/ext/upb-gen/cel/expr/checked.upb_minitable.c +409 -0
- data/src/core/ext/upb-gen/cel/expr/checked.upb_minitable.h +56 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb.h +2223 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb_minitable.c +489 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb_minitable.h +60 -0
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +130 -18
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +18 -13
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +70 -38
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +20 -17
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +26 -10
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +8 -7
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb.h +495 -0
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb_minitable.c +114 -0
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +26 -10
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +8 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb.h +121 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +143 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +18 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +112 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +22 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +276 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +60 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +72 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +23 -2
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +129 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +36 -10
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +16 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +63 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +12 -7
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +97 -81
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +40 -23
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +604 -228
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +146 -100
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +35 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +66 -14
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +22 -11
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +87 -0
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +29 -2
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +20 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +239 -60
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +59 -28
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb.h +89 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb_minitable.c +50 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb.h +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb_minitable.c +53 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb.h +105 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +6 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +206 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +41 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +64 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +64 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +31 -5
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +283 -14
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +48 -11
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +144 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +35 -7
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +42 -21
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +9 -8
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb.h +164 -1
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.c +37 -6
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +26 -11
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +33 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +14 -3
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +90 -10
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +18 -7
- data/src/core/ext/upbdefs-gen/cel/expr/checked.upbdefs.c +248 -0
- data/src/core/ext/upbdefs-gen/cel/expr/checked.upbdefs.h +97 -0
- data/src/core/ext/upbdefs-gen/cel/expr/syntax.upbdefs.c +283 -0
- data/src/core/ext/upbdefs-gen/cel/expr/syntax.upbdefs.h +107 -0
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +213 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +635 -614
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +1012 -1000
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +276 -273
- data/src/core/ext/upbdefs-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upbdefs.c +152 -0
- data/src/core/ext/upbdefs-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upbdefs.h +47 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +149 -144
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +367 -370
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/cel.upbdefs.c +63 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/cel.upbdefs.h +37 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +297 -284
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +492 -469
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +74 -43
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +60 -59
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +202 -184
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +354 -339
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +28 -19
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +30 -27
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +94 -91
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +386 -369
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +60 -57
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +1974 -1884
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +119 -112
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +62 -51
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +109 -88
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +54 -36
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +78 -84
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +48 -46
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +1041 -984
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +304 -290
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +94 -77
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +246 -193
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +37 -23
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +5 -3
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +4 -4
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +4 -5
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.c +113 -87
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +6 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +25 -30
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +14 -20
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +180 -183
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +56 -47
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +69 -47
- data/src/core/filter/filter_chain.h +95 -0
- data/src/core/handshaker/http_connect/{http_connect_handshaker.cc → http_connect_client_handshaker.cc} +32 -31
- data/src/core/handshaker/http_connect/{http_connect_handshaker.h → http_connect_client_handshaker.h} +4 -4
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +1 -1
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +1 -1
- data/src/core/handshaker/security/pipelined_secure_endpoint.cc +14 -13
- data/src/core/handshaker/security/secure_endpoint.cc +282 -68
- data/src/core/handshaker/security/secure_endpoint.h +0 -7
- data/src/core/lib/channel/channel_args.h +1 -1
- data/src/core/lib/channel/promise_based_filter.cc +17 -4
- data/src/core/lib/channel/promise_based_filter.h +3 -2
- data/src/core/lib/debug/trace_flags.cc +2 -0
- data/src/core/lib/debug/trace_flags.h +1 -0
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +35 -8
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +1 -2
- data/src/core/lib/event_engine/event_engine.cc +9 -0
- data/src/core/lib/event_engine/extensions/tcp_trace.h +0 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +1 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +34 -9
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +24 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +1 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +141 -14
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +19 -2
- data/src/core/lib/event_engine/posix_engine/posix_interface.h +7 -0
- data/src/core/lib/event_engine/posix_engine/posix_interface_posix.cc +21 -3
- data/src/core/lib/event_engine/posix_engine/posix_interface_windows.cc +16 -0
- data/src/core/lib/experiments/experiments.cc +309 -201
- data/src/core/lib/experiments/experiments.h +141 -80
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +2 -2
- data/src/core/lib/iomgr/resolve_address.h +0 -2
- data/src/core/lib/iomgr/resolved_address.h +0 -2
- data/src/core/lib/iomgr/tcp_posix.cc +13 -5
- data/src/core/lib/iomgr/tcp_server.cc +0 -5
- data/src/core/lib/iomgr/tcp_server.h +0 -7
- data/src/core/lib/iomgr/tcp_server_posix.cc +0 -17
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -3
- data/src/core/lib/iomgr/tcp_server_windows.cc +12 -51
- data/src/core/lib/promise/all_ok.h +17 -12
- data/src/core/lib/promise/cancel_callback.h +12 -13
- data/src/core/lib/promise/detail/join_state.h +626 -0
- data/src/core/lib/promise/detail/promise_factory.h +14 -14
- data/src/core/lib/promise/for_each.h +32 -8
- data/src/core/lib/promise/if.h +9 -7
- data/src/core/lib/promise/loop.h +18 -16
- data/src/core/lib/promise/map.h +54 -47
- data/src/core/lib/promise/mpsc.h +11 -10
- data/src/core/lib/promise/observable.h +6 -6
- data/src/core/lib/promise/party.h +25 -19
- data/src/core/lib/promise/poll.h +5 -5
- data/src/core/lib/promise/prioritized_race.h +10 -7
- data/src/core/lib/promise/promise.h +16 -11
- data/src/core/lib/promise/race.h +6 -5
- data/src/core/lib/promise/seq.h +109 -74
- data/src/core/lib/promise/try_join.h +14 -6
- data/src/core/lib/promise/try_seq.h +76 -60
- data/src/core/lib/resource_quota/api.cc +7 -0
- data/src/core/lib/resource_quota/arena.h +1 -1
- data/src/core/lib/resource_quota/memory_quota.cc +4 -1
- data/src/core/lib/resource_quota/resource_quota.cc +2 -1
- data/src/core/lib/resource_quota/resource_quota.h +3 -0
- data/src/core/lib/resource_quota/stream_quota.cc +77 -1
- data/src/core/lib/resource_quota/stream_quota.h +64 -1
- data/src/core/lib/resource_quota/telemetry.h +1 -1
- data/src/core/lib/surface/call.cc +13 -0
- data/src/core/lib/surface/call_utils.h +58 -43
- data/src/core/lib/surface/channel.h +1 -4
- data/src/core/lib/surface/completion_queue.cc +13 -6
- data/src/core/lib/surface/validate_metadata.cc +20 -15
- data/src/core/lib/surface/validate_metadata.h +3 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/promise_endpoint.cc +1 -1
- data/src/core/lib/transport/promise_endpoint.h +1 -1
- data/src/core/lib/transport/transport.h +5 -0
- data/src/core/load_balancing/health_check_client.cc +1 -15
- data/src/core/load_balancing/health_check_client_internal.h +0 -2
- data/src/core/load_balancing/oob_backend_metric.cc +1 -5
- data/src/core/load_balancing/oob_backend_metric_internal.h +0 -1
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +12 -9
- data/src/core/plugin_registry/grpc_plugin_registry.cc +3 -2
- data/src/core/resolver/xds/xds_resolver.cc +162 -116
- data/src/core/server/server.cc +18 -1
- data/src/core/server/server.h +2 -0
- data/src/core/server/xds_server_config_fetcher.cc +4 -4
- data/src/core/telemetry/call_tracer.cc +87 -2
- data/src/core/telemetry/call_tracer.h +46 -8
- data/src/core/telemetry/instrument.cc +102 -40
- data/src/core/telemetry/instrument.h +246 -65
- data/src/core/tsi/fake_transport_security.cc +3 -1
- data/src/core/tsi/ssl_transport_security.cc +516 -137
- data/src/core/tsi/ssl_transport_security.h +28 -22
- data/src/core/tsi/ssl_transport_security_utils.cc +2 -2
- data/src/core/tsi/ssl_transport_security_utils.h +2 -2
- data/src/core/util/bitset.h +6 -0
- data/src/core/util/function_signature.h +3 -1
- data/src/core/util/http_client/httpcli_security_connector.cc +2 -1
- data/src/core/util/json/json_reader.cc +0 -4
- data/src/core/xds/grpc/certificate_provider_store.cc +2 -1
- data/src/core/xds/grpc/certificate_provider_store.h +3 -17
- data/src/core/xds/grpc/certificate_provider_store_interface.h +61 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +48 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +18 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +7 -2
- data/src/core/xds/grpc/xds_certificate_provider.h +13 -2
- data/src/core/xds/grpc/xds_client_grpc.cc +13 -6
- data/src/core/xds/grpc/xds_client_grpc.h +10 -7
- data/src/core/xds/grpc/xds_cluster.cc +18 -4
- data/src/core/xds/grpc/xds_cluster.h +17 -2
- data/src/core/xds/grpc/xds_cluster_parser.cc +36 -11
- data/src/core/xds/grpc/xds_common_types.cc +45 -0
- data/src/core/xds/grpc/xds_common_types.h +31 -0
- data/src/core/xds/grpc/xds_common_types_parser.cc +274 -16
- data/src/core/xds/grpc/xds_common_types_parser.h +12 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +128 -24
- data/src/core/xds/grpc/xds_http_fault_filter.h +19 -10
- data/src/core/xds/grpc/xds_http_filter.cc +38 -0
- data/src/core/xds/grpc/xds_http_filter.h +70 -47
- data/src/core/xds/grpc/xds_http_filter_registry.cc +48 -14
- data/src/core/xds/grpc/xds_http_filter_registry.h +29 -15
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +88 -22
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +22 -11
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +36 -20
- data/src/core/xds/grpc/xds_http_rbac_filter.h +19 -10
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +143 -26
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +19 -10
- data/src/core/xds/grpc/xds_listener.cc +4 -1
- data/src/core/xds/grpc/xds_listener.h +10 -2
- data/src/core/xds/grpc/xds_listener_parser.cc +23 -18
- data/src/core/xds/grpc/xds_matcher.cc +40 -5
- data/src/core/xds/grpc/xds_matcher.h +13 -0
- data/src/core/xds/grpc/xds_matcher_action.h +1 -1
- data/src/core/xds/grpc/xds_matcher_parse.cc +60 -40
- data/src/core/xds/grpc/xds_matcher_parse.h +2 -1
- data/src/core/xds/grpc/xds_route_config.cc +12 -1
- data/src/core/xds/grpc/xds_route_config.h +15 -2
- data/src/core/xds/grpc/xds_route_config_parser.cc +11 -5
- data/src/core/xds/grpc/xds_routing.cc +181 -6
- data/src/core/xds/grpc/xds_routing.h +57 -0
- data/src/core/xds/grpc/xds_server_grpc.cc +55 -43
- data/src/core/xds/grpc/xds_server_grpc.h +13 -6
- data/src/core/xds/grpc/xds_server_grpc_interface.h +3 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +12 -6
- data/src/core/xds/grpc/xds_transport_grpc.h +5 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +12 -8
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +18 -12
- data/src/ruby/lib/grpc/grpc.rb +7 -9
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +1 -1
- data/src/ruby/spec/client_server_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -4
- data/src/ruby/spec/spec_helper.rb +1 -1
- metadata +64 -14
- data/src/core/ext/transport/chttp2/transport/security_frame.cc +0 -31
- data/src/core/handshaker/security/legacy_secure_endpoint.cc +0 -597
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
#include "envoy/config/core/v3/proxy_protocol.upb_minitable.h"
|
|
15
15
|
|
|
16
|
+
#include "envoy/config/core/v3/substitution_format_string.upb_minitable.h"
|
|
16
17
|
#include "udpa/annotations/status.upb_minitable.h"
|
|
17
18
|
#include "validate/validate.upb_minitable.h"
|
|
18
19
|
|
|
@@ -24,7 +25,10 @@ extern "C" {
|
|
|
24
25
|
#endif
|
|
25
26
|
|
|
26
27
|
typedef struct envoy_config_core_v3_ProxyProtocolPassThroughTLVs { upb_Message UPB_PRIVATE(base); } envoy_config_core_v3_ProxyProtocolPassThroughTLVs;
|
|
28
|
+
typedef struct envoy_config_core_v3_TlvEntry { upb_Message UPB_PRIVATE(base); } envoy_config_core_v3_TlvEntry;
|
|
27
29
|
typedef struct envoy_config_core_v3_ProxyProtocolConfig { upb_Message UPB_PRIVATE(base); } envoy_config_core_v3_ProxyProtocolConfig;
|
|
30
|
+
typedef struct envoy_config_core_v3_PerHostConfig { upb_Message UPB_PRIVATE(base); } envoy_config_core_v3_PerHostConfig;
|
|
31
|
+
struct envoy_config_core_v3_SubstitutionFormatString;
|
|
28
32
|
|
|
29
33
|
typedef enum {
|
|
30
34
|
envoy_config_core_v3_ProxyProtocolConfig_V1 = 0,
|
|
@@ -152,6 +156,106 @@ UPB_INLINE bool envoy_config_core_v3_ProxyProtocolPassThroughTLVs_add_tlv_type(e
|
|
|
152
156
|
return true;
|
|
153
157
|
}
|
|
154
158
|
|
|
159
|
+
/* envoy.config.core.v3.TlvEntry */
|
|
160
|
+
|
|
161
|
+
UPB_INLINE envoy_config_core_v3_TlvEntry* envoy_config_core_v3_TlvEntry_new(upb_Arena* arena) {
|
|
162
|
+
return (envoy_config_core_v3_TlvEntry*)_upb_Message_New(&envoy__config__core__v3__TlvEntry_msg_init, arena);
|
|
163
|
+
}
|
|
164
|
+
UPB_INLINE envoy_config_core_v3_TlvEntry* envoy_config_core_v3_TlvEntry_parse(const char* buf, size_t size, upb_Arena* arena) {
|
|
165
|
+
envoy_config_core_v3_TlvEntry* ret = envoy_config_core_v3_TlvEntry_new(arena);
|
|
166
|
+
if (!ret) return NULL;
|
|
167
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__core__v3__TlvEntry_msg_init, NULL, 0, arena) !=
|
|
168
|
+
kUpb_DecodeStatus_Ok) {
|
|
169
|
+
return NULL;
|
|
170
|
+
}
|
|
171
|
+
return ret;
|
|
172
|
+
}
|
|
173
|
+
UPB_INLINE envoy_config_core_v3_TlvEntry* envoy_config_core_v3_TlvEntry_parse_ex(const char* buf, size_t size,
|
|
174
|
+
const upb_ExtensionRegistry* extreg,
|
|
175
|
+
int options, upb_Arena* arena) {
|
|
176
|
+
envoy_config_core_v3_TlvEntry* ret = envoy_config_core_v3_TlvEntry_new(arena);
|
|
177
|
+
if (!ret) return NULL;
|
|
178
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__core__v3__TlvEntry_msg_init, extreg, options,
|
|
179
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
|
180
|
+
return NULL;
|
|
181
|
+
}
|
|
182
|
+
return ret;
|
|
183
|
+
}
|
|
184
|
+
UPB_INLINE char* envoy_config_core_v3_TlvEntry_serialize(const envoy_config_core_v3_TlvEntry* msg, upb_Arena* arena, size_t* len) {
|
|
185
|
+
char* ptr;
|
|
186
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__core__v3__TlvEntry_msg_init, 0, arena, &ptr, len);
|
|
187
|
+
return ptr;
|
|
188
|
+
}
|
|
189
|
+
UPB_INLINE char* envoy_config_core_v3_TlvEntry_serialize_ex(const envoy_config_core_v3_TlvEntry* msg, int options,
|
|
190
|
+
upb_Arena* arena, size_t* len) {
|
|
191
|
+
char* ptr;
|
|
192
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__core__v3__TlvEntry_msg_init, options, arena, &ptr, len);
|
|
193
|
+
return ptr;
|
|
194
|
+
}
|
|
195
|
+
UPB_INLINE void envoy_config_core_v3_TlvEntry_clear_type(envoy_config_core_v3_TlvEntry* msg) {
|
|
196
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
197
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
198
|
+
}
|
|
199
|
+
UPB_INLINE uint32_t envoy_config_core_v3_TlvEntry_type(const envoy_config_core_v3_TlvEntry* msg) {
|
|
200
|
+
uint32_t default_val = (uint32_t)0u;
|
|
201
|
+
uint32_t ret;
|
|
202
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
203
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
204
|
+
&default_val, &ret);
|
|
205
|
+
return ret;
|
|
206
|
+
}
|
|
207
|
+
UPB_INLINE void envoy_config_core_v3_TlvEntry_clear_value(envoy_config_core_v3_TlvEntry* msg) {
|
|
208
|
+
const upb_MiniTableField field = {2, UPB_SIZE(20, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
209
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
210
|
+
}
|
|
211
|
+
UPB_INLINE upb_StringView envoy_config_core_v3_TlvEntry_value(const envoy_config_core_v3_TlvEntry* msg) {
|
|
212
|
+
upb_StringView default_val = upb_StringView_FromString("");
|
|
213
|
+
upb_StringView ret;
|
|
214
|
+
const upb_MiniTableField field = {2, UPB_SIZE(20, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
215
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
216
|
+
&default_val, &ret);
|
|
217
|
+
return ret;
|
|
218
|
+
}
|
|
219
|
+
UPB_INLINE void envoy_config_core_v3_TlvEntry_clear_format_string(envoy_config_core_v3_TlvEntry* msg) {
|
|
220
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
221
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
222
|
+
}
|
|
223
|
+
UPB_INLINE const struct envoy_config_core_v3_SubstitutionFormatString* envoy_config_core_v3_TlvEntry_format_string(const envoy_config_core_v3_TlvEntry* msg) {
|
|
224
|
+
const struct envoy_config_core_v3_SubstitutionFormatString* default_val = NULL;
|
|
225
|
+
const struct envoy_config_core_v3_SubstitutionFormatString* ret;
|
|
226
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
227
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__SubstitutionFormatString_msg_init);
|
|
228
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
229
|
+
&default_val, &ret);
|
|
230
|
+
return ret;
|
|
231
|
+
}
|
|
232
|
+
UPB_INLINE bool envoy_config_core_v3_TlvEntry_has_format_string(const envoy_config_core_v3_TlvEntry* msg) {
|
|
233
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
234
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
UPB_INLINE void envoy_config_core_v3_TlvEntry_set_type(envoy_config_core_v3_TlvEntry *msg, uint32_t value) {
|
|
238
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
239
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
240
|
+
}
|
|
241
|
+
UPB_INLINE void envoy_config_core_v3_TlvEntry_set_value(envoy_config_core_v3_TlvEntry *msg, upb_StringView value) {
|
|
242
|
+
const upb_MiniTableField field = {2, UPB_SIZE(20, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
243
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
244
|
+
}
|
|
245
|
+
UPB_INLINE void envoy_config_core_v3_TlvEntry_set_format_string(envoy_config_core_v3_TlvEntry *msg, struct envoy_config_core_v3_SubstitutionFormatString* value) {
|
|
246
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
247
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__SubstitutionFormatString_msg_init);
|
|
248
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
249
|
+
}
|
|
250
|
+
UPB_INLINE struct envoy_config_core_v3_SubstitutionFormatString* envoy_config_core_v3_TlvEntry_mutable_format_string(envoy_config_core_v3_TlvEntry* msg, upb_Arena* arena) {
|
|
251
|
+
struct envoy_config_core_v3_SubstitutionFormatString* sub = (struct envoy_config_core_v3_SubstitutionFormatString*)envoy_config_core_v3_TlvEntry_format_string(msg);
|
|
252
|
+
if (sub == NULL) {
|
|
253
|
+
sub = (struct envoy_config_core_v3_SubstitutionFormatString*)_upb_Message_New(&envoy__config__core__v3__SubstitutionFormatString_msg_init, arena);
|
|
254
|
+
if (sub) envoy_config_core_v3_TlvEntry_set_format_string(msg, sub);
|
|
255
|
+
}
|
|
256
|
+
return sub;
|
|
257
|
+
}
|
|
258
|
+
|
|
155
259
|
/* envoy.config.core.v3.ProxyProtocolConfig */
|
|
156
260
|
|
|
157
261
|
UPB_INLINE envoy_config_core_v3_ProxyProtocolConfig* envoy_config_core_v3_ProxyProtocolConfig_new(upb_Arena* arena) {
|
|
@@ -217,6 +321,41 @@ UPB_INLINE bool envoy_config_core_v3_ProxyProtocolConfig_has_pass_through_tlvs(c
|
|
|
217
321
|
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
218
322
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
219
323
|
}
|
|
324
|
+
UPB_INLINE void envoy_config_core_v3_ProxyProtocolConfig_clear_added_tlvs(envoy_config_core_v3_ProxyProtocolConfig* msg) {
|
|
325
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
326
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
327
|
+
}
|
|
328
|
+
UPB_INLINE const envoy_config_core_v3_TlvEntry* const* envoy_config_core_v3_ProxyProtocolConfig_added_tlvs(const envoy_config_core_v3_ProxyProtocolConfig* msg, size_t* size) {
|
|
329
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
330
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
331
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
332
|
+
if (arr) {
|
|
333
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
334
|
+
return (const envoy_config_core_v3_TlvEntry* const*)upb_Array_DataPtr(arr);
|
|
335
|
+
} else {
|
|
336
|
+
if (size) *size = 0;
|
|
337
|
+
return NULL;
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
UPB_INLINE const upb_Array* _envoy_config_core_v3_ProxyProtocolConfig_added_tlvs_upb_array(const envoy_config_core_v3_ProxyProtocolConfig* msg, size_t* size) {
|
|
341
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
342
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
343
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
344
|
+
if (size) {
|
|
345
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
346
|
+
}
|
|
347
|
+
return arr;
|
|
348
|
+
}
|
|
349
|
+
UPB_INLINE upb_Array* _envoy_config_core_v3_ProxyProtocolConfig_added_tlvs_mutable_upb_array(envoy_config_core_v3_ProxyProtocolConfig* msg, size_t* size, upb_Arena* arena) {
|
|
350
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
351
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
352
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
353
|
+
&field, arena);
|
|
354
|
+
if (size) {
|
|
355
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
356
|
+
}
|
|
357
|
+
return arr;
|
|
358
|
+
}
|
|
220
359
|
|
|
221
360
|
UPB_INLINE void envoy_config_core_v3_ProxyProtocolConfig_set_version(envoy_config_core_v3_ProxyProtocolConfig *msg, int32_t value) {
|
|
222
361
|
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
@@ -235,6 +374,143 @@ UPB_INLINE struct envoy_config_core_v3_ProxyProtocolPassThroughTLVs* envoy_confi
|
|
|
235
374
|
}
|
|
236
375
|
return sub;
|
|
237
376
|
}
|
|
377
|
+
UPB_INLINE envoy_config_core_v3_TlvEntry** envoy_config_core_v3_ProxyProtocolConfig_mutable_added_tlvs(envoy_config_core_v3_ProxyProtocolConfig* msg, size_t* size) {
|
|
378
|
+
upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
379
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
380
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
381
|
+
if (arr) {
|
|
382
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
383
|
+
return (envoy_config_core_v3_TlvEntry**)upb_Array_MutableDataPtr(arr);
|
|
384
|
+
} else {
|
|
385
|
+
if (size) *size = 0;
|
|
386
|
+
return NULL;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
UPB_INLINE envoy_config_core_v3_TlvEntry** envoy_config_core_v3_ProxyProtocolConfig_resize_added_tlvs(envoy_config_core_v3_ProxyProtocolConfig* msg, size_t size, upb_Arena* arena) {
|
|
390
|
+
upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
391
|
+
return (envoy_config_core_v3_TlvEntry**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
392
|
+
&field, size, arena);
|
|
393
|
+
}
|
|
394
|
+
UPB_INLINE struct envoy_config_core_v3_TlvEntry* envoy_config_core_v3_ProxyProtocolConfig_add_added_tlvs(envoy_config_core_v3_ProxyProtocolConfig* msg, upb_Arena* arena) {
|
|
395
|
+
upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
396
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
397
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
398
|
+
UPB_UPCAST(msg), &field, arena);
|
|
399
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
400
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
|
401
|
+
return NULL;
|
|
402
|
+
}
|
|
403
|
+
struct envoy_config_core_v3_TlvEntry* sub = (struct envoy_config_core_v3_TlvEntry*)_upb_Message_New(&envoy__config__core__v3__TlvEntry_msg_init, arena);
|
|
404
|
+
if (!arr || !sub) return NULL;
|
|
405
|
+
UPB_PRIVATE(_upb_Array_Set)
|
|
406
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
|
407
|
+
return sub;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/* envoy.config.core.v3.PerHostConfig */
|
|
411
|
+
|
|
412
|
+
UPB_INLINE envoy_config_core_v3_PerHostConfig* envoy_config_core_v3_PerHostConfig_new(upb_Arena* arena) {
|
|
413
|
+
return (envoy_config_core_v3_PerHostConfig*)_upb_Message_New(&envoy__config__core__v3__PerHostConfig_msg_init, arena);
|
|
414
|
+
}
|
|
415
|
+
UPB_INLINE envoy_config_core_v3_PerHostConfig* envoy_config_core_v3_PerHostConfig_parse(const char* buf, size_t size, upb_Arena* arena) {
|
|
416
|
+
envoy_config_core_v3_PerHostConfig* ret = envoy_config_core_v3_PerHostConfig_new(arena);
|
|
417
|
+
if (!ret) return NULL;
|
|
418
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__core__v3__PerHostConfig_msg_init, NULL, 0, arena) !=
|
|
419
|
+
kUpb_DecodeStatus_Ok) {
|
|
420
|
+
return NULL;
|
|
421
|
+
}
|
|
422
|
+
return ret;
|
|
423
|
+
}
|
|
424
|
+
UPB_INLINE envoy_config_core_v3_PerHostConfig* envoy_config_core_v3_PerHostConfig_parse_ex(const char* buf, size_t size,
|
|
425
|
+
const upb_ExtensionRegistry* extreg,
|
|
426
|
+
int options, upb_Arena* arena) {
|
|
427
|
+
envoy_config_core_v3_PerHostConfig* ret = envoy_config_core_v3_PerHostConfig_new(arena);
|
|
428
|
+
if (!ret) return NULL;
|
|
429
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__core__v3__PerHostConfig_msg_init, extreg, options,
|
|
430
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
|
431
|
+
return NULL;
|
|
432
|
+
}
|
|
433
|
+
return ret;
|
|
434
|
+
}
|
|
435
|
+
UPB_INLINE char* envoy_config_core_v3_PerHostConfig_serialize(const envoy_config_core_v3_PerHostConfig* msg, upb_Arena* arena, size_t* len) {
|
|
436
|
+
char* ptr;
|
|
437
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__core__v3__PerHostConfig_msg_init, 0, arena, &ptr, len);
|
|
438
|
+
return ptr;
|
|
439
|
+
}
|
|
440
|
+
UPB_INLINE char* envoy_config_core_v3_PerHostConfig_serialize_ex(const envoy_config_core_v3_PerHostConfig* msg, int options,
|
|
441
|
+
upb_Arena* arena, size_t* len) {
|
|
442
|
+
char* ptr;
|
|
443
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__core__v3__PerHostConfig_msg_init, options, arena, &ptr, len);
|
|
444
|
+
return ptr;
|
|
445
|
+
}
|
|
446
|
+
UPB_INLINE void envoy_config_core_v3_PerHostConfig_clear_added_tlvs(envoy_config_core_v3_PerHostConfig* msg) {
|
|
447
|
+
const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
448
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
449
|
+
}
|
|
450
|
+
UPB_INLINE const envoy_config_core_v3_TlvEntry* const* envoy_config_core_v3_PerHostConfig_added_tlvs(const envoy_config_core_v3_PerHostConfig* msg, size_t* size) {
|
|
451
|
+
const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
452
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
453
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
454
|
+
if (arr) {
|
|
455
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
456
|
+
return (const envoy_config_core_v3_TlvEntry* const*)upb_Array_DataPtr(arr);
|
|
457
|
+
} else {
|
|
458
|
+
if (size) *size = 0;
|
|
459
|
+
return NULL;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
UPB_INLINE const upb_Array* _envoy_config_core_v3_PerHostConfig_added_tlvs_upb_array(const envoy_config_core_v3_PerHostConfig* msg, size_t* size) {
|
|
463
|
+
const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
464
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
465
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
466
|
+
if (size) {
|
|
467
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
468
|
+
}
|
|
469
|
+
return arr;
|
|
470
|
+
}
|
|
471
|
+
UPB_INLINE upb_Array* _envoy_config_core_v3_PerHostConfig_added_tlvs_mutable_upb_array(envoy_config_core_v3_PerHostConfig* msg, size_t* size, upb_Arena* arena) {
|
|
472
|
+
const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
473
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
474
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
475
|
+
&field, arena);
|
|
476
|
+
if (size) {
|
|
477
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
478
|
+
}
|
|
479
|
+
return arr;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
UPB_INLINE envoy_config_core_v3_TlvEntry** envoy_config_core_v3_PerHostConfig_mutable_added_tlvs(envoy_config_core_v3_PerHostConfig* msg, size_t* size) {
|
|
483
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
484
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
485
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
486
|
+
if (arr) {
|
|
487
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
488
|
+
return (envoy_config_core_v3_TlvEntry**)upb_Array_MutableDataPtr(arr);
|
|
489
|
+
} else {
|
|
490
|
+
if (size) *size = 0;
|
|
491
|
+
return NULL;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
UPB_INLINE envoy_config_core_v3_TlvEntry** envoy_config_core_v3_PerHostConfig_resize_added_tlvs(envoy_config_core_v3_PerHostConfig* msg, size_t size, upb_Arena* arena) {
|
|
495
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
496
|
+
return (envoy_config_core_v3_TlvEntry**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
497
|
+
&field, size, arena);
|
|
498
|
+
}
|
|
499
|
+
UPB_INLINE struct envoy_config_core_v3_TlvEntry* envoy_config_core_v3_PerHostConfig_add_added_tlvs(envoy_config_core_v3_PerHostConfig* msg, upb_Arena* arena) {
|
|
500
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
501
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TlvEntry_msg_init);
|
|
502
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
503
|
+
UPB_UPCAST(msg), &field, arena);
|
|
504
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
505
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
|
506
|
+
return NULL;
|
|
507
|
+
}
|
|
508
|
+
struct envoy_config_core_v3_TlvEntry* sub = (struct envoy_config_core_v3_TlvEntry*)_upb_Message_New(&envoy__config__core__v3__TlvEntry_msg_init, arena);
|
|
509
|
+
if (!arr || !sub) return NULL;
|
|
510
|
+
UPB_PRIVATE(_upb_Array_Set)
|
|
511
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
|
512
|
+
return sub;
|
|
513
|
+
}
|
|
238
514
|
|
|
239
515
|
#ifdef __cplusplus
|
|
240
516
|
} /* extern "C" */
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
#include <stddef.h>
|
|
10
10
|
#include "upb/generated_code_support.h"
|
|
11
11
|
#include "envoy/config/core/v3/proxy_protocol.upb_minitable.h"
|
|
12
|
+
#include "envoy/config/core/v3/substitution_format_string.upb_minitable.h"
|
|
12
13
|
#include "udpa/annotations/status.upb_minitable.h"
|
|
13
14
|
#include "validate/validate.upb_minitable.h"
|
|
14
15
|
|
|
@@ -37,39 +38,93 @@ const upb_MiniTable envoy__config__core__v3__ProxyProtocolPassThroughTLVs_msg_in
|
|
|
37
38
|
};
|
|
38
39
|
|
|
39
40
|
const upb_MiniTable* envoy__config__core__v3__ProxyProtocolPassThroughTLVs_msg_init_ptr = &envoy__config__core__v3__ProxyProtocolPassThroughTLVs_msg_init;
|
|
40
|
-
static const upb_MiniTableSubInternal
|
|
41
|
+
static const upb_MiniTableSubInternal envoy_config_core_v3_TlvEntry__submsgs[1] = {
|
|
42
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__SubstitutionFormatString_msg_init_ptr},
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
static const upb_MiniTableField envoy_config_core_v3_TlvEntry__fields[3] = {
|
|
46
|
+
{1, 12, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
|
47
|
+
{2, UPB_SIZE(20, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
48
|
+
{3, UPB_SIZE(16, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
const upb_MiniTable envoy__config__core__v3__TlvEntry_msg_init = {
|
|
52
|
+
&envoy_config_core_v3_TlvEntry__submsgs[0],
|
|
53
|
+
&envoy_config_core_v3_TlvEntry__fields[0],
|
|
54
|
+
UPB_SIZE(32, 40), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
|
|
55
|
+
#ifdef UPB_TRACING_ENABLED
|
|
56
|
+
"envoy.config.core.v3.TlvEntry",
|
|
57
|
+
#endif
|
|
58
|
+
UPB_FASTTABLE_INIT({
|
|
59
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
60
|
+
{0x000c00003f000008, &upb_psv4_1bt},
|
|
61
|
+
{0x001000003f000012, &upb_psb_1bt},
|
|
62
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
63
|
+
})
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const upb_MiniTable* envoy__config__core__v3__TlvEntry_msg_init_ptr = &envoy__config__core__v3__TlvEntry_msg_init;
|
|
67
|
+
static const upb_MiniTableSubInternal envoy_config_core_v3_ProxyProtocolConfig__submsgs[2] = {
|
|
41
68
|
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__ProxyProtocolPassThroughTLVs_msg_init_ptr},
|
|
69
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__TlvEntry_msg_init_ptr},
|
|
42
70
|
};
|
|
43
71
|
|
|
44
|
-
static const upb_MiniTableField envoy_config_core_v3_ProxyProtocolConfig__fields[
|
|
72
|
+
static const upb_MiniTableField envoy_config_core_v3_ProxyProtocolConfig__fields[3] = {
|
|
45
73
|
{1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
|
46
74
|
{2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
75
|
+
{3, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
47
76
|
};
|
|
48
77
|
|
|
49
78
|
const upb_MiniTable envoy__config__core__v3__ProxyProtocolConfig_msg_init = {
|
|
50
79
|
&envoy_config_core_v3_ProxyProtocolConfig__submsgs[0],
|
|
51
80
|
&envoy_config_core_v3_ProxyProtocolConfig__fields[0],
|
|
52
|
-
24,
|
|
81
|
+
UPB_SIZE(24, 32), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
|
|
53
82
|
#ifdef UPB_TRACING_ENABLED
|
|
54
83
|
"envoy.config.core.v3.ProxyProtocolConfig",
|
|
55
84
|
#endif
|
|
56
85
|
UPB_FASTTABLE_INIT({
|
|
57
86
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
58
87
|
{0x000c00003f000008, &upb_psv4_1bt},
|
|
88
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
89
|
+
{0x001800003f01001a, &upb_prm_1bt_max64b},
|
|
59
90
|
})
|
|
60
91
|
};
|
|
61
92
|
|
|
62
93
|
const upb_MiniTable* envoy__config__core__v3__ProxyProtocolConfig_msg_init_ptr = &envoy__config__core__v3__ProxyProtocolConfig_msg_init;
|
|
63
|
-
static const
|
|
94
|
+
static const upb_MiniTableSubInternal envoy_config_core_v3_PerHostConfig__submsgs[1] = {
|
|
95
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__TlvEntry_msg_init_ptr},
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
static const upb_MiniTableField envoy_config_core_v3_PerHostConfig__fields[1] = {
|
|
99
|
+
{1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
const upb_MiniTable envoy__config__core__v3__PerHostConfig_msg_init = {
|
|
103
|
+
&envoy_config_core_v3_PerHostConfig__submsgs[0],
|
|
104
|
+
&envoy_config_core_v3_PerHostConfig__fields[0],
|
|
105
|
+
16, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
|
|
106
|
+
#ifdef UPB_TRACING_ENABLED
|
|
107
|
+
"envoy.config.core.v3.PerHostConfig",
|
|
108
|
+
#endif
|
|
109
|
+
UPB_FASTTABLE_INIT({
|
|
110
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
111
|
+
{0x000800003f00000a, &upb_prm_1bt_max64b},
|
|
112
|
+
})
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
const upb_MiniTable* envoy__config__core__v3__PerHostConfig_msg_init_ptr = &envoy__config__core__v3__PerHostConfig_msg_init;
|
|
116
|
+
static const upb_MiniTable *messages_layout[4] = {
|
|
64
117
|
&envoy__config__core__v3__ProxyProtocolPassThroughTLVs_msg_init,
|
|
118
|
+
&envoy__config__core__v3__TlvEntry_msg_init,
|
|
65
119
|
&envoy__config__core__v3__ProxyProtocolConfig_msg_init,
|
|
120
|
+
&envoy__config__core__v3__PerHostConfig_msg_init,
|
|
66
121
|
};
|
|
67
122
|
|
|
68
123
|
const upb_MiniTableFile envoy_config_core_v3_proxy_protocol_proto_upb_file_layout = {
|
|
69
124
|
messages_layout,
|
|
70
125
|
NULL,
|
|
71
126
|
NULL,
|
|
72
|
-
|
|
127
|
+
4,
|
|
73
128
|
0,
|
|
74
129
|
0,
|
|
75
130
|
};
|
|
@@ -20,8 +20,12 @@ extern "C" {
|
|
|
20
20
|
|
|
21
21
|
extern const upb_MiniTable envoy__config__core__v3__ProxyProtocolPassThroughTLVs_msg_init;
|
|
22
22
|
extern const upb_MiniTable* envoy__config__core__v3__ProxyProtocolPassThroughTLVs_msg_init_ptr;
|
|
23
|
+
extern const upb_MiniTable envoy__config__core__v3__TlvEntry_msg_init;
|
|
24
|
+
extern const upb_MiniTable* envoy__config__core__v3__TlvEntry_msg_init_ptr;
|
|
23
25
|
extern const upb_MiniTable envoy__config__core__v3__ProxyProtocolConfig_msg_init;
|
|
24
26
|
extern const upb_MiniTable* envoy__config__core__v3__ProxyProtocolConfig_msg_init_ptr;
|
|
27
|
+
extern const upb_MiniTable envoy__config__core__v3__PerHostConfig_msg_init;
|
|
28
|
+
extern const upb_MiniTable* envoy__config__core__v3__PerHostConfig_msg_init_ptr;
|
|
25
29
|
|
|
26
30
|
extern const upb_MiniTableFile envoy_config_core_v3_proxy_protocol_proto_upb_file_layout;
|
|
27
31
|
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
#include "envoy/config/core/v3/config_source.upb_minitable.h"
|
|
19
19
|
#include "envoy/config/core/v3/health_check.upb_minitable.h"
|
|
20
20
|
#include "google/protobuf/wrappers.upb_minitable.h"
|
|
21
|
+
#include "xds/core/v3/collection_entry.upb_minitable.h"
|
|
22
|
+
#include "envoy/annotations/deprecation.upb_minitable.h"
|
|
21
23
|
#include "udpa/annotations/status.upb_minitable.h"
|
|
22
24
|
#include "udpa/annotations/versioning.upb_minitable.h"
|
|
23
25
|
#include "validate/validate.upb_minitable.h"
|
|
@@ -33,6 +35,7 @@ typedef struct envoy_config_endpoint_v3_Endpoint { upb_Message UPB_PRIVATE(base)
|
|
|
33
35
|
typedef struct envoy_config_endpoint_v3_Endpoint_HealthCheckConfig { upb_Message UPB_PRIVATE(base); } envoy_config_endpoint_v3_Endpoint_HealthCheckConfig;
|
|
34
36
|
typedef struct envoy_config_endpoint_v3_Endpoint_AdditionalAddress { upb_Message UPB_PRIVATE(base); } envoy_config_endpoint_v3_Endpoint_AdditionalAddress;
|
|
35
37
|
typedef struct envoy_config_endpoint_v3_LbEndpoint { upb_Message UPB_PRIVATE(base); } envoy_config_endpoint_v3_LbEndpoint;
|
|
38
|
+
typedef struct envoy_config_endpoint_v3_LbEndpointCollection { upb_Message UPB_PRIVATE(base); } envoy_config_endpoint_v3_LbEndpointCollection;
|
|
36
39
|
typedef struct envoy_config_endpoint_v3_LedsClusterLocalityConfig { upb_Message UPB_PRIVATE(base); } envoy_config_endpoint_v3_LedsClusterLocalityConfig;
|
|
37
40
|
typedef struct envoy_config_endpoint_v3_LocalityLbEndpoints { upb_Message UPB_PRIVATE(base); } envoy_config_endpoint_v3_LocalityLbEndpoints;
|
|
38
41
|
typedef struct envoy_config_endpoint_v3_LocalityLbEndpoints_LbEndpointList { upb_Message UPB_PRIVATE(base); } envoy_config_endpoint_v3_LocalityLbEndpoints_LbEndpointList;
|
|
@@ -41,6 +44,7 @@ struct envoy_config_core_v3_ConfigSource;
|
|
|
41
44
|
struct envoy_config_core_v3_Locality;
|
|
42
45
|
struct envoy_config_core_v3_Metadata;
|
|
43
46
|
struct google_protobuf_UInt32Value;
|
|
47
|
+
struct xds_core_v3_CollectionEntry;
|
|
44
48
|
|
|
45
49
|
|
|
46
50
|
|
|
@@ -587,6 +591,74 @@ UPB_INLINE void envoy_config_endpoint_v3_LbEndpoint_set_endpoint_name(envoy_conf
|
|
|
587
591
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
588
592
|
}
|
|
589
593
|
|
|
594
|
+
/* envoy.config.endpoint.v3.LbEndpointCollection */
|
|
595
|
+
|
|
596
|
+
UPB_INLINE envoy_config_endpoint_v3_LbEndpointCollection* envoy_config_endpoint_v3_LbEndpointCollection_new(upb_Arena* arena) {
|
|
597
|
+
return (envoy_config_endpoint_v3_LbEndpointCollection*)_upb_Message_New(&envoy__config__endpoint__v3__LbEndpointCollection_msg_init, arena);
|
|
598
|
+
}
|
|
599
|
+
UPB_INLINE envoy_config_endpoint_v3_LbEndpointCollection* envoy_config_endpoint_v3_LbEndpointCollection_parse(const char* buf, size_t size, upb_Arena* arena) {
|
|
600
|
+
envoy_config_endpoint_v3_LbEndpointCollection* ret = envoy_config_endpoint_v3_LbEndpointCollection_new(arena);
|
|
601
|
+
if (!ret) return NULL;
|
|
602
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__endpoint__v3__LbEndpointCollection_msg_init, NULL, 0, arena) !=
|
|
603
|
+
kUpb_DecodeStatus_Ok) {
|
|
604
|
+
return NULL;
|
|
605
|
+
}
|
|
606
|
+
return ret;
|
|
607
|
+
}
|
|
608
|
+
UPB_INLINE envoy_config_endpoint_v3_LbEndpointCollection* envoy_config_endpoint_v3_LbEndpointCollection_parse_ex(const char* buf, size_t size,
|
|
609
|
+
const upb_ExtensionRegistry* extreg,
|
|
610
|
+
int options, upb_Arena* arena) {
|
|
611
|
+
envoy_config_endpoint_v3_LbEndpointCollection* ret = envoy_config_endpoint_v3_LbEndpointCollection_new(arena);
|
|
612
|
+
if (!ret) return NULL;
|
|
613
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__endpoint__v3__LbEndpointCollection_msg_init, extreg, options,
|
|
614
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
|
615
|
+
return NULL;
|
|
616
|
+
}
|
|
617
|
+
return ret;
|
|
618
|
+
}
|
|
619
|
+
UPB_INLINE char* envoy_config_endpoint_v3_LbEndpointCollection_serialize(const envoy_config_endpoint_v3_LbEndpointCollection* msg, upb_Arena* arena, size_t* len) {
|
|
620
|
+
char* ptr;
|
|
621
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__endpoint__v3__LbEndpointCollection_msg_init, 0, arena, &ptr, len);
|
|
622
|
+
return ptr;
|
|
623
|
+
}
|
|
624
|
+
UPB_INLINE char* envoy_config_endpoint_v3_LbEndpointCollection_serialize_ex(const envoy_config_endpoint_v3_LbEndpointCollection* msg, int options,
|
|
625
|
+
upb_Arena* arena, size_t* len) {
|
|
626
|
+
char* ptr;
|
|
627
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__endpoint__v3__LbEndpointCollection_msg_init, options, arena, &ptr, len);
|
|
628
|
+
return ptr;
|
|
629
|
+
}
|
|
630
|
+
UPB_INLINE void envoy_config_endpoint_v3_LbEndpointCollection_clear_entries(envoy_config_endpoint_v3_LbEndpointCollection* msg) {
|
|
631
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
632
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
633
|
+
}
|
|
634
|
+
UPB_INLINE const struct xds_core_v3_CollectionEntry* envoy_config_endpoint_v3_LbEndpointCollection_entries(const envoy_config_endpoint_v3_LbEndpointCollection* msg) {
|
|
635
|
+
const struct xds_core_v3_CollectionEntry* default_val = NULL;
|
|
636
|
+
const struct xds_core_v3_CollectionEntry* ret;
|
|
637
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
638
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&xds__core__v3__CollectionEntry_msg_init);
|
|
639
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
640
|
+
&default_val, &ret);
|
|
641
|
+
return ret;
|
|
642
|
+
}
|
|
643
|
+
UPB_INLINE bool envoy_config_endpoint_v3_LbEndpointCollection_has_entries(const envoy_config_endpoint_v3_LbEndpointCollection* msg) {
|
|
644
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
645
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
UPB_INLINE void envoy_config_endpoint_v3_LbEndpointCollection_set_entries(envoy_config_endpoint_v3_LbEndpointCollection *msg, struct xds_core_v3_CollectionEntry* value) {
|
|
649
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
650
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&xds__core__v3__CollectionEntry_msg_init);
|
|
651
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
652
|
+
}
|
|
653
|
+
UPB_INLINE struct xds_core_v3_CollectionEntry* envoy_config_endpoint_v3_LbEndpointCollection_mutable_entries(envoy_config_endpoint_v3_LbEndpointCollection* msg, upb_Arena* arena) {
|
|
654
|
+
struct xds_core_v3_CollectionEntry* sub = (struct xds_core_v3_CollectionEntry*)envoy_config_endpoint_v3_LbEndpointCollection_entries(msg);
|
|
655
|
+
if (sub == NULL) {
|
|
656
|
+
sub = (struct xds_core_v3_CollectionEntry*)_upb_Message_New(&xds__core__v3__CollectionEntry_msg_init, arena);
|
|
657
|
+
if (sub) envoy_config_endpoint_v3_LbEndpointCollection_set_entries(msg, sub);
|
|
658
|
+
}
|
|
659
|
+
return sub;
|
|
660
|
+
}
|
|
661
|
+
|
|
590
662
|
/* envoy.config.endpoint.v3.LedsClusterLocalityConfig */
|
|
591
663
|
|
|
592
664
|
UPB_INLINE envoy_config_endpoint_v3_LedsClusterLocalityConfig* envoy_config_endpoint_v3_LedsClusterLocalityConfig_new(upb_Arena* arena) {
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
#include "envoy/config/core/v3/config_source.upb_minitable.h"
|
|
15
15
|
#include "envoy/config/core/v3/health_check.upb_minitable.h"
|
|
16
16
|
#include "google/protobuf/wrappers.upb_minitable.h"
|
|
17
|
+
#include "xds/core/v3/collection_entry.upb_minitable.h"
|
|
18
|
+
#include "envoy/annotations/deprecation.upb_minitable.h"
|
|
17
19
|
#include "udpa/annotations/status.upb_minitable.h"
|
|
18
20
|
#include "udpa/annotations/versioning.upb_minitable.h"
|
|
19
21
|
#include "validate/validate.upb_minitable.h"
|
|
@@ -138,6 +140,24 @@ const upb_MiniTable envoy__config__endpoint__v3__LbEndpoint_msg_init = {
|
|
|
138
140
|
};
|
|
139
141
|
|
|
140
142
|
const upb_MiniTable* envoy__config__endpoint__v3__LbEndpoint_msg_init_ptr = &envoy__config__endpoint__v3__LbEndpoint_msg_init;
|
|
143
|
+
static const upb_MiniTableSubInternal envoy_config_endpoint_v3_LbEndpointCollection__submsgs[1] = {
|
|
144
|
+
{.UPB_PRIVATE(submsg) = &xds__core__v3__CollectionEntry_msg_init_ptr},
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
static const upb_MiniTableField envoy_config_endpoint_v3_LbEndpointCollection__fields[1] = {
|
|
148
|
+
{1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
const upb_MiniTable envoy__config__endpoint__v3__LbEndpointCollection_msg_init = {
|
|
152
|
+
&envoy_config_endpoint_v3_LbEndpointCollection__submsgs[0],
|
|
153
|
+
&envoy_config_endpoint_v3_LbEndpointCollection__fields[0],
|
|
154
|
+
UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(255), 0,
|
|
155
|
+
#ifdef UPB_TRACING_ENABLED
|
|
156
|
+
"envoy.config.endpoint.v3.LbEndpointCollection",
|
|
157
|
+
#endif
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
const upb_MiniTable* envoy__config__endpoint__v3__LbEndpointCollection_msg_init_ptr = &envoy__config__endpoint__v3__LbEndpointCollection_msg_init;
|
|
141
161
|
static const upb_MiniTableSubInternal envoy_config_endpoint_v3_LedsClusterLocalityConfig__submsgs[1] = {
|
|
142
162
|
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__ConfigSource_msg_init_ptr},
|
|
143
163
|
};
|
|
@@ -234,11 +254,12 @@ const upb_MiniTable envoy__config__endpoint__v3__LocalityLbEndpoints__LbEndpoint
|
|
|
234
254
|
};
|
|
235
255
|
|
|
236
256
|
const upb_MiniTable* envoy__config__endpoint__v3__LocalityLbEndpoints__LbEndpointList_msg_init_ptr = &envoy__config__endpoint__v3__LocalityLbEndpoints__LbEndpointList_msg_init;
|
|
237
|
-
static const upb_MiniTable *messages_layout[
|
|
257
|
+
static const upb_MiniTable *messages_layout[8] = {
|
|
238
258
|
&envoy__config__endpoint__v3__Endpoint_msg_init,
|
|
239
259
|
&envoy__config__endpoint__v3__Endpoint__HealthCheckConfig_msg_init,
|
|
240
260
|
&envoy__config__endpoint__v3__Endpoint__AdditionalAddress_msg_init,
|
|
241
261
|
&envoy__config__endpoint__v3__LbEndpoint_msg_init,
|
|
262
|
+
&envoy__config__endpoint__v3__LbEndpointCollection_msg_init,
|
|
242
263
|
&envoy__config__endpoint__v3__LedsClusterLocalityConfig_msg_init,
|
|
243
264
|
&envoy__config__endpoint__v3__LocalityLbEndpoints_msg_init,
|
|
244
265
|
&envoy__config__endpoint__v3__LocalityLbEndpoints__LbEndpointList_msg_init,
|
|
@@ -248,7 +269,7 @@ const upb_MiniTableFile envoy_config_endpoint_v3_endpoint_components_proto_upb_f
|
|
|
248
269
|
messages_layout,
|
|
249
270
|
NULL,
|
|
250
271
|
NULL,
|
|
251
|
-
|
|
272
|
+
8,
|
|
252
273
|
0,
|
|
253
274
|
0,
|
|
254
275
|
};
|
|
@@ -26,6 +26,8 @@ extern const upb_MiniTable envoy__config__endpoint__v3__Endpoint__AdditionalAddr
|
|
|
26
26
|
extern const upb_MiniTable* envoy__config__endpoint__v3__Endpoint__AdditionalAddress_msg_init_ptr;
|
|
27
27
|
extern const upb_MiniTable envoy__config__endpoint__v3__LbEndpoint_msg_init;
|
|
28
28
|
extern const upb_MiniTable* envoy__config__endpoint__v3__LbEndpoint_msg_init_ptr;
|
|
29
|
+
extern const upb_MiniTable envoy__config__endpoint__v3__LbEndpointCollection_msg_init;
|
|
30
|
+
extern const upb_MiniTable* envoy__config__endpoint__v3__LbEndpointCollection_msg_init_ptr;
|
|
29
31
|
extern const upb_MiniTable envoy__config__endpoint__v3__LedsClusterLocalityConfig_msg_init;
|
|
30
32
|
extern const upb_MiniTable* envoy__config__endpoint__v3__LedsClusterLocalityConfig_msg_init_ptr;
|
|
31
33
|
extern const upb_MiniTable envoy__config__endpoint__v3__LocalityLbEndpoints_msg_init;
|