grpc 1.71.0 → 1.72.0
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 +78 -75
- data/include/grpc/event_engine/memory_request.h +3 -3
- data/include/grpc/impl/channel_arg_names.h +70 -50
- data/include/grpc/support/workaround_list.h +1 -4
- data/src/core/{lib/transport → call}/call_arena_allocator.cc +1 -1
- data/src/core/{lib/transport → call}/call_arena_allocator.h +3 -3
- data/src/core/{lib/transport → call}/call_destination.h +4 -4
- data/src/core/{lib/transport → call}/call_filters.cc +2 -2
- data/src/core/{lib/transport → call}/call_filters.h +25 -6
- data/src/core/{lib/channel → call}/call_finalization.h +3 -3
- data/src/core/{lib/transport → call}/call_spine.cc +1 -1
- data/src/core/{lib/transport → call}/call_spine.h +68 -26
- data/src/core/{lib/transport → call}/call_state.cc +1 -1
- data/src/core/{lib/transport → call}/call_state.h +3 -3
- data/src/core/{lib/surface → call}/client_call.cc +9 -7
- data/src/core/{lib/surface → call}/client_call.h +4 -4
- data/src/core/{lib/transport → call}/custom_metadata.h +3 -3
- data/src/core/{lib/transport → call}/interception_chain.cc +5 -5
- data/src/core/{lib/transport → call}/interception_chain.h +7 -7
- data/src/core/{lib/transport → call}/message.cc +1 -1
- data/src/core/{lib/transport → call}/message.h +7 -3
- data/src/core/{lib/transport → call}/metadata.cc +2 -2
- data/src/core/{lib/transport → call}/metadata.h +4 -4
- data/src/core/{lib/transport → call}/metadata_batch.cc +1 -1
- data/src/core/{lib/transport → call}/metadata_batch.h +7 -7
- data/src/core/{lib/transport → call}/metadata_compression_traits.h +3 -3
- data/src/core/{lib/transport → call}/metadata_info.cc +27 -9
- data/src/core/{lib/transport → call}/metadata_info.h +4 -4
- data/src/core/{lib/transport → call}/parsed_metadata.cc +1 -1
- data/src/core/{lib/transport → call}/parsed_metadata.h +3 -3
- data/src/core/call/request_buffer.h +3 -3
- data/src/core/call/security_context.cc +125 -0
- data/src/core/call/security_context.h +114 -0
- data/src/core/{lib/surface → call}/server_call.cc +3 -3
- data/src/core/{lib/surface → call}/server_call.h +5 -5
- data/src/core/{lib/transport → call}/simple_slice_based_metadata.h +4 -4
- data/src/core/{lib/channel → call}/status_util.cc +1 -1
- data/src/core/{lib/channel → call}/status_util.h +3 -3
- data/src/core/client_channel/client_channel.cc +24 -16
- data/src/core/client_channel/client_channel.h +4 -3
- data/src/core/client_channel/client_channel_filter.cc +10 -20
- data/src/core/client_channel/client_channel_filter.h +1 -1
- data/src/core/client_channel/client_channel_internal.h +1 -1
- data/src/core/client_channel/config_selector.h +2 -2
- data/src/core/client_channel/direct_channel.cc +2 -2
- data/src/core/client_channel/dynamic_filters.cc +0 -1
- data/src/core/client_channel/dynamic_filters.h +0 -1
- data/src/core/client_channel/lb_metadata.h +1 -1
- data/src/core/client_channel/load_balanced_call_destination.cc +1 -1
- data/src/core/client_channel/load_balanced_call_destination.h +1 -1
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +43 -41
- data/src/core/client_channel/retry_filter_legacy_call_data.h +6 -6
- data/src/core/client_channel/retry_interceptor.h +1 -1
- data/src/core/client_channel/retry_service_config.cc +1 -1
- data/src/core/client_channel/retry_service_config.h +1 -1
- data/src/core/client_channel/retry_throttle.cc +30 -34
- data/src/core/client_channel/retry_throttle.h +10 -2
- data/src/core/client_channel/subchannel.cc +7 -8
- data/src/core/client_channel/subchannel.h +1 -2
- data/src/core/client_channel/subchannel_stream_client.cc +14 -11
- data/src/core/client_channel/subchannel_stream_client.h +2 -2
- data/src/core/config/core_configuration.h +2 -2
- data/src/core/credentials/call/call_credentials.h +157 -0
- data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.cc +4 -4
- data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.h +4 -4
- data/src/core/{lib/security/credentials/composite/composite_credentials.cc → credentials/call/composite/composite_call_credentials.cc} +4 -57
- data/src/core/credentials/call/composite/composite_call_credentials.h +82 -0
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.cc +6 -6
- data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.h +4 -4
- data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.cc +3 -2
- data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.h +4 -4
- data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +3 -2
- data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.h +6 -6
- data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.h +4 -4
- data/src/core/{lib/security/util → credentials/call}/json_util.cc +1 -1
- data/src/core/{lib/security/util → credentials/call}/json_util.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.cc +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.cc +3 -2
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.cc +4 -3
- data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.cc +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.cc +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_linux.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_no_op.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_windows.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_client_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_server_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry_init.cc +21 -17
- data/src/core/credentials/transport/composite/composite_channel_credentials.cc +68 -0
- data/src/core/{lib/security/credentials/composite/composite_credentials.h → credentials/transport/composite/composite_channel_credentials.h} +6 -51
- data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.cc +4 -26
- data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.h +5 -37
- data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.cc +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/google_default/credentials_generic.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.cc +31 -19
- data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.cc +2 -2
- data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.cc +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.h +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.cc +2 -2
- data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.h +6 -6
- data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.cc +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.h +4 -4
- data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_factory.h +3 -3
- data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.cc +1 -1
- data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_match.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.h +7 -7
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.h +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots.h +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_fallback.cc +1 -1
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.cc +2 -2
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.h +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_windows.cc +1 -1
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.cc +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.cc +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.cc +6 -6
- data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.h +6 -6
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.h +3 -3
- data/src/core/{lib/security/credentials/credentials.cc → credentials/transport/transport_credentials.cc} +1 -3
- data/src/core/{lib/security/credentials/credentials.h → credentials/transport/transport_credentials.h} +5 -121
- data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.cc +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.h +6 -6
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +8 -5
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +2 -2
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +2 -2
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +2 -2
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.h +1 -1
- data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
- data/src/core/ext/filters/rbac/rbac_filter.cc +2 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +1 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +3 -3
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +8 -5
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +5 -1
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +1 -3
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +58 -57
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +3 -3
- data/src/core/ext/transport/chttp2/transport/frame.cc +89 -68
- data/src/core/ext/transport/chttp2/transport/frame.h +37 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +2 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +6 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +4 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +10 -8
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_status.h +52 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +11 -14
- data/src/core/ext/transport/chttp2/transport/parsing.cc +36 -23
- data/src/core/ext/transport/chttp2/transport/writing.cc +15 -14
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -1
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +1 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +65 -65
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +28 -28
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +14 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +133 -133
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +71 -71
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +26 -26
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +216 -218
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +66 -66
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +27 -27
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +326 -328
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +103 -103
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +58 -58
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +22 -24
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +29 -29
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +186 -192
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +54 -54
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +54 -54
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +21 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +59 -61
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +100 -100
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +34 -34
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +12 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +118 -118
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +39 -39
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +19 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +27 -27
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +12 -14
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +41 -41
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +24 -24
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +139 -139
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +46 -46
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +61 -61
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +20 -20
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +33 -33
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +12 -14
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +52 -54
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +620 -626
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +215 -215
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +13 -13
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +15 -15
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +16 -16
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +306 -312
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +96 -96
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +61 -61
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +27 -27
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +19 -19
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +25 -25
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +34 -34
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +294 -294
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +105 -105
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +23 -23
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +84 -84
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +28 -28
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +87 -87
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +31 -31
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +24 -24
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +130 -132
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +43 -43
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +60 -60
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +26 -26
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +11 -11
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +85 -89
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +20 -20
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +80 -83
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +27 -27
- data/src/core/ext/upb-gen/google/api/http.upb.h +51 -51
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +22 -22
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +327 -301
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +97 -85
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +9 -11
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +9 -10
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +110 -113
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +25 -25
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +6 -6
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +21 -22
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +70 -72
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +17 -17
- data/src/core/ext/upb-gen/validate/validate.upb.h +368 -368
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +117 -117
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +9 -10
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +7 -7
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +12 -12
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +27 -30
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +7 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +22 -24
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +3 -3
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +98 -87
- data/src/core/{lib/security/transport → filter/auth}/auth_filters.h +8 -7
- data/src/core/{lib/security/transport → filter/auth}/client_auth_filter.cc +7 -6
- data/src/core/{lib/security/transport → filter/auth}/server_auth_filter.cc +5 -4
- data/src/core/handshaker/handshaker.cc +0 -8
- data/src/core/handshaker/security/security_handshaker.cc +1 -1
- data/src/core/handshaker/security/security_handshaker.h +1 -1
- data/src/core/lib/channel/channel_args.h +49 -30
- data/src/core/lib/channel/channel_stack.h +1 -2
- data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -1
- data/src/core/lib/channel/connected_channel.cc +2 -2
- data/src/core/lib/channel/promise_based_filter.h +3 -3
- data/src/core/lib/debug/trace_flags.cc +2 -4
- data/src/core/lib/debug/trace_flags.h +1 -2
- data/src/core/lib/event_engine/default_event_engine_factory.cc +6 -6
- data/src/core/lib/event_engine/default_event_engine_factory.h +1 -1
- data/src/core/lib/event_engine/extensions/iomgr_compatible.h +39 -0
- data/src/core/lib/event_engine/extensions/supports_win_sockets.h +48 -0
- data/src/core/lib/event_engine/extensions/tcp_trace.h +1 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +0 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +1 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +26 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +4 -0
- data/src/core/lib/event_engine/posix_engine/set_socket_dualstack.cc +64 -0
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +0 -11
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +10 -2
- data/src/core/lib/event_engine/shim.cc +9 -16
- data/src/core/lib/event_engine/shim.h +11 -0
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +15 -7
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +2 -1
- data/src/core/lib/event_engine/windows/win_socket.cc +11 -0
- data/src/core/lib/event_engine/windows/win_socket.h +3 -0
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +5 -10
- data/src/core/lib/event_engine/windows/windows_engine.cc +42 -0
- data/src/core/lib/event_engine/windows/windows_engine.h +8 -2
- data/src/core/lib/event_engine/windows/windows_listener.cc +5 -6
- data/src/core/lib/event_engine/windows/windows_listener.h +9 -4
- data/src/core/lib/experiments/experiments.cc +174 -21
- data/src/core/lib/experiments/experiments.h +70 -13
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +43 -16
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +43 -8
- data/src/core/lib/iomgr/error.cc +27 -43
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +13 -1
- data/src/core/lib/iomgr/ev_poll_posix.cc +13 -0
- data/src/core/lib/iomgr/polling_entity.cc +2 -7
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +22 -11
- data/src/core/lib/iomgr/socket_utils_posix.h +12 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -9
- data/src/core/lib/iomgr/tcp_client_posix.cc +11 -15
- data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_posix.cc +58 -31
- data/src/core/lib/iomgr/tcp_posix.h +10 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +9 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -4
- data/src/core/lib/iomgr/tcp_server_windows.cc +27 -16
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +10 -2
- data/src/core/lib/promise/all_ok.h +31 -0
- data/src/core/lib/promise/loop.h +8 -5
- data/src/core/lib/promise/map.h +65 -2
- data/src/core/lib/promise/party.h +5 -1
- data/src/core/lib/promise/poll.h +22 -20
- data/src/core/lib/promise/promise.h +2 -2
- data/src/core/lib/promise/status_flag.h +23 -11
- data/src/core/lib/security/authorization/evaluate_args.cc +1 -1
- data/src/core/lib/security/authorization/evaluate_args.h +1 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -1
- data/src/core/lib/slice/slice.h +6 -0
- data/src/core/lib/surface/call.cc +20 -18
- data/src/core/lib/surface/call_utils.cc +3 -3
- data/src/core/lib/surface/call_utils.h +3 -3
- data/src/core/lib/surface/channel.h +2 -2
- data/src/core/lib/surface/channel_init.h +2 -2
- data/src/core/lib/surface/completion_queue.cc +77 -17
- data/src/core/lib/surface/filter_stack_call.cc +40 -27
- data/src/core/lib/surface/filter_stack_call.h +1 -1
- data/src/core/lib/surface/init.cc +2 -3
- data/src/core/lib/surface/lame_client.cc +1 -1
- data/src/core/lib/surface/legacy_channel.cc +27 -23
- data/src/core/lib/surface/legacy_channel.h +1 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/error_utils.cc +65 -11
- data/src/core/lib/transport/error_utils.h +2 -2
- data/src/core/lib/transport/status_conversion.cc +16 -14
- data/src/core/lib/transport/status_conversion.h +5 -4
- data/src/core/lib/transport/transport.h +5 -5
- data/src/core/lib/transport/transport_op_string.cc +1 -1
- data/src/core/load_balancing/delegating_helper.h +1 -1
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +1 -1
- data/src/core/load_balancing/grpclb/grpclb.cc +1 -2
- data/src/core/load_balancing/pick_first/pick_first.cc +0 -955
- data/src/core/load_balancing/rls/rls.cc +31 -37
- data/src/core/load_balancing/weighted_target/weighted_target.cc +1 -1
- data/src/core/load_balancing/xds/cds.cc +3 -10
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +1 -1
- data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -0
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -2
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +1 -3
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -0
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +1 -1
- data/src/core/resolver/xds/xds_dependency_manager.cc +8 -3
- data/src/core/resolver/xds/xds_resolver.cc +2 -2
- data/src/core/server/server.cc +7 -4
- data/src/core/server/server.h +1 -1
- data/src/core/server/server_call_tracer_filter.cc +1 -1
- data/src/core/server/server_config_selector.h +1 -1
- data/src/core/server/server_config_selector_filter.cc +1 -1
- data/src/core/server/xds_server_config_fetcher.cc +5 -5
- data/src/core/service_config/service_config_channel_arg_filter.cc +1 -1
- data/src/core/telemetry/call_tracer.cc +2 -4
- data/src/core/telemetry/call_tracer.h +3 -3
- data/src/core/telemetry/metrics.cc +30 -12
- data/src/core/telemetry/metrics.h +15 -3
- data/src/core/telemetry/stats_data.cc +75 -2
- data/src/core/telemetry/stats_data.h +46 -4
- data/src/core/telemetry/tcp_tracer.h +90 -84
- data/src/core/{lib/security/context/security_context.cc → transport/auth_context.cc} +1 -96
- data/src/core/{lib/security/context/security_context.h → transport/auth_context.h} +6 -76
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -1
- data/src/core/tsi/ssl_transport_security.cc +1 -1
- data/src/core/util/check_class_size.h +48 -0
- data/src/core/util/gcp_metadata_query.cc +1 -1
- data/src/core/util/http_client/httpcli.cc +3 -3
- data/src/core/util/http_client/httpcli_security_connector.cc +3 -3
- data/src/core/util/load_file.cc +26 -14
- data/src/core/util/status_helper.cc +86 -63
- data/src/core/util/status_helper.h +9 -26
- data/src/core/xds/grpc/certificate_provider_store.cc +1 -1
- data/src/core/xds/grpc/certificate_provider_store.h +3 -3
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +3 -3
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +1 -1
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +10 -7
- data/src/core/xds/grpc/xds_certificate_provider.cc +1 -1
- data/src/core/xds/grpc/xds_certificate_provider.h +2 -2
- data/src/core/xds/grpc/xds_client_grpc.cc +7 -6
- data/src/core/xds/grpc/xds_client_grpc.h +4 -2
- data/src/core/xds/grpc/xds_cluster.h +3 -3
- data/src/core/xds/grpc/xds_cluster_parser.cc +3 -2
- data/src/core/xds/grpc/xds_http_fault_filter.cc +1 -1
- data/src/core/xds/grpc/xds_http_filter.h +1 -1
- data/src/core/xds/grpc/xds_http_filter_registry.h +1 -1
- data/src/core/xds/grpc/xds_route_config.h +1 -1
- data/src/core/xds/grpc/xds_route_config_parser.cc +1 -1
- data/src/core/xds/grpc/xds_route_config_parser.h +1 -1
- data/src/core/xds/grpc/xds_routing.h +1 -1
- data/src/core/xds/grpc/xds_server_grpc.cc +60 -48
- data/src/core/xds/grpc/xds_server_grpc.h +23 -13
- data/src/core/xds/grpc/xds_server_grpc_interface.h +2 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +5 -5
- data/src/core/xds/grpc/xds_transport_grpc.h +5 -3
- data/src/core/xds/xds_client/lrs_client.cc +6 -5
- data/src/core/xds/xds_client/lrs_client.h +7 -7
- data/src/core/xds/xds_client/xds_bootstrap.h +16 -1
- data/src/core/xds/xds_client/xds_client.cc +25 -23
- data/src/core/xds/xds_client/xds_client.h +3 -1
- data/src/core/xds/xds_client/xds_resource_type.h +1 -2
- data/src/core/xds/xds_client/xds_transport.h +1 -1
- data/src/ruby/ext/grpc/extconf.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +20 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +3 -25
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +3 -7
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +13 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +2 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +1 -1
- data/third_party/upb/upb/base/internal/log2.h +3 -1
- data/third_party/upb/upb/base/string_view.h +10 -0
- data/third_party/upb/upb/hash/common.c +5 -1
- data/third_party/upb/upb/json/decode.c +2 -2
- data/third_party/upb/upb/json/decode.h +0 -1
- data/third_party/upb/upb/mem/alloc.h +5 -0
- data/third_party/upb/upb/mem/arena.c +296 -142
- data/third_party/upb/upb/mem/arena.h +47 -11
- data/third_party/upb/upb/mem/arena.hpp +4 -20
- data/third_party/upb/upb/mem/internal/arena.h +4 -6
- data/third_party/upb/upb/message/accessors.h +41 -0
- data/third_party/upb/upb/message/compat.c +11 -14
- data/third_party/upb/upb/message/compat.h +4 -3
- data/third_party/upb/upb/message/copy.c +35 -30
- data/third_party/upb/upb/message/internal/accessors.h +139 -10
- data/third_party/upb/upb/message/internal/extension.c +28 -25
- data/third_party/upb/upb/message/internal/extension.h +21 -5
- data/third_party/upb/upb/message/internal/iterator.c +58 -0
- data/third_party/upb/upb/message/internal/iterator.h +29 -0
- data/third_party/upb/upb/message/internal/map.h +2 -3
- data/third_party/upb/upb/message/internal/map_sorter.h +3 -2
- data/third_party/upb/upb/message/internal/message.c +48 -29
- data/third_party/upb/upb/message/internal/message.h +154 -24
- data/third_party/upb/upb/message/map_sorter.c +20 -8
- data/third_party/upb/upb/message/message.c +90 -38
- data/third_party/upb/upb/message/message.h +58 -2
- data/third_party/upb/upb/message/value.h +9 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +1 -1
- data/third_party/upb/upb/mini_descriptor/decode.c +97 -136
- data/third_party/upb/upb/mini_descriptor/decode.h +4 -3
- data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +1 -1
- data/third_party/upb/upb/mini_table/extension_registry.c +24 -12
- data/third_party/upb/upb/mini_table/extension_registry.h +13 -6
- data/third_party/upb/upb/mini_table/message.c +21 -13
- data/third_party/upb/upb/port/atomic.h +134 -7
- data/third_party/upb/upb/port/def.inc +140 -38
- data/third_party/upb/upb/port/undef.inc +11 -1
- data/third_party/upb/upb/reflection/def.hpp +5 -1
- data/third_party/upb/upb/reflection/def_pool.c +10 -3
- data/third_party/upb/upb/reflection/descriptor_bootstrap.h +1 -1
- data/third_party/upb/upb/reflection/file_def.c +12 -5
- data/third_party/upb/upb/reflection/internal/def_builder.c +1 -1
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +19 -16
- data/third_party/upb/upb/reflection/message.h +3 -1
- data/third_party/upb/upb/text/encode.c +1 -13
- data/third_party/upb/upb/text/internal/encode.c +25 -6
- data/third_party/upb/upb/text/internal/encode.h +4 -0
- data/third_party/upb/upb/wire/decode.c +60 -45
- data/third_party/upb/upb/wire/decode.h +4 -2
- data/third_party/upb/upb/wire/encode.c +77 -42
- data/third_party/upb/upb/wire/encode.h +2 -0
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +18 -20
- data/third_party/upb/upb/wire/internal/decoder.h +4 -11
- data/third_party/utf8_range/utf8_range.c +15 -275
- data/third_party/utf8_range/utf8_range_neon.inc +117 -0
- data/third_party/utf8_range/utf8_range_sse.inc +272 -0
- data/third_party/zlib/deflate.c +40 -15
- data/third_party/zlib/deflate.h +33 -2
- data/third_party/zlib/gzguts.h +2 -6
- data/third_party/zlib/inflate.c +1 -1
- data/third_party/zlib/inftrees.c +3 -3
- data/third_party/zlib/inftrees.h +2 -2
- data/third_party/zlib/trees.c +18 -4
- data/third_party/zlib/zconf.h +1 -9
- data/third_party/zlib/zlib.h +12 -12
- data/third_party/zlib/zutil.h +4 -25
- metadata +155 -145
- data/include/grpc/grpc_cronet.h +0 -37
- data/src/core/lib/transport/http2_errors.h +0 -43
- data/third_party/upb/upb/message/internal/compare_unknown.c +0 -289
- data/third_party/upb/upb/message/internal/compare_unknown.h +0 -49
@@ -51,62 +51,62 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_VirtualHost__submsgs
|
|
51
51
|
};
|
52
52
|
|
53
53
|
static const upb_MiniTableField envoy_config_route_v3_VirtualHost__fields[22] = {
|
54
|
-
{1, UPB_SIZE(
|
55
|
-
{2, UPB_SIZE(12,
|
56
|
-
{3, UPB_SIZE(16,
|
54
|
+
{1, UPB_SIZE(84, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
55
|
+
{2, UPB_SIZE(12, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
56
|
+
{3, UPB_SIZE(16, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
57
57
|
{4, UPB_SIZE(20, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
58
|
-
{5, UPB_SIZE(24,
|
59
|
-
{6, UPB_SIZE(28,
|
60
|
-
{7, UPB_SIZE(32,
|
61
|
-
{8, UPB_SIZE(36,
|
62
|
-
{10, UPB_SIZE(40,
|
63
|
-
{11, UPB_SIZE(44,
|
64
|
-
{13, UPB_SIZE(48,
|
65
|
-
{14,
|
66
|
-
{15, UPB_SIZE(
|
67
|
-
{16, UPB_SIZE(
|
68
|
-
{17, UPB_SIZE(
|
69
|
-
{18, UPB_SIZE(
|
70
|
-
{19,
|
71
|
-
{20, UPB_SIZE(
|
72
|
-
{21, UPB_SIZE(
|
73
|
-
{22, UPB_SIZE(
|
74
|
-
{23,
|
75
|
-
{24, UPB_SIZE(
|
58
|
+
{5, UPB_SIZE(24, 48), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
59
|
+
{6, UPB_SIZE(28, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
60
|
+
{7, UPB_SIZE(32, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
61
|
+
{8, UPB_SIZE(36, 72), 64, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
62
|
+
{10, UPB_SIZE(40, 80), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
63
|
+
{11, UPB_SIZE(44, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
64
|
+
{13, UPB_SIZE(48, 96), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
65
|
+
{14, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
66
|
+
{15, UPB_SIZE(52, 104), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
67
|
+
{16, UPB_SIZE(56, 112), 65, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
68
|
+
{17, UPB_SIZE(60, 120), 66, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
69
|
+
{18, UPB_SIZE(64, 128), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
70
|
+
{19, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
71
|
+
{20, UPB_SIZE(68, 136), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
72
|
+
{21, UPB_SIZE(72, 144), 69, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
73
|
+
{22, UPB_SIZE(76, 152), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
74
|
+
{23, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
75
|
+
{24, UPB_SIZE(80, 160), 70, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
76
76
|
};
|
77
77
|
|
78
78
|
const upb_MiniTable envoy__config__route__v3__VirtualHost_msg_init = {
|
79
79
|
&envoy_config_route_v3_VirtualHost__submsgs[0],
|
80
80
|
&envoy_config_route_v3_VirtualHost__fields[0],
|
81
|
-
UPB_SIZE(
|
81
|
+
UPB_SIZE(96, 168), 22, kUpb_ExtMode_NonExtendable, 8, UPB_FASTTABLE_MASK(248), 0,
|
82
82
|
#ifdef UPB_TRACING_ENABLED
|
83
83
|
"envoy.config.route.v3.VirtualHost",
|
84
84
|
#endif
|
85
85
|
UPB_FASTTABLE_INIT({
|
86
86
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
87
|
-
{
|
88
|
-
{
|
89
|
-
{
|
87
|
+
{0x001000003f00000a, &upb_pss_1bt},
|
88
|
+
{0x002000003f000012, &upb_prs_1bt},
|
89
|
+
{0x002800003f00001a, &upb_prm_1bt_max192b},
|
90
90
|
{0x000c00003f000020, &upb_psv4_1bt},
|
91
|
-
{
|
92
|
-
{
|
93
|
-
{
|
91
|
+
{0x003000003f01002a, &upb_prm_1bt_max64b},
|
92
|
+
{0x003800003f020032, &upb_prm_1bt_max128b},
|
93
|
+
{0x004000003f03003a, &upb_prm_1bt_maxmaxb},
|
94
94
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
95
95
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
96
|
-
{
|
97
|
-
{
|
96
|
+
{0x005000003f050052, &upb_prm_1bt_maxmaxb},
|
97
|
+
{0x005800003f00005a, &upb_prs_1bt},
|
98
98
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
99
|
-
{
|
100
|
-
{
|
99
|
+
{0x006000003f00006a, &upb_prs_1bt},
|
100
|
+
{0x000900003f000070, &upb_psb1_1bt},
|
101
101
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
102
102
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
103
103
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
104
104
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
105
|
-
{
|
105
|
+
{0x000a00003f000198, &upb_psb1_2bt},
|
106
106
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
107
107
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
108
|
-
{
|
109
|
-
{
|
108
|
+
{0x009800003f0c01b2, &upb_prm_2bt_max128b},
|
109
|
+
{0x000b00003f0001b8, &upb_psb1_2bt},
|
110
110
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
111
111
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
112
112
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -199,23 +199,23 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_Route__submsgs[13] =
|
|
199
199
|
};
|
200
200
|
|
201
201
|
static const upb_MiniTableField envoy_config_route_v3_Route__fields[17] = {
|
202
|
-
{1, UPB_SIZE(12,
|
202
|
+
{1, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
203
203
|
{2, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
204
204
|
{3, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
205
|
-
{4, UPB_SIZE(16,
|
206
|
-
{5, UPB_SIZE(20,
|
205
|
+
{4, UPB_SIZE(16, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
206
|
+
{5, UPB_SIZE(20, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
207
207
|
{7, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
208
|
-
{9, UPB_SIZE(24,
|
209
|
-
{10, UPB_SIZE(28,
|
210
|
-
{11, UPB_SIZE(32,
|
211
|
-
{12, UPB_SIZE(36,
|
212
|
-
{13, UPB_SIZE(40,
|
213
|
-
{14, UPB_SIZE(60,
|
214
|
-
{15, UPB_SIZE(44,
|
215
|
-
{16, UPB_SIZE(48,
|
208
|
+
{9, UPB_SIZE(24, 72), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
209
|
+
{10, UPB_SIZE(28, 80), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
210
|
+
{11, UPB_SIZE(32, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
211
|
+
{12, UPB_SIZE(36, 96), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
212
|
+
{13, UPB_SIZE(40, 104), 0, 8, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
213
|
+
{14, UPB_SIZE(60, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
214
|
+
{15, UPB_SIZE(44, 112), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
215
|
+
{16, UPB_SIZE(48, 120), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
216
216
|
{17, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
217
217
|
{18, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
218
|
-
{19, UPB_SIZE(68,
|
218
|
+
{19, UPB_SIZE(68, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
219
219
|
};
|
220
220
|
|
221
221
|
const upb_MiniTable envoy__config__route__v3__Route_msg_init = {
|
@@ -235,17 +235,17 @@ const upb_MiniTable envoy__config__route__v3__Route_msg_init = {
|
|
235
235
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
236
236
|
{0x0080000c0705003a, &upb_pom_1bt_max64b},
|
237
237
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
238
|
-
{
|
239
|
-
{
|
240
|
-
{
|
241
|
-
{
|
238
|
+
{0x004800003f06004a, &upb_prm_1bt_maxmaxb},
|
239
|
+
{0x005000003f070052, &upb_prm_1bt_maxmaxb},
|
240
|
+
{0x005800003f00005a, &upb_prs_1bt},
|
241
|
+
{0x006000003f000062, &upb_prs_1bt},
|
242
242
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
243
|
-
{
|
243
|
+
{0x001000003f000072, &upb_pss_1bt},
|
244
244
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
245
245
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
246
246
|
{0x0080000c110b018a, &upb_pom_2bt_max64b},
|
247
247
|
{0x0080000c120c0192, &upb_pom_2bt_max64b},
|
248
|
-
{
|
248
|
+
{0x002000003f00019a, &upb_pss_2bt},
|
249
249
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
250
250
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
251
251
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -291,10 +291,10 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_WeightedCluster__sub
|
|
291
291
|
};
|
292
292
|
|
293
293
|
static const upb_MiniTableField envoy_config_route_v3_WeightedCluster__fields[4] = {
|
294
|
-
{1, UPB_SIZE(12,
|
295
|
-
{2, UPB_SIZE(
|
294
|
+
{1, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
295
|
+
{2, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
296
296
|
{3, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
297
|
-
{4,
|
297
|
+
{4, 32, UPB_SIZE(-21, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
298
298
|
};
|
299
299
|
|
300
300
|
const upb_MiniTable envoy__config__route__v3__WeightedCluster_msg_init = {
|
@@ -306,10 +306,10 @@ const upb_MiniTable envoy__config__route__v3__WeightedCluster_msg_init = {
|
|
306
306
|
#endif
|
307
307
|
UPB_FASTTABLE_INIT({
|
308
308
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
309
|
-
{
|
310
|
-
{
|
309
|
+
{0x003000003f00000a, &upb_prm_1bt_max128b},
|
310
|
+
{0x001000003f000012, &upb_pss_1bt},
|
311
311
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
312
|
-
{
|
312
|
+
{0x0020000c04000022, &upb_pos_1bt},
|
313
313
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
314
314
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
315
315
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -326,16 +326,16 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_WeightedCluster_Clus
|
|
326
326
|
};
|
327
327
|
|
328
328
|
static const upb_MiniTableField envoy_config_route_v3_WeightedCluster_ClusterWeight__fields[10] = {
|
329
|
-
{1, UPB_SIZE(
|
330
|
-
{2, UPB_SIZE(12,
|
331
|
-
{3, UPB_SIZE(16,
|
332
|
-
{4, UPB_SIZE(20,
|
333
|
-
{5, UPB_SIZE(24,
|
334
|
-
{6, UPB_SIZE(28,
|
335
|
-
{9, UPB_SIZE(32,
|
336
|
-
{10, UPB_SIZE(36,
|
337
|
-
{11, UPB_SIZE(
|
338
|
-
{12, UPB_SIZE(
|
329
|
+
{1, UPB_SIZE(44, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
330
|
+
{2, UPB_SIZE(12, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
331
|
+
{3, UPB_SIZE(16, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
332
|
+
{4, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
333
|
+
{5, UPB_SIZE(24, 88), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
334
|
+
{6, UPB_SIZE(28, 96), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
335
|
+
{9, UPB_SIZE(32, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
336
|
+
{10, UPB_SIZE(36, 112), 0, 4, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
337
|
+
{11, UPB_SIZE(60, 48), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
338
|
+
{12, UPB_SIZE(52, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
339
339
|
};
|
340
340
|
|
341
341
|
const upb_MiniTable envoy__config__route__v3__WeightedCluster__ClusterWeight_msg_init = {
|
@@ -347,18 +347,18 @@ const upb_MiniTable envoy__config__route__v3__WeightedCluster__ClusterWeight_msg
|
|
347
347
|
#endif
|
348
348
|
UPB_FASTTABLE_INIT({
|
349
349
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
350
|
-
{
|
350
|
+
{0x001000003f00000a, &upb_pss_1bt},
|
351
351
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
352
352
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
353
|
-
{
|
354
|
-
{
|
355
|
-
{
|
353
|
+
{0x005000003f020022, &upb_prm_1bt_maxmaxb},
|
354
|
+
{0x005800003f03002a, &upb_prm_1bt_maxmaxb},
|
355
|
+
{0x006000003f000032, &upb_prs_1bt},
|
356
356
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
357
357
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
358
|
-
{
|
358
|
+
{0x006800003f00004a, &upb_prs_1bt},
|
359
359
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
360
|
-
{
|
361
|
-
{
|
360
|
+
{0x0030000c0b00005a, &upb_pos_1bt},
|
361
|
+
{0x002000003f000062, &upb_pss_1bt},
|
362
362
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
363
363
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
364
364
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -395,13 +395,13 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_ClusterSpecifierPlug
|
|
395
395
|
|
396
396
|
static const upb_MiniTableField envoy_config_route_v3_ClusterSpecifierPlugin__fields[2] = {
|
397
397
|
{1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
398
|
-
{2,
|
398
|
+
{2, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
399
399
|
};
|
400
400
|
|
401
401
|
const upb_MiniTable envoy__config__route__v3__ClusterSpecifierPlugin_msg_init = {
|
402
402
|
&envoy_config_route_v3_ClusterSpecifierPlugin__submsgs[0],
|
403
403
|
&envoy_config_route_v3_ClusterSpecifierPlugin__fields[0],
|
404
|
-
24, 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
|
404
|
+
UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
|
405
405
|
#ifdef UPB_TRACING_ENABLED
|
406
406
|
"envoy.config.route.v3.ClusterSpecifierPlugin",
|
407
407
|
#endif
|
@@ -526,11 +526,11 @@ static const upb_MiniTableField envoy_config_route_v3_CorsPolicy__fields[10] = {
|
|
526
526
|
{4, UPB_SIZE(56, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
527
527
|
{5, 64, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
528
528
|
{6, UPB_SIZE(12, 80), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
529
|
-
{9, UPB_SIZE(36, 120), UPB_SIZE(-
|
530
|
-
{10, UPB_SIZE(
|
531
|
-
{11, UPB_SIZE(
|
532
|
-
{12, UPB_SIZE(
|
533
|
-
{13, UPB_SIZE(
|
529
|
+
{9, UPB_SIZE(36, 120), UPB_SIZE(-33, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
530
|
+
{10, UPB_SIZE(16, 88), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
531
|
+
{11, UPB_SIZE(20, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
532
|
+
{12, UPB_SIZE(24, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
533
|
+
{13, UPB_SIZE(28, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
534
534
|
};
|
535
535
|
|
536
536
|
const upb_MiniTable envoy__config__route__v3__CorsPolicy_msg_init = {
|
@@ -589,81 +589,81 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RouteAction__submsgs
|
|
589
589
|
};
|
590
590
|
|
591
591
|
static const upb_MiniTableField envoy_config_route_v3_RouteAction__fields[34] = {
|
592
|
-
{1, UPB_SIZE(
|
593
|
-
{2, UPB_SIZE(
|
594
|
-
{3, UPB_SIZE(
|
595
|
-
{4, UPB_SIZE(12,
|
596
|
-
{5, UPB_SIZE(
|
597
|
-
{6, UPB_SIZE(
|
598
|
-
{7, UPB_SIZE(
|
599
|
-
{8, UPB_SIZE(16,
|
600
|
-
{9, UPB_SIZE(20,
|
592
|
+
{1, UPB_SIZE(120, 48), UPB_SIZE(-105, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
593
|
+
{2, UPB_SIZE(120, 48), UPB_SIZE(-105, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
594
|
+
{3, UPB_SIZE(120, 48), UPB_SIZE(-105, -25), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
595
|
+
{4, UPB_SIZE(12, 80), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
596
|
+
{5, UPB_SIZE(112, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
597
|
+
{6, UPB_SIZE(128, 64), UPB_SIZE(-109, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
598
|
+
{7, UPB_SIZE(128, 64), UPB_SIZE(-109, -29), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
599
|
+
{8, UPB_SIZE(16, 88), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
600
|
+
{9, UPB_SIZE(20, 96), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
601
601
|
{11, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
602
|
-
{13, UPB_SIZE(28,
|
603
|
-
{14, UPB_SIZE(32,
|
604
|
-
{15, UPB_SIZE(36,
|
605
|
-
{17, UPB_SIZE(40,
|
602
|
+
{13, UPB_SIZE(28, 104), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
603
|
+
{14, UPB_SIZE(32, 112), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
604
|
+
{15, UPB_SIZE(36, 120), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
605
|
+
{17, UPB_SIZE(40, 128), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
606
606
|
{20, UPB_SIZE(44, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
607
|
-
{23, UPB_SIZE(48,
|
608
|
-
{24, UPB_SIZE(52,
|
609
|
-
{25, UPB_SIZE(56,
|
607
|
+
{23, UPB_SIZE(48, 136), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
608
|
+
{24, UPB_SIZE(52, 144), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
609
|
+
{25, UPB_SIZE(56, 152), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
610
610
|
{26, UPB_SIZE(60, 20), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
611
|
-
{27, UPB_SIZE(64,
|
612
|
-
{28, UPB_SIZE(68,
|
613
|
-
{29, UPB_SIZE(
|
614
|
-
{30, UPB_SIZE(72,
|
615
|
-
{31, UPB_SIZE(76,
|
616
|
-
{32, UPB_SIZE(80,
|
617
|
-
{33, UPB_SIZE(84,
|
618
|
-
{34, UPB_SIZE(88,
|
619
|
-
{35, UPB_SIZE(
|
620
|
-
{36, UPB_SIZE(
|
621
|
-
{37, UPB_SIZE(
|
622
|
-
{38,
|
623
|
-
{39, UPB_SIZE(
|
624
|
-
{40, UPB_SIZE(
|
625
|
-
{41, UPB_SIZE(
|
611
|
+
{27, UPB_SIZE(64, 160), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
612
|
+
{28, UPB_SIZE(68, 168), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
613
|
+
{29, UPB_SIZE(128, 64), UPB_SIZE(-109, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
614
|
+
{30, UPB_SIZE(72, 176), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
615
|
+
{31, UPB_SIZE(76, 184), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
616
|
+
{32, UPB_SIZE(80, 192), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
617
|
+
{33, UPB_SIZE(84, 200), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
618
|
+
{34, UPB_SIZE(88, 208), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
619
|
+
{35, UPB_SIZE(128, 64), UPB_SIZE(-109, -29), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
620
|
+
{36, UPB_SIZE(92, 216), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
621
|
+
{37, UPB_SIZE(120, 48), UPB_SIZE(-105, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
622
|
+
{38, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
623
|
+
{39, UPB_SIZE(120, 48), UPB_SIZE(-105, -25), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
624
|
+
{40, UPB_SIZE(96, 224), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
625
|
+
{41, UPB_SIZE(100, 232), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
626
626
|
};
|
627
627
|
|
628
628
|
const upb_MiniTable envoy__config__route__v3__RouteAction_msg_init = {
|
629
629
|
&envoy_config_route_v3_RouteAction__submsgs[0],
|
630
630
|
&envoy_config_route_v3_RouteAction__fields[0],
|
631
|
-
UPB_SIZE(
|
631
|
+
UPB_SIZE(136, 240), 34, kUpb_ExtMode_NonExtendable, 9, UPB_FASTTABLE_MASK(248), 0,
|
632
632
|
#ifdef UPB_TRACING_ENABLED
|
633
633
|
"envoy.config.route.v3.RouteAction",
|
634
634
|
#endif
|
635
635
|
UPB_FASTTABLE_INIT({
|
636
636
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
637
|
-
{
|
638
|
-
{
|
639
|
-
{
|
637
|
+
{0x003000180100000a, &upb_pos_1bt},
|
638
|
+
{0x0030001802000012, &upb_pos_1bt},
|
639
|
+
{0x003000180300001a, &upb_pom_1bt_max128b},
|
640
640
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
641
|
-
{
|
642
|
-
{
|
643
|
-
{
|
641
|
+
{0x002000003f00002a, &upb_pss_1bt},
|
642
|
+
{0x0040001c06000032, &upb_pos_1bt},
|
643
|
+
{0x0040001c0702003a, &upb_pom_1bt_maxmaxb},
|
644
644
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
645
645
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
646
646
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
647
647
|
{0x000c00003f000058, &upb_psv4_1bt},
|
648
648
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
649
|
-
{
|
649
|
+
{0x006800003f05006a, &upb_prm_1bt_max128b},
|
650
650
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
651
|
-
{
|
651
|
+
{0x007800003f07007a, &upb_prm_1bt_max64b},
|
652
652
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
653
653
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
654
654
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
655
|
-
{
|
655
|
+
{0x0040001c2313029a, &upb_pom_2bt_maxmaxb},
|
656
656
|
{0x001000003f0001a0, &upb_psv4_2bt},
|
657
|
-
{
|
658
|
-
{
|
659
|
-
{
|
657
|
+
{0x00300018250002aa, &upb_pos_2bt},
|
658
|
+
{0x000a00003f0002b0, &upb_psb1_2bt},
|
659
|
+
{0x00300018271502ba, &upb_pom_2bt_max64b},
|
660
660
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
661
|
-
{
|
661
|
+
{0x009800003f0b01ca, &upb_prm_2bt_max64b},
|
662
662
|
{0x001400003f0001d0, &upb_psv4_2bt},
|
663
663
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
664
664
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
665
|
-
{
|
666
|
-
{
|
665
|
+
{0x0040001c1d0001ea, &upb_pos_2bt},
|
666
|
+
{0x00b000003f0e01f2, &upb_prm_2bt_max128b},
|
667
667
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
668
668
|
})
|
669
669
|
};
|
@@ -675,11 +675,11 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RouteAction_RequestM
|
|
675
675
|
};
|
676
676
|
|
677
677
|
static const upb_MiniTableField envoy_config_route_v3_RouteAction_RequestMirrorPolicy__fields[5] = {
|
678
|
-
{1, UPB_SIZE(
|
679
|
-
{3, UPB_SIZE(12,
|
680
|
-
{4, UPB_SIZE(16,
|
681
|
-
{5, UPB_SIZE(
|
682
|
-
{6,
|
678
|
+
{1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
679
|
+
{3, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
680
|
+
{4, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
681
|
+
{5, UPB_SIZE(28, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
682
|
+
{6, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
683
683
|
};
|
684
684
|
|
685
685
|
const upb_MiniTable envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init = {
|
@@ -695,7 +695,7 @@ const upb_MiniTable envoy__config__route__v3__RouteAction__RequestMirrorPolicy_m
|
|
695
695
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
696
696
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
697
697
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
698
|
-
{
|
698
|
+
{0x002000003f00002a, &upb_pss_1bt},
|
699
699
|
{0x000900003f000030, &upb_psb1_1bt},
|
700
700
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
701
701
|
})
|
@@ -790,8 +790,8 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RouteAction_HashPoli
|
|
790
790
|
|
791
791
|
static const upb_MiniTableField envoy_config_route_v3_RouteAction_HashPolicy_Cookie__fields[4] = {
|
792
792
|
{1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
793
|
-
{2, UPB_SIZE(12,
|
794
|
-
{3, UPB_SIZE(28,
|
793
|
+
{2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
794
|
+
{3, UPB_SIZE(28, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
795
795
|
{4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
796
796
|
};
|
797
797
|
|
@@ -806,7 +806,7 @@ const upb_MiniTable envoy__config__route__v3__RouteAction__HashPolicy__Cookie_ms
|
|
806
806
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
807
807
|
{0x001000003f00000a, &upb_pss_1bt},
|
808
808
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
809
|
-
{
|
809
|
+
{0x002000003f00001a, &upb_pss_1bt},
|
810
810
|
{0x003800003f010022, &upb_prm_1bt_max64b},
|
811
811
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
812
812
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -900,13 +900,13 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RouteAction_UpgradeC
|
|
900
900
|
|
901
901
|
static const upb_MiniTableField envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__fields[2] = {
|
902
902
|
{1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
903
|
-
{2,
|
903
|
+
{2, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
904
904
|
};
|
905
905
|
|
906
906
|
const upb_MiniTable envoy__config__route__v3__RouteAction__UpgradeConfig__ConnectConfig_msg_init = {
|
907
907
|
&envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__submsgs[0],
|
908
908
|
&envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__fields[0],
|
909
|
-
24, 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
|
909
|
+
UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
|
910
910
|
#ifdef UPB_TRACING_ENABLED
|
911
911
|
"envoy.config.route.v3.RouteAction.UpgradeConfig.ConnectConfig",
|
912
912
|
#endif
|
@@ -1121,7 +1121,7 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_HedgePolicy__submsgs
|
|
1121
1121
|
static const upb_MiniTableField envoy_config_route_v3_HedgePolicy__fields[3] = {
|
1122
1122
|
{1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1123
1123
|
{2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1124
|
-
{3,
|
1124
|
+
{3, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1125
1125
|
};
|
1126
1126
|
|
1127
1127
|
const upb_MiniTable envoy__config__route__v3__HedgePolicy_msg_init = {
|
@@ -1145,15 +1145,15 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RedirectAction__subm
|
|
1145
1145
|
};
|
1146
1146
|
|
1147
1147
|
static const upb_MiniTableField envoy_config_route_v3_RedirectAction__fields[9] = {
|
1148
|
-
{1, UPB_SIZE(
|
1149
|
-
{2, UPB_SIZE(
|
1150
|
-
{3,
|
1151
|
-
{4, UPB_SIZE(
|
1152
|
-
{5, UPB_SIZE(
|
1153
|
-
{6,
|
1154
|
-
{7, UPB_SIZE(
|
1155
|
-
{8,
|
1156
|
-
{9, UPB_SIZE(
|
1148
|
+
{1, UPB_SIZE(28, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1149
|
+
{2, UPB_SIZE(44, 64), -25, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1150
|
+
{3, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
1151
|
+
{4, UPB_SIZE(36, 48), -21, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1152
|
+
{5, UPB_SIZE(44, 64), -25, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1153
|
+
{6, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1154
|
+
{7, UPB_SIZE(36, 48), -21, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1155
|
+
{8, 16, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
1156
|
+
{9, UPB_SIZE(44, 64), -25, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1157
1157
|
};
|
1158
1158
|
|
1159
1159
|
const upb_MiniTable envoy__config__route__v3__RedirectAction_msg_init = {
|
@@ -1165,15 +1165,15 @@ const upb_MiniTable envoy__config__route__v3__RedirectAction_msg_init = {
|
|
1165
1165
|
#endif
|
1166
1166
|
UPB_FASTTABLE_INIT({
|
1167
1167
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1168
|
-
{
|
1169
|
-
{
|
1170
|
-
{
|
1171
|
-
{
|
1172
|
-
{
|
1173
|
-
{
|
1174
|
-
{
|
1175
|
-
{
|
1176
|
-
{
|
1168
|
+
{0x002000003f00000a, &upb_pss_1bt},
|
1169
|
+
{0x0040001802000012, &upb_pos_1bt},
|
1170
|
+
{0x000c00003f000018, &upb_psv4_1bt},
|
1171
|
+
{0x0030001404000020, &upb_pob1_1bt},
|
1172
|
+
{0x004000180500002a, &upb_pos_1bt},
|
1173
|
+
{0x000800003f000030, &upb_psb1_1bt},
|
1174
|
+
{0x003000140700003a, &upb_pos_1bt},
|
1175
|
+
{0x001000003f000040, &upb_psv4_1bt},
|
1176
|
+
{0x004000180900004a, &upb_pom_1bt_maxmaxb},
|
1177
1177
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1178
1178
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1179
1179
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -1311,12 +1311,12 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RateLimit__submsgs[4
|
|
1311
1311
|
};
|
1312
1312
|
|
1313
1313
|
static const upb_MiniTableField envoy_config_route_v3_RateLimit__fields[6] = {
|
1314
|
-
{1, UPB_SIZE(12,
|
1315
|
-
{2, UPB_SIZE(
|
1314
|
+
{1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1315
|
+
{2, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1316
1316
|
{3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1317
1317
|
{4, UPB_SIZE(20, 48), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1318
1318
|
{5, UPB_SIZE(24, 56), 66, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1319
|
-
{6,
|
1319
|
+
{6, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1320
1320
|
};
|
1321
1321
|
|
1322
1322
|
const upb_MiniTable envoy__config__route__v3__RateLimit_msg_init = {
|
@@ -1329,7 +1329,7 @@ const upb_MiniTable envoy__config__route__v3__RateLimit_msg_init = {
|
|
1329
1329
|
UPB_FASTTABLE_INIT({
|
1330
1330
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1331
1331
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1332
|
-
{
|
1332
|
+
{0x001000003f000012, &upb_pss_1bt},
|
1333
1333
|
{0x002800003f01001a, &upb_prm_1bt_max64b},
|
1334
1334
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1335
1335
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -1385,7 +1385,7 @@ const upb_MiniTable envoy__config__route__v3__RateLimit__Action_msg_init = {
|
|
1385
1385
|
{0x001000080504002a, &upb_pom_1bt_max64b},
|
1386
1386
|
{0x0010000806050032, &upb_pom_1bt_max128b},
|
1387
1387
|
{0x001000080706003a, &upb_pom_1bt_max64b},
|
1388
|
-
{0x0010000808070042, &
|
1388
|
+
{0x0010000808070042, &upb_pom_1bt_max64b},
|
1389
1389
|
{0x001000080908004a, &upb_pom_1bt_maxmaxb},
|
1390
1390
|
{0x001000080a090052, &upb_pom_1bt_max64b},
|
1391
1391
|
{0x001000080b0a005a, &upb_pom_1bt_max128b},
|
@@ -1519,9 +1519,9 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RateLimit_Action_Hea
|
|
1519
1519
|
|
1520
1520
|
static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_HeaderValueMatch__fields[4] = {
|
1521
1521
|
{1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1522
|
-
{2, UPB_SIZE(12,
|
1523
|
-
{3, UPB_SIZE(16,
|
1524
|
-
{4, UPB_SIZE(28,
|
1522
|
+
{2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1523
|
+
{3, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1524
|
+
{4, UPB_SIZE(28, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1525
1525
|
};
|
1526
1526
|
|
1527
1527
|
const upb_MiniTable envoy__config__route__v3__RateLimit__Action__HeaderValueMatch_msg_init = {
|
@@ -1535,8 +1535,8 @@ const upb_MiniTable envoy__config__route__v3__RateLimit__Action__HeaderValueMatc
|
|
1535
1535
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1536
1536
|
{0x001000003f00000a, &upb_pss_1bt},
|
1537
1537
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1538
|
-
{
|
1539
|
-
{
|
1538
|
+
{0x003800003f01001a, &upb_prm_1bt_max64b},
|
1539
|
+
{0x002000003f000022, &upb_pss_1bt},
|
1540
1540
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1541
1541
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1542
1542
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -1550,8 +1550,8 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RateLimit_Action_Dyn
|
|
1550
1550
|
|
1551
1551
|
static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_DynamicMetaData__fields[3] = {
|
1552
1552
|
{1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1553
|
-
{2, UPB_SIZE(12,
|
1554
|
-
{3, UPB_SIZE(24,
|
1553
|
+
{2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1554
|
+
{3, UPB_SIZE(24, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1555
1555
|
};
|
1556
1556
|
|
1557
1557
|
const upb_MiniTable envoy__config__route__v3__RateLimit__Action__DynamicMetaData_msg_init = {
|
@@ -1565,7 +1565,7 @@ const upb_MiniTable envoy__config__route__v3__RateLimit__Action__DynamicMetaData
|
|
1565
1565
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1566
1566
|
{0x001000003f00000a, &upb_pss_1bt},
|
1567
1567
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1568
|
-
{
|
1568
|
+
{0x002000003f00001a, &upb_pss_1bt},
|
1569
1569
|
})
|
1570
1570
|
};
|
1571
1571
|
|
@@ -1575,27 +1575,27 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RateLimit_Action_Met
|
|
1575
1575
|
};
|
1576
1576
|
|
1577
1577
|
static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_MetaData__fields[5] = {
|
1578
|
-
{1,
|
1579
|
-
{2, UPB_SIZE(12,
|
1580
|
-
{3, UPB_SIZE(
|
1578
|
+
{1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1579
|
+
{2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1580
|
+
{3, UPB_SIZE(28, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1581
1581
|
{4, UPB_SIZE(16, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
1582
|
-
{5,
|
1582
|
+
{5, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1583
1583
|
};
|
1584
1584
|
|
1585
1585
|
const upb_MiniTable envoy__config__route__v3__RateLimit__Action__MetaData_msg_init = {
|
1586
1586
|
&envoy_config_route_v3_RateLimit_Action_MetaData__submsgs[0],
|
1587
1587
|
&envoy_config_route_v3_RateLimit_Action_MetaData__fields[0],
|
1588
|
-
UPB_SIZE(40,
|
1588
|
+
UPB_SIZE(40, 56), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
|
1589
1589
|
#ifdef UPB_TRACING_ENABLED
|
1590
1590
|
"envoy.config.route.v3.RateLimit.Action.MetaData",
|
1591
1591
|
#endif
|
1592
1592
|
UPB_FASTTABLE_INIT({
|
1593
1593
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1594
|
-
{
|
1594
|
+
{0x001000003f00000a, &upb_pss_1bt},
|
1595
1595
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1596
|
-
{
|
1596
|
+
{0x002000003f00001a, &upb_pss_1bt},
|
1597
1597
|
{0x000c00003f000020, &upb_psv4_1bt},
|
1598
|
-
{
|
1598
|
+
{0x000900003f000028, &upb_psb1_1bt},
|
1599
1599
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1600
1600
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1601
1601
|
})
|
@@ -1609,9 +1609,9 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RateLimit_Action_Que
|
|
1609
1609
|
|
1610
1610
|
static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch__fields[4] = {
|
1611
1611
|
{1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1612
|
-
{2, UPB_SIZE(12,
|
1613
|
-
{3, UPB_SIZE(16,
|
1614
|
-
{4, UPB_SIZE(28,
|
1612
|
+
{2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1613
|
+
{3, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1614
|
+
{4, UPB_SIZE(28, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1615
1615
|
};
|
1616
1616
|
|
1617
1617
|
const upb_MiniTable envoy__config__route__v3__RateLimit__Action__QueryParameterValueMatch_msg_init = {
|
@@ -1625,8 +1625,8 @@ const upb_MiniTable envoy__config__route__v3__RateLimit__Action__QueryParameterV
|
|
1625
1625
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1626
1626
|
{0x001000003f00000a, &upb_pss_1bt},
|
1627
1627
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1628
|
-
{
|
1629
|
-
{
|
1628
|
+
{0x003800003f01001a, &upb_prm_1bt_max64b},
|
1629
|
+
{0x002000003f000022, &upb_pss_1bt},
|
1630
1630
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1631
1631
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1632
1632
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
@@ -1679,8 +1679,8 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_RateLimit_HitsAddend
|
|
1679
1679
|
};
|
1680
1680
|
|
1681
1681
|
static const upb_MiniTableField envoy_config_route_v3_RateLimit_HitsAddend__fields[2] = {
|
1682
|
-
{1, UPB_SIZE(12,
|
1683
|
-
{2,
|
1682
|
+
{1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1683
|
+
{2, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1684
1684
|
};
|
1685
1685
|
|
1686
1686
|
const upb_MiniTable envoy__config__route__v3__RateLimit__HitsAddend_msg_init = {
|
@@ -1693,7 +1693,7 @@ const upb_MiniTable envoy__config__route__v3__RateLimit__HitsAddend_msg_init = {
|
|
1693
1693
|
UPB_FASTTABLE_INIT({
|
1694
1694
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1695
1695
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1696
|
-
{
|
1696
|
+
{0x001000003f000012, &upb_pss_1bt},
|
1697
1697
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1698
1698
|
})
|
1699
1699
|
};
|
@@ -1706,42 +1706,42 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_HeaderMatcher__subms
|
|
1706
1706
|
};
|
1707
1707
|
|
1708
1708
|
static const upb_MiniTableField envoy_config_route_v3_HeaderMatcher__fields[11] = {
|
1709
|
-
{1,
|
1710
|
-
{4, UPB_SIZE(
|
1711
|
-
{6, UPB_SIZE(
|
1712
|
-
{7, UPB_SIZE(
|
1709
|
+
{1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1710
|
+
{4, UPB_SIZE(24, 32), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1711
|
+
{6, UPB_SIZE(24, 32), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1712
|
+
{7, UPB_SIZE(24, 32), -13, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1713
1713
|
{8, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1714
|
-
{9, UPB_SIZE(
|
1715
|
-
{10, UPB_SIZE(
|
1716
|
-
{11, UPB_SIZE(
|
1717
|
-
{12, UPB_SIZE(
|
1718
|
-
{13, UPB_SIZE(
|
1719
|
-
{14,
|
1714
|
+
{9, UPB_SIZE(24, 32), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1715
|
+
{10, UPB_SIZE(24, 32), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1716
|
+
{11, UPB_SIZE(24, 32), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1717
|
+
{12, UPB_SIZE(24, 32), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
1718
|
+
{13, UPB_SIZE(24, 32), -13, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1719
|
+
{14, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1720
1720
|
};
|
1721
1721
|
|
1722
1722
|
const upb_MiniTable envoy__config__route__v3__HeaderMatcher_msg_init = {
|
1723
1723
|
&envoy_config_route_v3_HeaderMatcher__submsgs[0],
|
1724
1724
|
&envoy_config_route_v3_HeaderMatcher__fields[0],
|
1725
|
-
UPB_SIZE(
|
1725
|
+
UPB_SIZE(32, 48), 11, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(120), 0,
|
1726
1726
|
#ifdef UPB_TRACING_ENABLED
|
1727
1727
|
"envoy.config.route.v3.HeaderMatcher",
|
1728
1728
|
#endif
|
1729
1729
|
UPB_FASTTABLE_INIT({
|
1730
1730
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1731
|
-
{
|
1731
|
+
{0x001000003f00000a, &upb_pss_1bt},
|
1732
1732
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1733
1733
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1734
|
-
{
|
1734
|
+
{0x0020000c04000022, &upb_pos_1bt},
|
1735
1735
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1736
|
-
{
|
1737
|
-
{
|
1736
|
+
{0x0020000c06000032, &upb_pom_1bt_maxmaxb},
|
1737
|
+
{0x0020000c07000038, &upb_pob1_1bt},
|
1738
1738
|
{0x000800003f000040, &upb_psb1_1bt},
|
1739
|
-
{
|
1740
|
-
{
|
1741
|
-
{
|
1742
|
-
{
|
1743
|
-
{
|
1744
|
-
{
|
1739
|
+
{0x0020000c0900004a, &upb_pos_1bt},
|
1740
|
+
{0x0020000c0a000052, &upb_pos_1bt},
|
1741
|
+
{0x0020000c0b01005a, &upb_pom_1bt_maxmaxb},
|
1742
|
+
{0x0020000c0c000062, &upb_pos_1bt},
|
1743
|
+
{0x0020000c0d02006a, &upb_pom_1bt_maxmaxb},
|
1744
|
+
{0x000900003f000070, &upb_psb1_1bt},
|
1745
1745
|
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
1746
1746
|
})
|
1747
1747
|
};
|
@@ -1786,8 +1786,8 @@ static const upb_MiniTableField envoy_config_route_v3_InternalRedirectPolicy__fi
|
|
1786
1786
|
{1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1787
1787
|
{2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1788
1788
|
{3, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1789
|
-
{4,
|
1790
|
-
{5, UPB_SIZE(
|
1789
|
+
{4, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1790
|
+
{5, UPB_SIZE(24, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1791
1791
|
};
|
1792
1792
|
|
1793
1793
|
const upb_MiniTable envoy__config__route__v3__InternalRedirectPolicy_msg_init = {
|
@@ -1816,14 +1816,14 @@ static const upb_MiniTableSubInternal envoy_config_route_v3_FilterConfig__submsg
|
|
1816
1816
|
|
1817
1817
|
static const upb_MiniTableField envoy_config_route_v3_FilterConfig__fields[3] = {
|
1818
1818
|
{1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
1819
|
-
{2,
|
1820
|
-
{3,
|
1819
|
+
{2, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1820
|
+
{3, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
1821
1821
|
};
|
1822
1822
|
|
1823
1823
|
const upb_MiniTable envoy__config__route__v3__FilterConfig_msg_init = {
|
1824
1824
|
&envoy_config_route_v3_FilterConfig__submsgs[0],
|
1825
1825
|
&envoy_config_route_v3_FilterConfig__fields[0],
|
1826
|
-
24, 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
|
1826
|
+
UPB_SIZE(16, 24), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
|
1827
1827
|
#ifdef UPB_TRACING_ENABLED
|
1828
1828
|
"envoy.config.route.v3.FilterConfig",
|
1829
1829
|
#endif
|