grpc 1.64.3 → 1.70.1
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 +374 -342
- data/include/grpc/compression.h +1 -2
- data/include/grpc/credentials.h +2 -3
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/endpoint_config.h +2 -2
- data/include/grpc/event_engine/event_engine.h +39 -15
- data/include/grpc/event_engine/extensible.h +5 -2
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +3 -4
- data/include/grpc/event_engine/memory_request.h +19 -2
- data/include/grpc/event_engine/slice.h +3 -5
- data/include/grpc/event_engine/slice_buffer.h +6 -8
- data/include/grpc/grpc.h +1 -2
- data/include/grpc/grpc_audit_logging.h +3 -3
- data/include/grpc/grpc_crl_provider.h +5 -5
- data/include/grpc/grpc_posix.h +1 -2
- data/include/grpc/grpc_security.h +1 -2
- data/include/grpc/impl/call.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +10 -4
- data/include/grpc/impl/grpc_types.h +1 -2
- data/include/grpc/impl/slice_type.h +1 -2
- data/include/grpc/module.modulemap +1 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/support/alloc.h +1 -2
- data/include/grpc/support/atm.h +0 -13
- data/include/grpc/support/json.h +1 -2
- data/include/grpc/support/log.h +37 -64
- data/include/grpc/support/metrics.h +21 -6
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/sync_generic.h +2 -4
- data/include/grpc/support/sync_posix.h +1 -2
- data/include/grpc/support/time.h +1 -2
- data/src/core/call/request_buffer.cc +224 -0
- data/src/core/call/request_buffer.h +192 -0
- data/src/core/channelz/channel_trace.cc +6 -7
- data/src/core/channelz/channel_trace.h +6 -8
- data/src/core/channelz/channelz.cc +8 -10
- data/src/core/channelz/channelz.h +15 -17
- data/src/core/channelz/channelz_registry.cc +10 -11
- data/src/core/channelz/channelz_registry.h +4 -5
- data/src/core/client_channel/backup_poller.cc +25 -16
- data/src/core/client_channel/client_channel.cc +1425 -0
- data/src/core/client_channel/client_channel.h +245 -0
- data/src/core/client_channel/client_channel_args.h +21 -0
- data/src/core/client_channel/client_channel_factory.cc +2 -2
- data/src/core/client_channel/client_channel_factory.h +1 -2
- data/src/core/client_channel/client_channel_filter.cc +351 -864
- data/src/core/client_channel/client_channel_filter.h +24 -79
- data/src/core/client_channel/client_channel_internal.h +23 -9
- data/src/core/client_channel/client_channel_plugin.cc +3 -18
- data/src/core/client_channel/client_channel_service_config.cc +2 -3
- data/src/core/client_channel/client_channel_service_config.h +7 -9
- data/src/core/client_channel/config_selector.h +21 -22
- data/src/core/client_channel/connector.h +3 -3
- data/src/core/client_channel/direct_channel.cc +83 -0
- data/src/core/client_channel/direct_channel.h +101 -0
- data/src/core/client_channel/dynamic_filters.cc +16 -14
- data/src/core/client_channel/dynamic_filters.h +9 -10
- data/src/core/client_channel/global_subchannel_pool.cc +2 -2
- data/src/core/client_channel/global_subchannel_pool.h +2 -3
- data/src/core/client_channel/lb_metadata.cc +120 -0
- data/src/core/client_channel/lb_metadata.h +55 -0
- data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
- data/src/core/client_channel/load_balanced_call_destination.h +48 -0
- data/src/core/client_channel/local_subchannel_pool.cc +2 -5
- data/src/core/client_channel/local_subchannel_pool.h +1 -1
- data/src/core/client_channel/retry_filter.cc +8 -17
- data/src/core/client_channel/retry_filter.h +6 -15
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +209 -319
- data/src/core/client_channel/retry_filter_legacy_call_data.h +11 -14
- data/src/core/client_channel/retry_interceptor.cc +406 -0
- data/src/core/client_channel/retry_interceptor.h +157 -0
- data/src/core/client_channel/retry_service_config.cc +10 -13
- data/src/core/client_channel/retry_service_config.h +19 -8
- data/src/core/client_channel/retry_throttle.cc +34 -20
- data/src/core/client_channel/retry_throttle.h +6 -9
- data/src/core/client_channel/subchannel.cc +283 -165
- data/src/core/client_channel/subchannel.h +48 -40
- data/src/core/client_channel/subchannel_interface_internal.h +1 -1
- data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
- data/src/core/client_channel/subchannel_pool_interface.h +4 -7
- data/src/core/client_channel/subchannel_stream_client.cc +43 -59
- data/src/core/client_channel/subchannel_stream_client.h +10 -14
- data/src/core/config/config_vars.cc +151 -0
- data/src/core/config/config_vars.h +128 -0
- data/src/core/config/config_vars_non_generated.cc +49 -0
- data/src/core/config/core_configuration.cc +111 -0
- data/src/core/config/core_configuration.h +242 -0
- data/src/core/config/load_config.cc +77 -0
- data/src/core/config/load_config.h +54 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +23 -28
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +3 -1
- data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
- data/src/core/ext/filters/census/grpc_context.cc +7 -10
- data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +36 -47
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +12 -8
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +17 -20
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +4 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +7 -10
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +14 -8
- data/src/core/ext/filters/http/client/http_client_filter.h +3 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +9 -8
- data/src/core/ext/filters/http/client_authority_filter.h +3 -1
- data/src/core/ext/filters/http/http_filters_plugin.cc +1 -2
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +50 -46
- data/src/core/ext/filters/http/message_compress/compression_filter.h +8 -4
- data/src/core/ext/filters/http/server/http_server_filter.cc +16 -13
- data/src/core/ext/filters/http/server/http_server_filter.h +3 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +33 -33
- data/src/core/ext/filters/message_size/message_size_filter.h +12 -10
- data/src/core/ext/filters/rbac/rbac_filter.cc +9 -12
- data/src/core/ext/filters/rbac/rbac_filter.h +3 -2
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +16 -10
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +3 -5
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +14 -16
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +5 -4
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +6 -8
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -4
- data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +76 -108
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -11
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +985 -371
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +222 -13
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +21 -33
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -7
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +645 -519
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +15 -16
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +2 -3
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +4 -4
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +8 -13
- data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -7
- data/src/core/ext/transport/chttp2/transport/frame.cc +22 -5
- data/src/core/ext/transport/chttp2/transport/frame.h +13 -4
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +19 -20
- data/src/core/ext/transport/chttp2/transport/frame_data.h +4 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +3 -6
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +14 -19
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -18
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -5
- data/src/core/ext/transport/chttp2/transport/frame_security.cc +80 -0
- data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +36 -20
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +28 -7
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +19 -21
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +19 -15
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +4 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +2 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -7
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +23 -27
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +4 -6
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +41 -16
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +29 -10
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +11 -3
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +11 -5
- data/src/core/ext/transport/chttp2/transport/internal.h +71 -79
- data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +123 -109
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -5
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +3 -7
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -18
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +7 -8
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +52 -16
- data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/varint.h +1 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +3 -4
- data/src/core/ext/transport/chttp2/transport/writing.cc +145 -120
- data/src/core/ext/transport/inproc/inproc_transport.cc +150 -68
- data/src/core/ext/transport/inproc/inproc_transport.h +1 -3
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +121 -122
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +0 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +46 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +40 -18
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +59 -27
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +36 -18
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +50 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +44 -22
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +190 -55
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +162 -84
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +24 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +11 -5
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +19 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +11 -10
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +129 -82
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +39 -27
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +9 -8
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +18 -8
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +91 -34
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +114 -48
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +544 -254
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +265 -149
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +29 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +41 -14
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +31 -17
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +529 -141
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +270 -143
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +31 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +171 -27
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +54 -27
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +127 -35
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +125 -63
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +20 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +67 -27
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +60 -26
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +871 -72
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +346 -75
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +41 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +67 -25
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +57 -27
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +201 -62
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +120 -53
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +19 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +196 -62
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +95 -53
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +13 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +10 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +292 -76
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +156 -80
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +10 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +15 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb.h +151 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.c +60 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +244 -31
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +79 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +23 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +42 -11
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +35 -17
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +106 -34
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +69 -37
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +281 -37
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +81 -27
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +142 -47
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +90 -47
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +92 -129
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +66 -57
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +11 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +178 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +46 -14
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +14 -7
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +14 -9
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +51 -22
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +58 -24
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +70 -22
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +71 -29
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +311 -38
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +141 -63
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +18 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +61 -13
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +33 -19
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +843 -237
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +539 -270
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +65 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +20 -10
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +22 -8
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +100 -35
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +95 -45
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +17 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +118 -16
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +10 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +20 -8
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +17 -10
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +5 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +5 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +19 -10
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +14 -11
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +216 -102
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +124 -57
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +24 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +33 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +42 -22
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +27 -13
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +56 -13
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +29 -13
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +29 -12
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +20 -10
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +13 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +343 -134
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +209 -121
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +26 -4
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +83 -10
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +28 -11
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +31 -14
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +39 -17
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +6 -5
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +22 -11
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +105 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +170 -31
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +83 -37
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +25 -12
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +27 -13
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +214 -63
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +100 -61
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +14 -6
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +58 -20
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +44 -26
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +373 -58
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +144 -61
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +18 -8
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +67 -25
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +47 -25
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +10 -7
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +16 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +26 -8
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +10 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +23 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +16 -8
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +13 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +16 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +24 -10
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +51 -10
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +30 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +14 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +30 -12
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +32 -14
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +24 -10
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +40 -10
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +30 -17
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +33 -11
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +19 -5
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +6 -5
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +11 -10
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +14 -9
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +17 -7
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +135 -36
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +121 -56
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +18 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +525 -69
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +202 -68
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +23 -4
- data/src/core/ext/upb-gen/google/api/http.upb.h +30 -16
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +22 -8
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +12 -6
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +8 -6
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +583 -181
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +376 -215
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +56 -21
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +8 -6
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +33 -10
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +32 -14
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +8 -6
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +15 -13
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +39 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +12 -6
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +19 -10
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +98 -39
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +87 -37
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +17 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +14 -8
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +8 -6
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +47 -22
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +58 -20
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +16 -8
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +18 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +72 -19
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +60 -22
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +69 -23
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +31 -12
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +19 -9
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +6 -5
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +19 -9
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +18 -8
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/validate/validate.upb.h +264 -172
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +185 -87
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +29 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +69 -23
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +31 -12
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +19 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +6 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +46 -18
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +32 -11
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +18 -8
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +6 -5
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +16 -9
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +11 -4
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +12 -7
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +21 -11
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +11 -8
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +29 -10
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +24 -6
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +8 -5
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +13 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +5 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +19 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +81 -22
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +85 -43
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +44 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +48 -22
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +11 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +18 -10
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +17 -8
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +12 -10
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +6 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +13 -11
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +419 -393
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +201 -147
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +35 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +270 -256
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +31 -20
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +20 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +60 -66
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +5 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +75 -56
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +51 -49
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +119 -97
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +910 -894
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +17 -19
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +465 -459
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +96 -88
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +204 -192
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +150 -136
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +25 -23
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +15 -4
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +485 -458
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +5 -4
- data/src/core/filter/blackboard.cc +33 -0
- data/src/core/filter/blackboard.h +70 -0
- data/src/core/filter/filter_args.h +112 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +13 -12
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +1 -1
- data/src/core/handshaker/handshaker.cc +127 -159
- data/src/core/handshaker/handshaker.h +58 -52
- data/src/core/handshaker/handshaker_registry.cc +1 -2
- data/src/core/handshaker/handshaker_registry.h +2 -2
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +119 -159
- data/src/core/handshaker/http_connect/http_connect_handshaker.h +1 -1
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +30 -37
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +3 -4
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
- data/src/core/handshaker/proxy_mapper.h +2 -3
- data/src/core/handshaker/proxy_mapper_registry.cc +2 -2
- data/src/core/handshaker/proxy_mapper_registry.h +2 -3
- data/src/core/handshaker/security/secure_endpoint.cc +95 -82
- data/src/core/handshaker/security/secure_endpoint.h +6 -7
- data/src/core/handshaker/security/security_handshaker.cc +167 -221
- data/src/core/handshaker/security/security_handshaker.h +3 -4
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +48 -62
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +1 -1
- data/src/core/lib/address_utils/parse_address.cc +30 -43
- data/src/core/lib/address_utils/parse_address.h +2 -4
- data/src/core/lib/address_utils/sockaddr_utils.cc +9 -12
- data/src/core/lib/address_utils/sockaddr_utils.h +1 -3
- data/src/core/lib/channel/call_finalization.h +2 -2
- data/src/core/lib/channel/channel_args.cc +17 -23
- data/src/core/lib/channel/channel_args.h +35 -21
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +4 -4
- data/src/core/lib/channel/channel_stack.cc +13 -76
- data/src/core/lib/channel/channel_stack.h +26 -61
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +3 -9
- data/src/core/lib/channel/channel_stack_builder_impl.cc +5 -150
- data/src/core/lib/channel/channel_stack_builder_impl.h +14 -4
- data/src/core/lib/channel/connected_channel.cc +47 -689
- data/src/core/lib/channel/promise_based_filter.cc +181 -251
- data/src/core/lib/channel/promise_based_filter.h +149 -559
- data/src/core/lib/channel/status_util.cc +2 -4
- data/src/core/lib/channel/status_util.h +3 -3
- data/src/core/lib/compression/compression.cc +7 -9
- data/src/core/lib/compression/compression_internal.cc +5 -8
- data/src/core/lib/compression/compression_internal.h +3 -5
- data/src/core/lib/compression/message_compress.cc +9 -12
- data/src/core/lib/debug/trace.cc +48 -66
- data/src/core/lib/debug/trace.h +2 -97
- data/src/core/lib/debug/trace_flags.cc +244 -0
- data/src/core/lib/debug/trace_flags.h +132 -0
- data/src/core/lib/debug/trace_impl.h +125 -0
- data/src/core/lib/event_engine/ares_resolver.cc +149 -75
- data/src/core/lib/event_engine/ares_resolver.h +13 -20
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +13 -16
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +44 -31
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +26 -30
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +3 -5
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -4
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +2 -3
- data/src/core/lib/event_engine/common_closures.h +3 -3
- data/src/core/lib/event_engine/default_event_engine.cc +13 -15
- data/src/core/lib/event_engine/default_event_engine.h +4 -4
- data/src/core/lib/event_engine/default_event_engine_factory.cc +2 -2
- data/src/core/lib/event_engine/default_event_engine_factory.h +2 -2
- data/src/core/lib/event_engine/event_engine.cc +35 -4
- data/src/core/lib/event_engine/event_engine_context.h +4 -2
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +1 -2
- data/src/core/lib/event_engine/extensions/supports_fd.h +27 -3
- data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
- data/src/core/lib/event_engine/forkable.cc +7 -9
- data/src/core/lib/event_engine/forkable.h +2 -14
- data/src/core/lib/event_engine/grpc_polled_fd.h +3 -4
- data/src/core/lib/event_engine/handle_containers.h +2 -3
- data/src/core/lib/event_engine/memory_allocator_factory.h +3 -4
- data/src/core/lib/event_engine/nameser.h +1 -1
- data/src/core/lib/event_engine/poller.h +2 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +21 -23
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +8 -9
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +17 -21
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +4 -5
- data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +4 -5
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +4 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +4 -4
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +1 -2
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +5 -7
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -3
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -3
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +87 -79
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +11 -12
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +82 -58
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +18 -16
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +3 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +24 -28
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +14 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +22 -28
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +44 -38
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
- data/src/core/lib/event_engine/posix_engine/timer.cc +5 -5
- data/src/core/lib/event_engine/posix_engine/timer.h +5 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +12 -21
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +5 -7
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +7 -9
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +3 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +4 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
- data/src/core/lib/event_engine/query_extensions.h +2 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +3 -5
- data/src/core/lib/event_engine/resolved_address.cc +5 -5
- data/src/core/lib/event_engine/shim.cc +1 -1
- data/src/core/lib/event_engine/slice.cc +3 -6
- data/src/core/lib/event_engine/slice_buffer.cc +1 -2
- data/src/core/lib/event_engine/tcp_socket_utils.cc +9 -18
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -3
- data/src/core/lib/event_engine/thread_local.h +1 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -7
- data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -7
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -3
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +40 -47
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +10 -15
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +9 -8
- data/src/core/lib/event_engine/time_util.cc +2 -2
- data/src/core/lib/event_engine/time_util.h +1 -2
- data/src/core/lib/event_engine/utils.cc +19 -5
- data/src/core/lib/event_engine/utils.h +10 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +126 -101
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
- data/src/core/lib/event_engine/windows/iocp.cc +14 -14
- data/src/core/lib/event_engine/windows/iocp.h +2 -3
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
- data/src/core/lib/event_engine/windows/win_socket.cc +42 -33
- data/src/core/lib/event_engine/windows/win_socket.h +8 -10
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +46 -33
- data/src/core/lib/event_engine/windows/windows_engine.cc +243 -134
- data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
- data/src/core/lib/event_engine/windows/windows_listener.cc +22 -37
- data/src/core/lib/event_engine/windows/windows_listener.h +4 -5
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +3 -5
- data/src/core/lib/event_engine/work_queue/work_queue.h +2 -3
- data/src/core/lib/experiments/config.cc +55 -28
- data/src/core/lib/experiments/config.h +56 -3
- data/src/core/lib/experiments/experiments.cc +376 -323
- data/src/core/lib/experiments/experiments.h +166 -141
- data/src/core/lib/iomgr/buffer_list.cc +6 -6
- data/src/core/lib/iomgr/buffer_list.h +2 -3
- data/src/core/lib/iomgr/call_combiner.cc +39 -66
- data/src/core/lib/iomgr/call_combiner.h +13 -17
- data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.cc +2 -2
- data/src/core/lib/iomgr/closure.h +15 -20
- data/src/core/lib/iomgr/combiner.cc +33 -48
- data/src/core/lib/iomgr/combiner.h +2 -5
- data/src/core/lib/iomgr/endpoint.cc +0 -6
- data/src/core/lib/iomgr/endpoint.h +3 -4
- data/src/core/lib/iomgr/endpoint_cfstream.cc +40 -73
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +3 -6
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +6 -8
- data/src/core/lib/iomgr/error.cc +22 -32
- data/src/core/lib/iomgr/error.h +7 -10
- data/src/core/lib/iomgr/error_cfstream.cc +1 -3
- data/src/core/lib/iomgr/ev_apple.cc +16 -24
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +69 -115
- data/src/core/lib/iomgr/ev_poll_posix.cc +53 -53
- data/src/core/lib/iomgr/ev_posix.cc +67 -58
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +10 -13
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +34 -52
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +2 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +9 -13
- data/src/core/lib/iomgr/exec_ctx.cc +10 -14
- data/src/core/lib/iomgr/exec_ctx.h +33 -25
- data/src/core/lib/iomgr/executor.cc +55 -53
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/fork_posix.cc +11 -15
- data/src/core/lib/iomgr/fork_windows.cc +3 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +4 -4
- data/src/core/lib/iomgr/iocp_windows.cc +8 -10
- data/src/core/lib/iomgr/iomgr.cc +18 -24
- data/src/core/lib/iomgr/iomgr.h +1 -2
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +1 -2
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +4 -5
- data/src/core/lib/iomgr/lockfree_event.cc +10 -20
- data/src/core/lib/iomgr/nameser.h +1 -1
- data/src/core/lib/iomgr/polling_entity.cc +13 -7
- data/src/core/lib/iomgr/pollset.h +0 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +1 -2
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/port.h +2 -2
- data/src/core/lib/iomgr/resolve_address.cc +3 -5
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +1 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
- data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
- data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
- data/src/core/lib/iomgr/resolved_address.h +1 -2
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.cc +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +1 -2
- data/src/core/lib/iomgr/socket_utils.h +1 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +43 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +4 -7
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +7 -11
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
- data/src/core/lib/iomgr/tcp_client_posix.cc +19 -32
- data/src/core/lib/iomgr/tcp_client_windows.cc +8 -13
- data/src/core/lib/iomgr/tcp_posix.cc +86 -156
- data/src/core/lib/iomgr/tcp_posix.h +1 -3
- data/src/core/lib/iomgr/tcp_server.h +2 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +40 -58
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -3
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -11
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +11 -13
- data/src/core/lib/iomgr/tcp_server_windows.cc +20 -28
- data/src/core/lib/iomgr/tcp_windows.cc +32 -62
- data/src/core/lib/iomgr/timer.h +2 -2
- data/src/core/lib/iomgr/timer_generic.cc +72 -105
- data/src/core/lib/iomgr/timer_heap.cc +3 -4
- data/src/core/lib/iomgr/timer_manager.cc +25 -43
- data/src/core/lib/iomgr/timer_manager.h +1 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +4 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -4
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -4
- data/src/core/lib/iomgr/vsock.cc +3 -6
- data/src/core/lib/iomgr/vsock.h +3 -4
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +6 -7
- data/src/core/lib/promise/activity.cc +4 -4
- data/src/core/lib/promise/activity.h +77 -25
- data/src/core/lib/promise/all_ok.h +54 -11
- data/src/core/lib/promise/arena_promise.h +2 -4
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +19 -10
- data/src/core/lib/promise/detail/basic_seq.h +33 -20
- data/src/core/lib/promise/detail/join_state.h +556 -762
- data/src/core/lib/promise/detail/promise_factory.h +47 -31
- data/src/core/lib/promise/detail/promise_like.h +44 -12
- data/src/core/lib/promise/detail/seq_state.h +1314 -1977
- data/src/core/lib/promise/detail/status.h +36 -15
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -3
- data/src/core/lib/promise/for_each.h +34 -37
- data/src/core/lib/promise/if.h +23 -19
- data/src/core/lib/promise/interceptor_list.h +21 -35
- data/src/core/lib/promise/latch.h +19 -34
- data/src/core/lib/promise/loop.h +25 -12
- data/src/core/lib/promise/map.h +120 -10
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +291 -148
- data/src/core/lib/promise/party.h +192 -386
- data/src/core/lib/promise/pipe.h +21 -44
- data/src/core/lib/promise/poll.h +115 -38
- data/src/core/lib/promise/prioritized_race.h +2 -2
- data/src/core/lib/promise/promise.h +14 -8
- data/src/core/lib/promise/race.h +12 -7
- data/src/core/lib/promise/seq.h +58 -65
- data/src/core/lib/promise/sleep.cc +3 -3
- data/src/core/lib/promise/sleep.h +5 -5
- data/src/core/lib/promise/status_flag.h +165 -49
- data/src/core/lib/promise/try_join.h +37 -21
- data/src/core/lib/promise/try_seq.h +112 -77
- data/src/core/lib/resource_quota/api.cc +4 -6
- data/src/core/lib/resource_quota/api.h +2 -3
- data/src/core/lib/resource_quota/arena.cc +64 -86
- data/src/core/lib/resource_quota/arena.h +148 -212
- data/src/core/lib/resource_quota/connection_quota.cc +2 -3
- data/src/core/lib/resource_quota/connection_quota.h +9 -6
- data/src/core/lib/resource_quota/memory_quota.cc +44 -45
- data/src/core/lib/resource_quota/memory_quota.h +25 -19
- data/src/core/lib/resource_quota/periodic_update.cc +5 -5
- data/src/core/lib/resource_quota/periodic_update.h +2 -4
- data/src/core/lib/resource_quota/resource_quota.h +8 -9
- data/src/core/lib/resource_quota/thread_quota.cc +2 -3
- data/src/core/lib/resource_quota/thread_quota.h +5 -6
- data/src/core/lib/security/authorization/audit_logging.cc +5 -7
- data/src/core/lib/security/authorization/audit_logging.h +5 -6
- data/src/core/lib/security/authorization/authorization_engine.h +3 -3
- data/src/core/lib/security/authorization/authorization_policy_provider.h +4 -5
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -2
- data/src/core/lib/security/authorization/evaluate_args.cc +10 -14
- data/src/core/lib/security/authorization/evaluate_args.h +3 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +2 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +2 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +22 -30
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +5 -3
- data/src/core/lib/security/authorization/matchers.cc +5 -7
- data/src/core/lib/security/authorization/matchers.h +2 -4
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +3 -5
- data/src/core/lib/security/authorization/stdout_logger.cc +4 -5
- data/src/core/lib/security/authorization/stdout_logger.h +4 -4
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -9
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +4 -5
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -3
- data/src/core/lib/security/context/security_context.cc +48 -48
- data/src/core/lib/security/context/security_context.h +47 -18
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +5 -5
- data/src/core/lib/security/credentials/alts/alts_credentials.h +9 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -4
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +4 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +3 -3
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -7
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +7 -8
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +15 -14
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +10 -14
- data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -10
- data/src/core/lib/security/credentials/credentials.cc +18 -19
- data/src/core/lib/security/credentials/credentials.h +12 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +335 -339
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +60 -48
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
- data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +409 -374
- data/src/core/lib/security/credentials/external/external_account_credentials.h +128 -60
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -52
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +32 -11
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +102 -129
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +22 -24
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +9 -8
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +6 -7
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +56 -74
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -10
- data/src/core/lib/security/credentials/iam/iam_credentials.h +8 -7
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +25 -29
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +22 -29
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +10 -10
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +68 -75
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.cc +2 -2
- data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +195 -296
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +50 -73
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -33
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +12 -14
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +35 -47
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +5 -8
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -4
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +4 -5
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +1 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +102 -42
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +14 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -11
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +10 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -10
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -23
- data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -3
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
- data/src/core/lib/security/credentials/tls/tls_utils.h +3 -3
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +305 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +181 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +15 -13
- data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -27
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +24 -24
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +4 -7
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +10 -12
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +4 -6
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +25 -25
- data/src/core/lib/security/security_connector/local/local_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +6 -11
- data/src/core/lib/security/security_connector/security_connector.h +8 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -27
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -3
- data/src/core/lib/security/security_connector/ssl_utils.cc +34 -35
- data/src/core/lib/security/security_connector/ssl_utils.h +7 -9
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +37 -50
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +7 -8
- data/src/core/lib/security/transport/auth_filters.h +7 -3
- data/src/core/lib/security/transport/client_auth_filter.cc +16 -25
- data/src/core/lib/security/transport/server_auth_filter.cc +20 -31
- data/src/core/lib/security/util/json_util.cc +4 -5
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/percent_encoding.cc +2 -5
- data/src/core/lib/slice/slice.cc +4 -7
- data/src/core/lib/slice/slice.h +6 -9
- data/src/core/lib/slice/slice_buffer.cc +5 -7
- data/src/core/lib/slice/slice_buffer.h +3 -4
- data/src/core/lib/slice/slice_internal.h +3 -6
- data/src/core/lib/slice/slice_refcount.h +8 -15
- data/src/core/lib/slice/slice_string_helpers.cc +1 -1
- data/src/core/lib/slice/slice_string_helpers.h +1 -2
- data/src/core/lib/surface/byte_buffer.cc +1 -2
- data/src/core/lib/surface/byte_buffer_reader.cc +3 -6
- data/src/core/lib/surface/call.cc +161 -3825
- data/src/core/lib/surface/call.h +63 -157
- data/src/core/lib/surface/call_details.cc +4 -3
- data/src/core/lib/surface/call_log_batch.cc +8 -11
- data/src/core/lib/surface/call_test_only.h +1 -2
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +488 -0
- data/src/core/lib/surface/channel.cc +41 -40
- data/src/core/lib/surface/channel.h +21 -19
- data/src/core/lib/surface/channel_create.cc +28 -13
- data/src/core/lib/surface/channel_create.h +5 -5
- data/src/core/lib/surface/channel_init.cc +269 -266
- data/src/core/lib/surface/channel_init.h +173 -119
- data/src/core/lib/surface/client_call.cc +449 -0
- data/src/core/lib/surface/client_call.h +192 -0
- data/src/core/lib/surface/completion_queue.cc +111 -107
- data/src/core/lib/surface/completion_queue.h +4 -13
- data/src/core/lib/surface/completion_queue_factory.cc +1 -3
- data/src/core/lib/surface/connection_context.cc +77 -0
- data/src/core/lib/surface/connection_context.h +156 -0
- data/src/core/lib/surface/event_string.cc +9 -3
- data/src/core/lib/surface/event_string.h +2 -2
- data/src/core/lib/surface/filter_stack_call.cc +1156 -0
- data/src/core/lib/surface/filter_stack_call.h +366 -0
- data/src/core/lib/surface/init.cc +59 -19
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/init_internally.h +13 -2
- data/src/core/lib/surface/lame_client.cc +12 -15
- data/src/core/lib/surface/lame_client.h +6 -5
- data/src/core/lib/surface/legacy_channel.cc +58 -44
- data/src/core/lib/surface/legacy_channel.h +15 -25
- data/src/core/lib/surface/metadata_array.cc +5 -5
- data/src/core/lib/surface/server_call.cc +242 -0
- data/src/core/lib/surface/server_call.h +167 -0
- data/src/core/lib/surface/validate_metadata.cc +3 -4
- data/src/core/lib/surface/validate_metadata.h +2 -5
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +12 -20
- data/src/core/lib/transport/bdp_estimator.h +10 -16
- data/src/core/lib/transport/call_arena_allocator.cc +4 -18
- data/src/core/lib/transport/call_arena_allocator.h +30 -12
- data/src/core/lib/transport/call_destination.h +76 -0
- data/src/core/lib/transport/call_filters.cc +67 -405
- data/src/core/lib/transport/call_filters.h +810 -752
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +3 -3
- data/src/core/lib/transport/call_spine.cc +51 -65
- data/src/core/lib/transport/call_spine.h +294 -367
- data/src/core/lib/transport/call_state.cc +39 -0
- data/src/core/lib/transport/call_state.h +1154 -0
- data/src/core/lib/transport/connectivity_state.cc +37 -45
- data/src/core/lib/transport/connectivity_state.h +5 -8
- data/src/core/lib/transport/error_utils.cc +3 -4
- data/src/core/lib/transport/error_utils.h +4 -5
- data/src/core/lib/transport/interception_chain.cc +155 -0
- data/src/core/lib/transport/interception_chain.h +262 -0
- data/src/core/lib/transport/message.cc +2 -2
- data/src/core/lib/transport/message.h +5 -0
- data/src/core/lib/transport/metadata.cc +27 -3
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.cc +12 -5
- data/src/core/lib/transport/metadata_batch.h +73 -13
- data/src/core/lib/transport/metadata_compression_traits.h +3 -4
- data/src/core/lib/transport/metadata_info.h +1 -1
- data/src/core/lib/transport/parsed_metadata.h +3 -5
- data/src/core/lib/transport/simple_slice_based_metadata.h +1 -2
- data/src/core/lib/transport/status_conversion.h +1 -1
- data/src/core/lib/transport/timeout_encoding.cc +7 -8
- data/src/core/lib/transport/timeout_encoding.h +2 -4
- data/src/core/lib/transport/transport.cc +7 -12
- data/src/core/lib/transport/transport.h +59 -56
- data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
- data/src/core/lib/transport/transport_op_string.cc +4 -6
- data/src/core/load_balancing/address_filtering.cc +2 -4
- data/src/core/load_balancing/address_filtering.h +4 -5
- data/src/core/load_balancing/backend_metric_data.h +2 -2
- data/src/core/load_balancing/backend_metric_parser.cc +1 -2
- data/src/core/load_balancing/backend_metric_parser.h +1 -3
- data/src/core/load_balancing/child_policy_handler.cc +37 -41
- data/src/core/load_balancing/child_policy_handler.h +4 -5
- data/src/core/load_balancing/delegating_helper.h +6 -7
- data/src/core/load_balancing/endpoint_list.cc +22 -14
- data/src/core/load_balancing/endpoint_list.h +20 -15
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +12 -6
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +5 -2
- data/src/core/load_balancing/grpclb/grpclb.cc +154 -188
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -7
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -10
- data/src/core/load_balancing/grpclb/load_balancer_api.h +4 -6
- data/src/core/load_balancing/health_check_client.cc +60 -80
- data/src/core/load_balancing/health_check_client.h +3 -3
- data/src/core/load_balancing/health_check_client_internal.h +8 -9
- data/src/core/load_balancing/lb_policy.cc +5 -8
- data/src/core/load_balancing/lb_policy.h +73 -47
- data/src/core/load_balancing/lb_policy_factory.h +5 -6
- data/src/core/load_balancing/lb_policy_registry.cc +5 -7
- data/src/core/load_balancing/lb_policy_registry.h +5 -6
- data/src/core/load_balancing/oob_backend_metric.cc +19 -25
- data/src/core/load_balancing/oob_backend_metric.h +3 -3
- data/src/core/load_balancing/oob_backend_metric_internal.h +8 -9
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +141 -186
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +6 -8
- data/src/core/load_balancing/pick_first/pick_first.cc +312 -360
- data/src/core/load_balancing/priority/priority.cc +94 -138
- data/src/core/load_balancing/ring_hash/ring_hash.cc +210 -146
- data/src/core/load_balancing/ring_hash/ring_hash.h +10 -18
- data/src/core/load_balancing/rls/rls.cc +341 -346
- data/src/core/load_balancing/round_robin/round_robin.cc +66 -98
- data/src/core/load_balancing/subchannel_interface.h +17 -6
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +4 -5
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +2 -3
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +151 -171
- data/src/core/load_balancing/weighted_target/weighted_target.cc +72 -108
- data/src/core/load_balancing/xds/cds.cc +54 -70
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +179 -156
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +53 -85
- data/src/core/load_balancing/xds/xds_override_host.cc +121 -183
- data/src/core/load_balancing/xds/xds_override_host.h +6 -7
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +39 -49
- data/src/core/plugin_registry/grpc_plugin_registry.cc +6 -8
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +6 -1
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +91 -66
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +2 -3
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +4 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +119 -101
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +166 -151
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/resolver/dns/dns_resolver_plugin.cc +10 -11
- data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +52 -59
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
- data/src/core/resolver/dns/native/dns_resolver.cc +22 -31
- data/src/core/resolver/dns/native/dns_resolver.h +1 -1
- data/src/core/resolver/endpoint_addresses.cc +2 -5
- data/src/core/resolver/endpoint_addresses.h +5 -3
- data/src/core/resolver/fake/fake_resolver.cc +8 -10
- data/src/core/resolver/fake/fake_resolver.h +8 -9
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +24 -26
- data/src/core/resolver/polling_resolver.cc +39 -55
- data/src/core/resolver/polling_resolver.h +8 -9
- data/src/core/resolver/resolver.cc +2 -6
- data/src/core/resolver/resolver.h +4 -10
- data/src/core/resolver/resolver_factory.h +4 -5
- data/src/core/resolver/resolver_registry.cc +8 -10
- data/src/core/resolver/resolver_registry.h +4 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +8 -9
- data/src/core/resolver/xds/xds_config.cc +95 -0
- data/src/core/resolver/xds/xds_config.h +108 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +213 -298
- data/src/core/resolver/xds/xds_dependency_manager.h +30 -89
- data/src/core/resolver/xds/xds_resolver.cc +141 -141
- data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
- data/src/core/server/server.cc +657 -492
- data/src/core/server/server.h +246 -93
- data/src/core/server/server_call_tracer_filter.cc +21 -20
- data/src/core/server/server_call_tracer_filter.h +1 -1
- data/src/core/server/server_config_selector.h +6 -7
- data/src/core/server/server_config_selector_filter.cc +17 -12
- data/src/core/server/server_interface.h +2 -0
- data/src/core/server/xds_channel_stack_modifier.cc +5 -5
- data/src/core/server/xds_channel_stack_modifier.h +6 -7
- data/src/core/server/xds_server_config_fetcher.cc +133 -207
- data/src/core/service_config/service_config.h +4 -6
- data/src/core/service_config/service_config_call_data.h +21 -20
- data/src/core/service_config/service_config_channel_arg_filter.cc +17 -13
- data/src/core/service_config/service_config_impl.cc +9 -11
- data/src/core/service_config/service_config_impl.h +5 -8
- data/src/core/service_config/service_config_parser.cc +4 -8
- data/src/core/service_config/service_config_parser.h +3 -5
- data/src/core/telemetry/call_tracer.cc +386 -0
- data/src/core/telemetry/call_tracer.h +263 -0
- data/src/core/telemetry/histogram_view.cc +69 -0
- data/src/core/telemetry/histogram_view.h +36 -0
- data/src/core/telemetry/metrics.cc +180 -0
- data/src/core/telemetry/metrics.h +569 -0
- data/src/core/telemetry/stats.cc +67 -0
- data/src/core/telemetry/stats.h +62 -0
- data/src/core/telemetry/stats_data.cc +931 -0
- data/src/core/telemetry/stats_data.h +705 -0
- data/src/core/telemetry/tcp_tracer.h +143 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +5 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -3
- data/src/core/tsi/alts/crypt/gsec.h +3 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_counter.h +3 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +2 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -18
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -1
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -12
- data/src/core/tsi/alts/frame_protector/frame_handler.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +41 -46
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +2 -4
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +55 -57
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +3 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +3 -4
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +14 -17
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +11 -12
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +9 -11
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +10 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +1 -2
- data/src/core/tsi/fake_transport_security.cc +27 -32
- data/src/core/tsi/local_transport_security.cc +9 -10
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -12
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +4 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -9
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +7 -8
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -4
- data/src/core/tsi/ssl_transport_security.cc +135 -113
- data/src/core/tsi/ssl_transport_security.h +6 -8
- data/src/core/tsi/ssl_transport_security_utils.cc +77 -24
- data/src/core/tsi/ssl_transport_security_utils.h +14 -5
- data/src/core/tsi/ssl_types.h +1 -2
- data/src/core/tsi/transport_security.cc +2 -7
- data/src/core/tsi/transport_security.h +1 -4
- data/src/core/tsi/transport_security_interface.h +3 -8
- data/src/core/util/alloc.cc +69 -0
- data/src/core/util/alloc.h +28 -0
- data/src/core/util/atomic_utils.h +47 -0
- data/src/core/util/avl.h +324 -0
- data/src/core/util/backoff.cc +57 -0
- data/src/core/util/backoff.h +86 -0
- data/src/core/util/bitset.h +224 -0
- data/src/core/util/chunked_vector.h +256 -0
- data/src/core/util/construct_destruct.h +41 -0
- data/src/core/util/cpp_impl_of.h +49 -0
- data/src/core/util/crash.cc +40 -0
- data/src/core/util/crash.h +36 -0
- data/src/core/util/debug_location.h +106 -0
- data/src/core/util/directory_reader.h +48 -0
- data/src/core/util/down_cast.h +48 -0
- data/src/core/util/dual_ref_counted.h +376 -0
- data/src/core/util/dump_args.cc +54 -0
- data/src/core/util/dump_args.h +122 -0
- data/src/core/util/env.h +53 -0
- data/src/core/util/event_log.cc +87 -0
- data/src/core/util/event_log.h +79 -0
- data/src/core/util/examine_stack.cc +43 -0
- data/src/core/util/examine_stack.h +45 -0
- data/src/core/util/fork.cc +241 -0
- data/src/core/util/fork.h +98 -0
- data/src/core/util/gcp_metadata_query.cc +132 -0
- data/src/core/util/gcp_metadata_query.h +86 -0
- data/src/core/util/gethostname.h +26 -0
- data/src/core/util/gethostname_fallback.cc +30 -0
- data/src/core/util/gethostname_host_name_max.cc +39 -0
- data/src/core/util/gethostname_sysconf.cc +39 -0
- data/src/core/util/glob.cc +70 -0
- data/src/core/util/glob.h +29 -0
- data/src/core/util/gpr_time.cc +268 -0
- data/src/core/util/grpc_if_nametoindex.h +29 -0
- data/src/core/util/grpc_if_nametoindex_posix.cc +41 -0
- data/src/core/util/grpc_if_nametoindex_unsupported.cc +36 -0
- data/src/core/util/host_port.cc +114 -0
- data/src/core/util/host_port.h +57 -0
- data/src/core/util/http_client/format_request.cc +134 -0
- data/src/core/util/http_client/format_request.h +37 -0
- data/src/core/util/http_client/httpcli.cc +428 -0
- data/src/core/util/http_client/httpcli.h +279 -0
- data/src/core/util/http_client/httpcli_security_connector.cc +210 -0
- data/src/core/util/http_client/httpcli_ssl_credentials.h +38 -0
- data/src/core/util/http_client/parser.cc +447 -0
- data/src/core/util/http_client/parser.h +126 -0
- data/src/core/util/if_list.h +4530 -0
- data/src/core/util/iphone/cpu.cc +43 -0
- data/src/core/util/json/json.h +29 -0
- data/src/core/util/json/json_args.h +34 -0
- data/src/core/util/json/json_channel_args.h +41 -0
- data/src/core/util/json/json_object_loader.cc +215 -0
- data/src/core/util/json/json_object_loader.h +644 -0
- data/src/core/util/json/json_reader.cc +953 -0
- data/src/core/util/json/json_reader.h +33 -0
- data/src/core/util/json/json_util.cc +101 -0
- data/src/core/util/json/json_util.h +163 -0
- data/src/core/util/json/json_writer.cc +337 -0
- data/src/core/util/json/json_writer.h +33 -0
- data/src/core/util/latent_see.cc +163 -0
- data/src/core/util/latent_see.h +334 -0
- data/src/core/util/linux/cpu.cc +86 -0
- data/src/core/util/linux/env.cc +62 -0
- data/src/core/util/load_file.cc +75 -0
- data/src/core/util/load_file.h +33 -0
- data/src/core/util/log.cc +127 -0
- data/src/core/util/lru_cache.h +122 -0
- data/src/core/util/manual_constructor.h +145 -0
- data/src/core/util/match.h +74 -0
- data/src/core/util/matchers.cc +337 -0
- data/src/core/util/matchers.h +162 -0
- data/src/core/util/memory.h +52 -0
- data/src/core/util/mpscq.cc +108 -0
- data/src/core/util/mpscq.h +98 -0
- data/src/core/util/msys/tmpfile.cc +57 -0
- data/src/core/util/no_destruct.h +95 -0
- data/src/core/util/notification.h +66 -0
- data/src/core/util/orphanable.h +153 -0
- data/src/core/util/overload.h +59 -0
- data/src/core/util/packed_table.h +40 -0
- data/src/core/util/per_cpu.cc +34 -0
- data/src/core/util/per_cpu.h +102 -0
- data/src/core/util/posix/cpu.cc +83 -0
- data/src/core/util/posix/directory_reader.cc +82 -0
- data/src/core/util/posix/env.cc +47 -0
- data/src/core/util/posix/stat.cc +54 -0
- data/src/core/util/posix/string.cc +71 -0
- data/src/core/util/posix/sync.cc +158 -0
- data/src/core/util/posix/thd.cc +243 -0
- data/src/core/util/posix/time.cc +123 -0
- data/src/core/util/posix/tmpfile.cc +71 -0
- data/src/core/util/random_early_detection.cc +33 -0
- data/src/core/util/random_early_detection.h +61 -0
- data/src/core/util/ref_counted.h +403 -0
- data/src/core/util/ref_counted_ptr.h +443 -0
- data/src/core/util/ref_counted_string.cc +42 -0
- data/src/core/util/ref_counted_string.h +159 -0
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/util/single_set_ptr.h +89 -0
- data/src/core/util/sorted_pack.h +89 -0
- data/src/core/util/spinlock.h +51 -0
- data/src/core/util/stat.h +35 -0
- data/src/core/util/status_helper.cc +431 -0
- data/src/core/util/status_helper.h +160 -0
- data/src/core/util/strerror.cc +40 -0
- data/src/core/util/strerror.h +29 -0
- data/src/core/util/string.cc +341 -0
- data/src/core/util/string.h +110 -0
- data/src/core/util/sync.cc +123 -0
- data/src/core/util/sync.h +199 -0
- data/src/core/util/sync_abseil.cc +107 -0
- data/src/core/util/table.h +486 -0
- data/src/core/util/tchar.cc +49 -0
- data/src/core/util/tchar.h +33 -0
- data/src/core/util/thd.h +193 -0
- data/src/core/util/time.cc +240 -0
- data/src/core/util/time.h +385 -0
- data/src/core/util/time_averaged_stats.cc +60 -0
- data/src/core/util/time_averaged_stats.h +79 -0
- data/src/core/util/time_precise.cc +168 -0
- data/src/core/util/time_precise.h +68 -0
- data/src/core/util/time_util.cc +80 -0
- data/src/core/util/time_util.h +41 -0
- data/src/core/util/tmpfile.h +31 -0
- data/src/core/util/type_list.h +32 -0
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/util/unique_type_name.h +123 -0
- data/src/core/util/upb_utils.h +43 -0
- data/src/core/util/uri.cc +376 -0
- data/src/core/util/uri.h +105 -0
- data/src/core/util/useful.h +153 -0
- data/src/core/util/uuid_v4.cc +37 -0
- data/src/core/util/uuid_v4.h +35 -0
- data/src/core/util/validation_errors.cc +73 -0
- data/src/core/util/validation_errors.h +144 -0
- data/src/core/util/windows/cpu.cc +34 -0
- data/src/core/util/windows/directory_reader.cc +79 -0
- data/src/core/util/windows/env.cc +56 -0
- data/src/core/util/windows/stat.cc +50 -0
- data/src/core/util/windows/string.cc +68 -0
- data/src/core/util/windows/string_util.cc +53 -0
- data/src/core/util/windows/sync.cc +122 -0
- data/src/core/util/windows/thd.cc +182 -0
- data/src/core/util/windows/time.cc +105 -0
- data/src/core/util/windows/tmpfile.cc +66 -0
- data/src/core/util/work_serializer.cc +538 -0
- data/src/core/util/work_serializer.h +105 -0
- data/src/core/util/xxhash_inline.h +29 -0
- data/src/core/xds/grpc/certificate_provider_store.cc +5 -6
- data/src/core/xds/grpc/certificate_provider_store.h +13 -14
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +7 -8
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +9 -10
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +5 -5
- data/src/core/xds/grpc/xds_audit_logger_registry.h +4 -5
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +8 -166
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +9 -39
- data/src/core/xds/grpc/xds_certificate_provider.cc +4 -5
- data/src/core/xds/grpc/xds_certificate_provider.h +12 -11
- data/src/core/xds/grpc/xds_client_grpc.cc +98 -76
- data/src/core/xds/grpc/xds_client_grpc.h +16 -10
- data/src/core/xds/grpc/xds_cluster.cc +12 -737
- data/src/core/xds/grpc/xds_cluster.h +36 -45
- data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
- data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +6 -9
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +5 -6
- data/src/core/xds/grpc/xds_common_types.cc +33 -438
- data/src/core/xds/grpc/xds_common_types.h +10 -28
- data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
- data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
- data/src/core/xds/grpc/xds_endpoint.cc +0 -420
- data/src/core/xds/grpc/xds_endpoint.h +7 -29
- data/src/core/xds/grpc/xds_endpoint_parser.cc +475 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
- data/src/core/xds/grpc/xds_health_status.cc +0 -2
- data/src/core/xds/grpc/xds_health_status.h +0 -3
- data/src/core/xds/grpc/xds_http_fault_filter.cc +28 -16
- data/src/core/xds/grpc/xds_http_fault_filter.h +11 -7
- data/src/core/xds/grpc/xds_http_filter.h +134 -0
- data/src/core/xds/grpc/xds_http_filter_registry.cc +122 -0
- data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +64 -49
- data/src/core/xds/grpc/xds_http_rbac_filter.h +11 -7
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +24 -11
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +11 -7
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +23 -28
- data/src/core/xds/grpc/xds_lb_policy_registry.h +5 -6
- data/src/core/xds/grpc/xds_listener.cc +19 -986
- data/src/core/xds/grpc/xds_listener.h +2 -35
- data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
- data/src/core/xds/grpc/xds_listener_parser.h +59 -0
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +158 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
- data/src/core/xds/grpc/xds_route_config.cc +3 -919
- data/src/core/xds/grpc/xds_route_config.h +8 -41
- data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
- data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
- data/src/core/xds/grpc/xds_routing.cc +60 -27
- data/src/core/xds/grpc/xds_routing.h +12 -6
- data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
- data/src/core/xds/grpc/xds_server_grpc.h +63 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +99 -56
- data/src/core/xds/grpc/xds_transport_grpc.h +34 -23
- data/src/core/xds/xds_client/lrs_client.cc +1292 -0
- data/src/core/xds/xds_client/lrs_client.h +394 -0
- data/src/core/xds/xds_client/xds_api.cc +23 -464
- data/src/core/xds/xds_client/xds_api.h +6 -161
- data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
- data/src/core/xds/xds_client/xds_bootstrap.cc +3 -4
- data/src/core/xds/xds_client/xds_bootstrap.h +3 -3
- data/src/core/xds/xds_client/xds_client.cc +731 -1216
- data/src/core/xds/xds_client/xds_client.h +139 -114
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +2 -2
- data/src/core/xds/xds_client/xds_resource_type.h +4 -5
- data/src/core/xds/xds_client/xds_resource_type_impl.h +13 -9
- data/src/core/xds/xds_client/xds_transport.h +29 -14
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +2 -1
- data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
- data/src/ruby/ext/grpc/rb_call.c +15 -8
- data/src/ruby/ext/grpc/rb_call_credentials.c +39 -33
- data/src/ruby/ext/grpc/rb_channel.c +42 -37
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -6
- data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
- data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
- data/src/ruby/ext/grpc/rb_grpc.c +16 -16
- data/src/ruby/ext/grpc/rb_grpc.h +8 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -14
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -21
- data/src/ruby/ext/grpc/rb_server.c +47 -28
- data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -6
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +4 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- data/src/ruby/lib/grpc/logconfig.rb +13 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
- data/src/ruby/spec/logconfig_spec.rb +30 -0
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
- data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
- data/third_party/abseil-cpp/absl/base/config.h +32 -51
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +48 -0
- data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
- data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
- data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
- data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
- data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
- data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
- data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
- data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
- data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
- data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/log/globals.h +28 -15
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +20 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +63 -21
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
- data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
- data/third_party/abseil-cpp/absl/log/log.h +5 -1
- data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
- data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
- data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
- data/third_party/abseil-cpp/absl/status/status.cc +0 -4
- data/third_party/abseil-cpp/absl/status/status.h +4 -4
- data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
- data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
- data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
- data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
- data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
- data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
- data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
- data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
- data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
- data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
- data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
- data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
- data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
- data/third_party/abseil-cpp/absl/time/format.cc +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
- data/third_party/abseil-cpp/absl/time/time.h +73 -29
- data/third_party/abseil-cpp/absl/types/compare.h +505 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
- data/third_party/abseil-cpp/absl/types/optional.h +15 -18
- data/third_party/abseil-cpp/absl/types/span.h +3 -2
- data/third_party/abseil-cpp/absl/types/variant.h +19 -24
- data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc +285 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.cc +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.cc +84 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.cc +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc +466 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.cc +281 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.cc +235 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.cc +248 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.cc +214 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.cc +397 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.cc +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.cc +241 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc +974 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc +711 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.cc +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.cc +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.cc +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.cc +476 -0
- data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +119 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.cc +700 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.cc +310 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.cc +552 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.cc +334 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.cc +482 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.cc +102 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.cc +169 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.cc +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.cc +465 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.cc +161 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.cc +266 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc +702 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc +904 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.cc +156 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.cc +224 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.cc +284 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.cc +838 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.cc +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.cc +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.cc +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.cc +459 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.cc +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.cc +599 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.cc +675 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +75 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +94 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +54 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +183 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.cc +2154 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.cc +18 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.cc +527 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.cc +165 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.cc +348 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc +996 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc +419 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.cc +607 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.cc +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.cc +510 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.cc +401 -0
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.cc +900 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.cc +429 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc +482 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.cc +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.cc +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc +333 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.cc +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc +332 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.cc +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc +225 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.cc +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.cc +647 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc +239 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.cc +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.cc +380 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.cc +211 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.cc +235 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.cc.inc +1281 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +34 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc +242 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc +274 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +242 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.cc.inc +311 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.cc.inc +416 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.cc.inc +232 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc +867 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.cc.inc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc +1320 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc +394 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc +339 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc +525 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc +740 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc +1074 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.cc.inc +354 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc +362 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc +499 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.cc.inc +295 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.cc.inc +714 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc +1456 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.cc.inc +322 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +14 -10
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc +485 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc +292 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.cc.inc +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.cc.inc +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc +1038 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc +559 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.cc.inc +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc +358 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.cc.inc +1163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.cc.inc +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.cc.inc +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.cc.inc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.cc.inc +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.cc.inc +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.cc.inc +273 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.cc.inc +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.cc.inc +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +29 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.cc +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.cc.inc +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.cc.inc +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.cc.inc +791 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.cc.inc +302 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +53 -33
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.cc.inc +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.cc.inc +221 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +2 -81
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc +481 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.cc.inc +242 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc +1042 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc +1348 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.cc.inc +129 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc +1042 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.cc.inc +327 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +11 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.cc.inc +432 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.cc.inc +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.cc.inc +515 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.cc +1095 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.cc +2177 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +278 -261
- data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/keccak/keccak.cc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.cc +845 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.cc +351 -0
- data/third_party/boringssl-with-bazel/src/crypto/md4/md4.cc +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/md5/md5.cc +285 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.cc +625 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +76 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.cc +1790 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.cc +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.cc +294 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc +788 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.cc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.cc +250 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.cc +183 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc +193 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc +524 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc +528 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc +1345 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.cc +314 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.cc +310 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.cc +850 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.cc +262 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.cc +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.cc +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.cc +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.cc +60 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.cc +42 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.cc +178 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.cc +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.cc +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.cc +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.cc +102 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.cc +324 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.cc +573 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_extra.cc +17 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha1.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha256.cc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha512.cc +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/address.h +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/fors.cc +169 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/fors.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/internal.h +63 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/merkle.cc +161 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/merkle.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/params.h +83 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/slhdsa.cc +307 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/thash.cc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/thash.h +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/wots.cc +171 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/wots.h +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.cc +538 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.cc +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.cc +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.cc +1656 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.cc +685 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.cc +1263 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.cc +94 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.cc +116 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.cc +178 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc +584 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.cc +401 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.cc +796 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.cc +405 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.cc +223 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.cc +634 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.cc +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.cc +144 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc +416 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.cc +488 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.cc +599 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.cc +115 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.cc +156 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.cc +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.cc +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc +213 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.cc +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.cc +347 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.cc +555 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.cc +84 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.cc +142 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.cc +150 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.cc +225 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.cc +632 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.cc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.cc +1395 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.cc +228 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.cc +600 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.cc +291 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc +1642 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.cc +482 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.cc +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.cc +360 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.cc +384 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc +534 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.cc +212 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc +548 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc +211 -0
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc +1515 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +237 -275
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +12 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +82 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +22 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +6 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +17 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +11 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +9 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +10 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +2 -40
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +133 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +54 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +267 -143
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -23
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +2 -6
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +671 -329
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +116 -113
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +164 -17
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +4 -12
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +99 -42
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +445 -112
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +23 -14
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +387 -359
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +48 -58
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +44 -36
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +183 -165
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +81 -62
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +970 -329
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +69 -53
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +13 -11
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +23 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +90 -98
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +38 -64
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +8 -5
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +103 -44
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +210 -220
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +70 -12
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +114 -16
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +200 -183
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +74 -36
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +79 -95
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +3 -9
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +91 -16
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +34 -14
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +51 -56
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +22 -25
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +45 -28
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +69 -51
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +279 -134
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +97 -60
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +51 -62
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +40 -48
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +3 -0
- data/third_party/upb/upb/base/string_view.h +1 -1
- data/third_party/upb/upb/json/decode.c +60 -13
- data/third_party/upb/upb/json/decode.h +26 -3
- data/third_party/upb/upb/json/encode.c +2 -2
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/arena.c +80 -4
- data/third_party/upb/upb/mem/arena.h +20 -9
- data/third_party/upb/upb/mem/arena.hpp +5 -1
- data/third_party/upb/upb/mem/internal/arena.h +11 -8
- data/third_party/upb/upb/message/accessors.c +6 -7
- data/third_party/upb/upb/message/accessors.h +186 -376
- data/third_party/upb/upb/message/array.c +26 -3
- data/third_party/upb/upb/message/array.h +17 -9
- data/third_party/upb/upb/message/compat.c +5 -5
- data/third_party/upb/upb/message/compat.h +3 -3
- data/third_party/upb/upb/message/copy.c +23 -20
- data/third_party/upb/upb/message/internal/accessors.h +617 -55
- data/third_party/upb/upb/message/internal/array.h +23 -15
- data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
- data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
- data/third_party/upb/upb/message/internal/extension.c +12 -12
- data/third_party/upb/upb/message/internal/extension.h +9 -12
- data/third_party/upb/upb/message/internal/map.h +15 -0
- data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
- data/third_party/upb/upb/message/internal/message.c +22 -6
- data/third_party/upb/upb/message/internal/message.h +11 -0
- data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
- data/third_party/upb/upb/message/internal/types.h +41 -1
- data/third_party/upb/upb/message/map.c +25 -0
- data/third_party/upb/upb/message/map.h +11 -7
- data/third_party/upb/upb/message/merge.c +38 -0
- data/third_party/upb/upb/message/merge.h +26 -0
- data/third_party/upb/upb/message/message.c +83 -4
- data/third_party/upb/upb/message/message.h +16 -1
- data/third_party/upb/upb/message/tagged_ptr.h +4 -8
- data/third_party/upb/upb/message/value.h +26 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +19 -3
- data/third_party/upb/upb/mini_descriptor/link.c +23 -21
- data/third_party/upb/upb/mini_table/enum.h +2 -4
- data/third_party/upb/upb/mini_table/extension.h +4 -12
- data/third_party/upb/upb/mini_table/extension_registry.c +18 -0
- data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
- data/third_party/upb/upb/mini_table/field.h +12 -38
- data/third_party/upb/upb/mini_table/file.h +6 -19
- data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
- data/third_party/upb/upb/mini_table/internal/extension.h +18 -9
- data/third_party/upb/upb/mini_table/internal/field.h +23 -23
- data/third_party/upb/upb/mini_table/internal/file.h +7 -7
- data/third_party/upb/upb/mini_table/internal/message.c +21 -1
- data/third_party/upb/upb/mini_table/internal/message.h +80 -36
- data/third_party/upb/upb/mini_table/internal/sub.h +9 -4
- data/third_party/upb/upb/mini_table/message.h +23 -22
- data/third_party/upb/upb/mini_table/sub.h +4 -12
- data/third_party/upb/upb/port/def.inc +108 -12
- data/third_party/upb/upb/port/undef.inc +8 -1
- data/third_party/upb/upb/reflection/common.h +1 -11
- data/third_party/upb/upb/reflection/def.hpp +35 -0
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
- data/third_party/upb/upb/reflection/enum_def.c +5 -1
- data/third_party/upb/upb/reflection/enum_def.h +1 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
- data/third_party/upb/upb/reflection/field_def.c +72 -46
- data/third_party/upb/upb/reflection/field_def.h +4 -0
- data/third_party/upb/upb/reflection/file_def.c +30 -4
- data/third_party/upb/upb/reflection/file_def.h +3 -0
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +26 -9
- data/third_party/upb/upb/reflection/message.h +2 -2
- data/third_party/upb/upb/reflection/message_def.c +14 -9
- data/third_party/upb/upb/reflection/method_def.h +8 -7
- data/third_party/upb/upb/reflection/service_def.h +6 -5
- data/third_party/upb/upb/text/encode.c +53 -389
- data/third_party/upb/upb/text/encode.h +1 -11
- data/third_party/upb/upb/text/internal/encode.c +180 -0
- data/third_party/upb/upb/text/internal/encode.h +240 -0
- data/third_party/upb/upb/text/options.h +22 -0
- data/third_party/upb/upb/wire/decode.c +160 -94
- data/third_party/upb/upb/wire/decode.h +15 -2
- data/third_party/upb/upb/wire/encode.c +89 -48
- data/third_party/upb/upb/wire/encode.h +12 -1
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +28 -29
- data/third_party/upb/upb/wire/internal/reader.h +3 -3
- data/third_party/upb/upb/wire/reader.c +1 -2
- data/third_party/upb/upb/wire/reader.h +4 -8
- metadata +628 -540
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/ext/gcp/metadata_query.cc +0 -137
- data/src/core/ext/gcp/metadata_query.h +0 -87
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
- data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +0 -419
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +0 -81
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +0 -30
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +0 -400
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +0 -106
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +0 -33
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +0 -104
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +0 -32
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +0 -66
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +0 -47
- data/src/core/handshaker/security/tsi_error.cc +0 -31
- data/src/core/handshaker/security/tsi_error.h +0 -30
- data/src/core/lib/avl/avl.h +0 -325
- data/src/core/lib/backoff/backoff.cc +0 -47
- data/src/core/lib/backoff/backoff.h +0 -89
- data/src/core/lib/backoff/random_early_detection.cc +0 -33
- data/src/core/lib/backoff/random_early_detection.h +0 -62
- data/src/core/lib/channel/call_tracer.cc +0 -364
- data/src/core/lib/channel/call_tracer.h +0 -226
- data/src/core/lib/channel/channel_stack_trace.cc +0 -19
- data/src/core/lib/channel/channel_stack_trace.h +0 -24
- data/src/core/lib/channel/context.h +0 -105
- data/src/core/lib/channel/metrics.cc +0 -334
- data/src/core/lib/channel/metrics.h +0 -365
- data/src/core/lib/channel/tcp_tracer.h +0 -144
- data/src/core/lib/config/config_vars.cc +0 -154
- data/src/core/lib/config/config_vars.h +0 -131
- data/src/core/lib/config/config_vars_non_generated.cc +0 -49
- data/src/core/lib/config/core_configuration.cc +0 -112
- data/src/core/lib/config/core_configuration.h +0 -244
- data/src/core/lib/config/load_config.cc +0 -79
- data/src/core/lib/config/load_config.h +0 -55
- data/src/core/lib/debug/event_log.cc +0 -88
- data/src/core/lib/debug/event_log.h +0 -81
- data/src/core/lib/debug/histogram_view.cc +0 -69
- data/src/core/lib/debug/histogram_view.h +0 -37
- data/src/core/lib/debug/stats.cc +0 -68
- data/src/core/lib/debug/stats.h +0 -64
- data/src/core/lib/debug/stats_data.cc +0 -752
- data/src/core/lib/debug/stats_data.h +0 -579
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -48
- data/src/core/lib/gpr/alloc.cc +0 -73
- data/src/core/lib/gpr/alloc.h +0 -28
- data/src/core/lib/gpr/android/log.cc +0 -79
- data/src/core/lib/gpr/atm.cc +0 -35
- data/src/core/lib/gpr/iphone/cpu.cc +0 -44
- data/src/core/lib/gpr/linux/cpu.cc +0 -87
- data/src/core/lib/gpr/linux/log.cc +0 -114
- data/src/core/lib/gpr/log.cc +0 -166
- data/src/core/lib/gpr/msys/tmpfile.cc +0 -59
- data/src/core/lib/gpr/posix/cpu.cc +0 -84
- data/src/core/lib/gpr/posix/log.cc +0 -111
- data/src/core/lib/gpr/posix/string.cc +0 -72
- data/src/core/lib/gpr/posix/sync.cc +0 -161
- data/src/core/lib/gpr/posix/time.cc +0 -125
- data/src/core/lib/gpr/posix/tmpfile.cc +0 -73
- data/src/core/lib/gpr/spinlock.h +0 -53
- data/src/core/lib/gpr/string.cc +0 -344
- data/src/core/lib/gpr/string.h +0 -112
- data/src/core/lib/gpr/sync.cc +0 -126
- data/src/core/lib/gpr/sync_abseil.cc +0 -110
- data/src/core/lib/gpr/time.cc +0 -271
- data/src/core/lib/gpr/time_precise.cc +0 -168
- data/src/core/lib/gpr/time_precise.h +0 -69
- data/src/core/lib/gpr/tmpfile.h +0 -32
- data/src/core/lib/gpr/useful.h +0 -184
- data/src/core/lib/gpr/windows/cpu.cc +0 -35
- data/src/core/lib/gpr/windows/log.cc +0 -116
- data/src/core/lib/gpr/windows/string.cc +0 -69
- data/src/core/lib/gpr/windows/string_util.cc +0 -55
- data/src/core/lib/gpr/windows/sync.cc +0 -124
- data/src/core/lib/gpr/windows/time.cc +0 -108
- data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
- data/src/core/lib/gprpp/atomic_utils.h +0 -47
- data/src/core/lib/gprpp/bitset.h +0 -225
- data/src/core/lib/gprpp/chunked_vector.h +0 -258
- data/src/core/lib/gprpp/construct_destruct.h +0 -40
- data/src/core/lib/gprpp/cpp_impl_of.h +0 -49
- data/src/core/lib/gprpp/crash.cc +0 -42
- data/src/core/lib/gprpp/crash.h +0 -37
- data/src/core/lib/gprpp/debug_location.h +0 -99
- data/src/core/lib/gprpp/directory_reader.h +0 -48
- data/src/core/lib/gprpp/down_cast.h +0 -49
- data/src/core/lib/gprpp/dual_ref_counted.h +0 -365
- data/src/core/lib/gprpp/env.h +0 -53
- data/src/core/lib/gprpp/examine_stack.cc +0 -43
- data/src/core/lib/gprpp/examine_stack.h +0 -45
- data/src/core/lib/gprpp/fork.cc +0 -241
- data/src/core/lib/gprpp/fork.h +0 -98
- data/src/core/lib/gprpp/host_port.cc +0 -116
- data/src/core/lib/gprpp/host_port.h +0 -57
- data/src/core/lib/gprpp/if_list.h +0 -4530
- data/src/core/lib/gprpp/linux/env.cc +0 -62
- data/src/core/lib/gprpp/load_file.cc +0 -77
- data/src/core/lib/gprpp/load_file.h +0 -34
- data/src/core/lib/gprpp/manual_constructor.h +0 -146
- data/src/core/lib/gprpp/match.h +0 -75
- data/src/core/lib/gprpp/memory.h +0 -52
- data/src/core/lib/gprpp/mpscq.cc +0 -108
- data/src/core/lib/gprpp/mpscq.h +0 -100
- data/src/core/lib/gprpp/no_destruct.h +0 -95
- data/src/core/lib/gprpp/notification.h +0 -67
- data/src/core/lib/gprpp/orphanable.h +0 -153
- data/src/core/lib/gprpp/overload.h +0 -59
- data/src/core/lib/gprpp/packed_table.h +0 -40
- data/src/core/lib/gprpp/per_cpu.cc +0 -34
- data/src/core/lib/gprpp/per_cpu.h +0 -103
- data/src/core/lib/gprpp/posix/directory_reader.cc +0 -82
- data/src/core/lib/gprpp/posix/env.cc +0 -47
- data/src/core/lib/gprpp/posix/stat.cc +0 -56
- data/src/core/lib/gprpp/posix/thd.cc +0 -247
- data/src/core/lib/gprpp/ref_counted.h +0 -395
- data/src/core/lib/gprpp/ref_counted_ptr.h +0 -445
- data/src/core/lib/gprpp/ref_counted_string.cc +0 -43
- data/src/core/lib/gprpp/ref_counted_string.h +0 -161
- data/src/core/lib/gprpp/single_set_ptr.h +0 -88
- data/src/core/lib/gprpp/sorted_pack.h +0 -89
- data/src/core/lib/gprpp/stat.h +0 -36
- data/src/core/lib/gprpp/status_helper.cc +0 -453
- data/src/core/lib/gprpp/status_helper.h +0 -190
- data/src/core/lib/gprpp/strerror.cc +0 -41
- data/src/core/lib/gprpp/strerror.h +0 -29
- data/src/core/lib/gprpp/sync.h +0 -200
- data/src/core/lib/gprpp/table.h +0 -452
- data/src/core/lib/gprpp/tchar.cc +0 -49
- data/src/core/lib/gprpp/tchar.h +0 -33
- data/src/core/lib/gprpp/thd.h +0 -195
- data/src/core/lib/gprpp/time.cc +0 -242
- data/src/core/lib/gprpp/time.h +0 -384
- data/src/core/lib/gprpp/time_averaged_stats.cc +0 -60
- data/src/core/lib/gprpp/time_averaged_stats.h +0 -79
- data/src/core/lib/gprpp/time_util.cc +0 -82
- data/src/core/lib/gprpp/time_util.h +0 -41
- data/src/core/lib/gprpp/type_list.h +0 -32
- data/src/core/lib/gprpp/unique_type_name.h +0 -104
- data/src/core/lib/gprpp/uuid_v4.cc +0 -37
- data/src/core/lib/gprpp/uuid_v4.h +0 -36
- data/src/core/lib/gprpp/validation_errors.cc +0 -65
- data/src/core/lib/gprpp/validation_errors.h +0 -134
- data/src/core/lib/gprpp/windows/directory_reader.cc +0 -81
- data/src/core/lib/gprpp/windows/env.cc +0 -56
- data/src/core/lib/gprpp/windows/stat.cc +0 -52
- data/src/core/lib/gprpp/windows/thd.cc +0 -184
- data/src/core/lib/gprpp/work_serializer.cc +0 -558
- data/src/core/lib/gprpp/work_serializer.h +0 -106
- data/src/core/lib/gprpp/xxhash_inline.h +0 -29
- data/src/core/lib/http/format_request.cc +0 -136
- data/src/core/lib/http/format_request.h +0 -37
- data/src/core/lib/http/httpcli.cc +0 -392
- data/src/core/lib/http/httpcli.h +0 -267
- data/src/core/lib/http/httpcli_security_connector.cc +0 -213
- data/src/core/lib/http/httpcli_ssl_credentials.h +0 -38
- data/src/core/lib/http/parser.cc +0 -451
- data/src/core/lib/http/parser.h +0 -129
- data/src/core/lib/iomgr/ev_windows.cc +0 -30
- data/src/core/lib/iomgr/gethostname.h +0 -26
- data/src/core/lib/iomgr/gethostname_fallback.cc +0 -30
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +0 -40
- data/src/core/lib/iomgr/gethostname_sysconf.cc +0 -40
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +0 -30
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +0 -43
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +0 -39
- data/src/core/lib/json/json.h +0 -29
- data/src/core/lib/json/json_args.h +0 -34
- data/src/core/lib/json/json_channel_args.h +0 -42
- data/src/core/lib/json/json_object_loader.cc +0 -215
- data/src/core/lib/json/json_object_loader.h +0 -645
- data/src/core/lib/json/json_reader.cc +0 -956
- data/src/core/lib/json/json_reader.h +0 -34
- data/src/core/lib/json/json_util.cc +0 -101
- data/src/core/lib/json/json_util.h +0 -164
- data/src/core/lib/json/json_writer.cc +0 -339
- data/src/core/lib/json/json_writer.h +0 -33
- data/src/core/lib/matchers/matchers.cc +0 -330
- data/src/core/lib/matchers/matchers.h +0 -163
- data/src/core/lib/promise/trace.cc +0 -20
- data/src/core/lib/promise/trace.h +0 -24
- data/src/core/lib/resource_quota/trace.cc +0 -19
- data/src/core/lib/resource_quota/trace.h +0 -24
- data/src/core/lib/slice/slice_refcount.cc +0 -20
- data/src/core/lib/surface/api_trace.cc +0 -25
- data/src/core/lib/surface/api_trace.h +0 -52
- data/src/core/lib/surface/call_trace.h +0 -24
- data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
- data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
- data/src/core/lib/transport/batch_builder.cc +0 -172
- data/src/core/lib/transport/batch_builder.h +0 -474
- data/src/core/lib/uri/uri_parser.cc +0 -372
- data/src/core/lib/uri/uri_parser.h +0 -101
- data/src/core/resolver/binder/binder_resolver.cc +0 -154
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/src/core/xds/grpc/upb_utils.h +0 -45
- data/src/core/xds/grpc/xds_http_filters.cc +0 -116
- data/src/core/xds/grpc/xds_http_filters.h +0 -182
- data/src/core/xds/xds_client/xds_client_stats.cc +0 -174
- data/src/core/xds/xds_client/xds_client_stats.h +0 -258
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +0 -84
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +0 -85
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +0 -465
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +0 -279
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +0 -235
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +0 -245
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +0 -214
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +0 -397
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +0 -98
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +0 -973
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +0 -708
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +0 -212
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +0 -317
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +0 -268
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +0 -475
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +0 -726
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +0 -309
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +0 -544
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +0 -334
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +0 -480
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -102
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +0 -169
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +0 -57
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +0 -465
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +0 -158
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +0 -266
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +0 -718
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +0 -913
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +0 -156
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +0 -841
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +0 -341
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +0 -228
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +0 -455
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +0 -598
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +0 -647
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -75
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -55
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -62
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -61
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +0 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -54
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -148
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +0 -292
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +0 -242
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +0 -2157
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +0 -18
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +0 -523
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +0 -165
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -266
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +0 -990
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -421
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +0 -572
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +0 -96
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +0 -508
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +0 -265
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +0 -91
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +0 -903
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +0 -430
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +0 -483
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +0 -137
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +0 -120
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +0 -338
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +0 -274
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +0 -332
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +0 -100
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +0 -232
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +0 -646
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +0 -106
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +0 -146
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +0 -381
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +0 -209
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +0 -1281
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +0 -242
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +0 -275
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +0 -310
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +0 -541
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +0 -428
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -234
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +0 -909
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +0 -1276
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +0 -397
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +0 -331
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +0 -532
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +0 -744
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -1077
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -356
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +0 -363
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +0 -287
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +0 -717
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.c +0 -322
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +0 -489
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +0 -288
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +0 -304
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.c +0 -267
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +0 -1043
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -557
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +0 -104
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +0 -1163
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +0 -637
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +0 -749
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +0 -173
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +0 -269
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +0 -255
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +0 -264
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +0 -130
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +0 -32
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +0 -112
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +0 -256
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +0 -240
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +0 -37
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +0 -743
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +0 -302
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +0 -220
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +0 -197
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +0 -68
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -493
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +0 -423
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +0 -1038
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +0 -1351
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +0 -119
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +0 -1064
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +0 -439
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +0 -537
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +0 -801
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +0 -2234
- data/third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c +0 -279
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +0 -844
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +0 -350
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +0 -609
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +0 -564
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -294
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -790
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -251
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -183
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +0 -193
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -523
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +0 -316
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +0 -527
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +0 -1352
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +0 -314
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +0 -308
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +0 -847
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +0 -261
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +0 -57
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +0 -52
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +0 -34
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +0 -158
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +0 -74
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +0 -95
- data/third_party/boringssl-with-bazel/src/crypto/refcount.c +0 -59
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +0 -324
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +0 -570
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +0 -101
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +0 -50
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +0 -54
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +0 -61
- data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +0 -71
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +0 -140
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +0 -45
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +0 -534
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -51
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +0 -1668
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +0 -687
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +0 -1267
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +0 -116
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +0 -178
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -585
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +0 -400
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +0 -786
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +0 -401
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.c +0 -221
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.c +0 -634
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c +0 -141
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.c +0 -416
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +0 -482
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +0 -598
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c +0 -112
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.c +0 -270
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +0 -344
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.c +0 -555
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.c +0 -81
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c +0 -142
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +0 -624
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c +0 -170
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +0 -1357
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +0 -227
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -609
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -291
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +0 -1648
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +0 -440
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -356
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +0 -384
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +0 -527
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -210
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +0 -544
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +0 -209
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +0 -1514
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +0 -90
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_bool.c → a_bool.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_gentm.c → a_gentm.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_octet.c → a_octet.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_strex.c → a_strex.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_time.c → a_time.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_utctm.c → a_utctm.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{asn1_par.c → asn1_par.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{f_int.c → f_int.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{f_string.c → f_string.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/asn1/{tasn_typ.c → tasn_typ.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/bio/{errno.c → errno.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/bio/{fd.c → fd.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/bio/{hexdump.c → hexdump.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/bio/{socket.c → socket.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/{cipher_extra.c → cipher_extra.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/{derive_key.c → derive_key.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/{tls_cbc.c → tls_cbc.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/des/{des.c → des.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/dh_extra/{params.c → params.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/{ecdh_extra.c → ecdh_extra.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/evp/{evp_asn1.c → evp_asn1.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/evp/{sign.c → sign.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.cc.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/obj/{obj_xref.c → obj_xref.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/pem/{pem_all.c → pem_all.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/pem/{pem_x509.c → pem_x509.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/pem/{pem_xaux.c → pem_xaux.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/rc4/{rc4.c → rc4.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/{rsa_print.c → rsa_print.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{thread.c → thread.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{by_file.c → by_file.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{i2d_pr.c → i2d_pr.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{name_print.c → name_print.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{t_crl.c → t_crl.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{t_req.c → t_req.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{t_x509.c → t_x509.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{t_x509a.c → t_x509a.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_akeya.c → v3_akeya.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509.c → x509.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_cmp.c → x509_cmp.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_d2.c → x509_d2.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_def.c → x509_def.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_ext.c → x509_ext.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_obj.c → x509_obj.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_req.c → x509_req.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_set.c → x509_set.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_trs.c → x509_trs.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_txt.c → x509_txt.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509cset.c → x509cset.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509name.c → x509name.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x509rset.c → x509rset.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x_algor.c → x_algor.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x_attrib.c → x_attrib.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x_exten.c → x_exten.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x_req.c → x_req.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x_sig.c → x_sig.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x_spki.c → x_spki.cc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/x509/{x_val.c → x_val.cc} +0 -0
|
@@ -3,10 +3,11 @@
|
|
|
3
3
|
* envoy/config/route/v3/route_components.proto
|
|
4
4
|
*
|
|
5
5
|
* Do not edit -- your changes will be discarded when the file is
|
|
6
|
-
* regenerated.
|
|
6
|
+
* regenerated.
|
|
7
|
+
* NO CHECKED-IN PROTOBUF GENCODE */
|
|
7
8
|
|
|
8
|
-
#ifndef
|
|
9
|
-
#define
|
|
9
|
+
#ifndef ENVOY_CONFIG_ROUTE_V3_ROUTE_COMPONENTS_PROTO_UPB_H__UPB_H_
|
|
10
|
+
#define ENVOY_CONFIG_ROUTE_V3_ROUTE_COMPONENTS_PROTO_UPB_H__UPB_H_
|
|
10
11
|
|
|
11
12
|
#include "upb/generated_code_support.h"
|
|
12
13
|
|
|
@@ -25,7 +26,6 @@
|
|
|
25
26
|
#include "google/protobuf/any.upb_minitable.h"
|
|
26
27
|
#include "google/protobuf/duration.upb_minitable.h"
|
|
27
28
|
#include "google/protobuf/wrappers.upb_minitable.h"
|
|
28
|
-
#include "xds/annotations/v3/status.upb_minitable.h"
|
|
29
29
|
#include "xds/type/matcher/v3/matcher.upb_minitable.h"
|
|
30
30
|
#include "envoy/annotations/deprecation.upb_minitable.h"
|
|
31
31
|
#include "udpa/annotations/migrate.upb_minitable.h"
|
|
@@ -94,6 +94,7 @@ typedef struct envoy_config_route_v3_RateLimit_Action_MetaData { upb_Message UPB
|
|
|
94
94
|
typedef struct envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch;
|
|
95
95
|
typedef struct envoy_config_route_v3_RateLimit_Override { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_RateLimit_Override;
|
|
96
96
|
typedef struct envoy_config_route_v3_RateLimit_Override_DynamicMetadata { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_RateLimit_Override_DynamicMetadata;
|
|
97
|
+
typedef struct envoy_config_route_v3_RateLimit_HitsAddend { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_RateLimit_HitsAddend;
|
|
97
98
|
typedef struct envoy_config_route_v3_HeaderMatcher { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_HeaderMatcher;
|
|
98
99
|
typedef struct envoy_config_route_v3_QueryParameterMatcher { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_QueryParameterMatcher;
|
|
99
100
|
typedef struct envoy_config_route_v3_InternalRedirectPolicy { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_InternalRedirectPolicy;
|
|
@@ -116,6 +117,7 @@ struct google_protobuf_Any;
|
|
|
116
117
|
struct google_protobuf_BoolValue;
|
|
117
118
|
struct google_protobuf_Duration;
|
|
118
119
|
struct google_protobuf_UInt32Value;
|
|
120
|
+
struct google_protobuf_UInt64Value;
|
|
119
121
|
struct xds_type_matcher_v3_Matcher;
|
|
120
122
|
|
|
121
123
|
typedef enum {
|
|
@@ -241,6 +243,7 @@ UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_routes(envoy_config_rout
|
|
|
241
243
|
}
|
|
242
244
|
UPB_INLINE const envoy_config_route_v3_Route* const* envoy_config_route_v3_VirtualHost_routes(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
243
245
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
246
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
244
247
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
245
248
|
if (arr) {
|
|
246
249
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -252,6 +255,7 @@ UPB_INLINE const envoy_config_route_v3_Route* const* envoy_config_route_v3_Virtu
|
|
|
252
255
|
}
|
|
253
256
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_routes_upb_array(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
254
257
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
258
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
255
259
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
256
260
|
if (size) {
|
|
257
261
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -260,6 +264,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_routes_upb_array(
|
|
|
260
264
|
}
|
|
261
265
|
UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualHost_routes_mutable_upb_array(envoy_config_route_v3_VirtualHost* msg, size_t* size, upb_Arena* arena) {
|
|
262
266
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
267
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
263
268
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
264
269
|
&field, arena);
|
|
265
270
|
if (size) {
|
|
@@ -285,6 +290,7 @@ UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_virtual_clusters(envoy_c
|
|
|
285
290
|
}
|
|
286
291
|
UPB_INLINE const envoy_config_route_v3_VirtualCluster* const* envoy_config_route_v3_VirtualHost_virtual_clusters(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
287
292
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
293
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualCluster_msg_init);
|
|
288
294
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
289
295
|
if (arr) {
|
|
290
296
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -296,6 +302,7 @@ UPB_INLINE const envoy_config_route_v3_VirtualCluster* const* envoy_config_route
|
|
|
296
302
|
}
|
|
297
303
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_virtual_clusters_upb_array(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
298
304
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
305
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualCluster_msg_init);
|
|
299
306
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
300
307
|
if (size) {
|
|
301
308
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -304,6 +311,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_virtual_clusters_
|
|
|
304
311
|
}
|
|
305
312
|
UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualHost_virtual_clusters_mutable_upb_array(envoy_config_route_v3_VirtualHost* msg, size_t* size, upb_Arena* arena) {
|
|
306
313
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
314
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualCluster_msg_init);
|
|
307
315
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
308
316
|
&field, arena);
|
|
309
317
|
if (size) {
|
|
@@ -317,6 +325,7 @@ UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_rate_limits(envoy_config
|
|
|
317
325
|
}
|
|
318
326
|
UPB_INLINE const envoy_config_route_v3_RateLimit* const* envoy_config_route_v3_VirtualHost_rate_limits(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
319
327
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
328
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
320
329
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
321
330
|
if (arr) {
|
|
322
331
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -328,6 +337,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit* const* envoy_config_route_v3_V
|
|
|
328
337
|
}
|
|
329
338
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_rate_limits_upb_array(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
330
339
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
340
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
331
341
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
332
342
|
if (size) {
|
|
333
343
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -336,6 +346,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_rate_limits_upb_a
|
|
|
336
346
|
}
|
|
337
347
|
UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualHost_rate_limits_mutable_upb_array(envoy_config_route_v3_VirtualHost* msg, size_t* size, upb_Arena* arena) {
|
|
338
348
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
349
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
339
350
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
340
351
|
&field, arena);
|
|
341
352
|
if (size) {
|
|
@@ -349,6 +360,7 @@ UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_request_headers_to_add(e
|
|
|
349
360
|
}
|
|
350
361
|
UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_config_route_v3_VirtualHost_request_headers_to_add(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
351
362
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
363
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
352
364
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
353
365
|
if (arr) {
|
|
354
366
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -360,6 +372,7 @@ UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_con
|
|
|
360
372
|
}
|
|
361
373
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_request_headers_to_add_upb_array(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
362
374
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
375
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
363
376
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
364
377
|
if (size) {
|
|
365
378
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -368,6 +381,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_request_headers_t
|
|
|
368
381
|
}
|
|
369
382
|
UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualHost_request_headers_to_add_mutable_upb_array(envoy_config_route_v3_VirtualHost* msg, size_t* size, upb_Arena* arena) {
|
|
370
383
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
384
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
371
385
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
372
386
|
&field, arena);
|
|
373
387
|
if (size) {
|
|
@@ -383,6 +397,7 @@ UPB_INLINE const envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_Virtual
|
|
|
383
397
|
const envoy_config_route_v3_CorsPolicy* default_val = NULL;
|
|
384
398
|
const envoy_config_route_v3_CorsPolicy* ret;
|
|
385
399
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 64, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
400
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__CorsPolicy_msg_init);
|
|
386
401
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
387
402
|
&default_val, &ret);
|
|
388
403
|
return ret;
|
|
@@ -397,6 +412,7 @@ UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_response_headers_to_add(
|
|
|
397
412
|
}
|
|
398
413
|
UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_config_route_v3_VirtualHost_response_headers_to_add(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
399
414
|
const upb_MiniTableField field = {10, UPB_SIZE(40, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
415
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
400
416
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
401
417
|
if (arr) {
|
|
402
418
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -408,6 +424,7 @@ UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_con
|
|
|
408
424
|
}
|
|
409
425
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_response_headers_to_add_upb_array(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
410
426
|
const upb_MiniTableField field = {10, UPB_SIZE(40, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
427
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
411
428
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
412
429
|
if (size) {
|
|
413
430
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -416,6 +433,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_response_headers_
|
|
|
416
433
|
}
|
|
417
434
|
UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualHost_response_headers_to_add_mutable_upb_array(envoy_config_route_v3_VirtualHost* msg, size_t* size, upb_Arena* arena) {
|
|
418
435
|
const upb_MiniTableField field = {10, UPB_SIZE(40, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
436
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
419
437
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
420
438
|
&field, arena);
|
|
421
439
|
if (size) {
|
|
@@ -510,22 +528,30 @@ UPB_INLINE size_t envoy_config_route_v3_VirtualHost_typed_per_filter_config_size
|
|
|
510
528
|
}
|
|
511
529
|
UPB_INLINE bool envoy_config_route_v3_VirtualHost_typed_per_filter_config_get(const envoy_config_route_v3_VirtualHost* msg, upb_StringView key, struct google_protobuf_Any** val) {
|
|
512
530
|
const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
531
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualHost__TypedPerFilterConfigEntry_msg_init);
|
|
532
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
513
533
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
514
534
|
if (!map) return false;
|
|
515
535
|
return _upb_Map_Get(map, &key, 0, val, sizeof(*val));
|
|
516
536
|
}
|
|
517
537
|
UPB_INLINE const envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry* envoy_config_route_v3_VirtualHost_typed_per_filter_config_next(const envoy_config_route_v3_VirtualHost* msg, size_t* iter) {
|
|
518
538
|
const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
539
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualHost__TypedPerFilterConfigEntry_msg_init);
|
|
540
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
519
541
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
520
542
|
if (!map) return NULL;
|
|
521
543
|
return (const envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry*)_upb_map_next(map, iter);
|
|
522
544
|
}
|
|
523
545
|
UPB_INLINE const upb_Map* _envoy_config_route_v3_VirtualHost_typed_per_filter_config_upb_map(envoy_config_route_v3_VirtualHost* msg) {
|
|
524
546
|
const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
547
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualHost__TypedPerFilterConfigEntry_msg_init);
|
|
548
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
525
549
|
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
526
550
|
}
|
|
527
551
|
UPB_INLINE upb_Map* _envoy_config_route_v3_VirtualHost_typed_per_filter_config_mutable_upb_map(envoy_config_route_v3_VirtualHost* msg, upb_Arena* a) {
|
|
528
552
|
const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
553
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualHost__TypedPerFilterConfigEntry_msg_init);
|
|
554
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
529
555
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, sizeof(struct google_protobuf_Any*), a);
|
|
530
556
|
}
|
|
531
557
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_retry_policy(envoy_config_route_v3_VirtualHost* msg) {
|
|
@@ -536,6 +562,7 @@ UPB_INLINE const envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_Virtua
|
|
|
536
562
|
const envoy_config_route_v3_RetryPolicy* default_val = NULL;
|
|
537
563
|
const envoy_config_route_v3_RetryPolicy* ret;
|
|
538
564
|
const upb_MiniTableField field = {16, UPB_SIZE(60, 120), 65, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
565
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy_msg_init);
|
|
539
566
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
540
567
|
&default_val, &ret);
|
|
541
568
|
return ret;
|
|
@@ -552,6 +579,7 @@ UPB_INLINE const envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_Virtua
|
|
|
552
579
|
const envoy_config_route_v3_HedgePolicy* default_val = NULL;
|
|
553
580
|
const envoy_config_route_v3_HedgePolicy* ret;
|
|
554
581
|
const upb_MiniTableField field = {17, UPB_SIZE(64, 128), 66, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
582
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HedgePolicy_msg_init);
|
|
555
583
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
556
584
|
&default_val, &ret);
|
|
557
585
|
return ret;
|
|
@@ -568,6 +596,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Virtu
|
|
|
568
596
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
569
597
|
const struct google_protobuf_UInt32Value* ret;
|
|
570
598
|
const upb_MiniTableField field = {18, UPB_SIZE(68, 136), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
599
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
571
600
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
572
601
|
&default_val, &ret);
|
|
573
602
|
return ret;
|
|
@@ -596,6 +625,7 @@ UPB_INLINE const struct google_protobuf_Any* envoy_config_route_v3_VirtualHost_r
|
|
|
596
625
|
const struct google_protobuf_Any* default_val = NULL;
|
|
597
626
|
const struct google_protobuf_Any* ret;
|
|
598
627
|
const upb_MiniTableField field = {20, UPB_SIZE(76, 144), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
628
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
599
629
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
600
630
|
&default_val, &ret);
|
|
601
631
|
return ret;
|
|
@@ -612,6 +642,7 @@ UPB_INLINE const struct xds_type_matcher_v3_Matcher* envoy_config_route_v3_Virtu
|
|
|
612
642
|
const struct xds_type_matcher_v3_Matcher* default_val = NULL;
|
|
613
643
|
const struct xds_type_matcher_v3_Matcher* ret;
|
|
614
644
|
const upb_MiniTableField field = {21, UPB_SIZE(80, 152), 69, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
645
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&xds__type__matcher__v3__Matcher_msg_init);
|
|
615
646
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
616
647
|
&default_val, &ret);
|
|
617
648
|
return ret;
|
|
@@ -626,6 +657,7 @@ UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_request_mirror_policies(
|
|
|
626
657
|
}
|
|
627
658
|
UPB_INLINE const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* const* envoy_config_route_v3_VirtualHost_request_mirror_policies(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
628
659
|
const upb_MiniTableField field = {22, UPB_SIZE(84, 160), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
660
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
629
661
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
630
662
|
if (arr) {
|
|
631
663
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -637,6 +669,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* const* e
|
|
|
637
669
|
}
|
|
638
670
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_request_mirror_policies_upb_array(const envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
639
671
|
const upb_MiniTableField field = {22, UPB_SIZE(84, 160), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
672
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
640
673
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
641
674
|
if (size) {
|
|
642
675
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -645,6 +678,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualHost_request_mirror_po
|
|
|
645
678
|
}
|
|
646
679
|
UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualHost_request_mirror_policies_mutable_upb_array(envoy_config_route_v3_VirtualHost* msg, size_t* size, upb_Arena* arena) {
|
|
647
680
|
const upb_MiniTableField field = {22, UPB_SIZE(84, 160), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
681
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
648
682
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
649
683
|
&field, arena);
|
|
650
684
|
if (size) {
|
|
@@ -672,6 +706,7 @@ UPB_INLINE const struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Vir
|
|
|
672
706
|
const struct envoy_config_core_v3_Metadata* default_val = NULL;
|
|
673
707
|
const struct envoy_config_core_v3_Metadata* ret;
|
|
674
708
|
const upb_MiniTableField field = {24, UPB_SIZE(92, 168), 70, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
709
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
675
710
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
676
711
|
&default_val, &ret);
|
|
677
712
|
return ret;
|
|
@@ -683,7 +718,7 @@ UPB_INLINE bool envoy_config_route_v3_VirtualHost_has_metadata(const envoy_confi
|
|
|
683
718
|
|
|
684
719
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_name(envoy_config_route_v3_VirtualHost *msg, upb_StringView value) {
|
|
685
720
|
const upb_MiniTableField field = {1, UPB_SIZE(96, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
686
|
-
|
|
721
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
687
722
|
}
|
|
688
723
|
UPB_INLINE upb_StringView* envoy_config_route_v3_VirtualHost_mutable_domains(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
689
724
|
upb_MiniTableField field = {2, UPB_SIZE(12, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
@@ -715,6 +750,7 @@ UPB_INLINE bool envoy_config_route_v3_VirtualHost_add_domains(envoy_config_route
|
|
|
715
750
|
}
|
|
716
751
|
UPB_INLINE envoy_config_route_v3_Route** envoy_config_route_v3_VirtualHost_mutable_routes(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
717
752
|
upb_MiniTableField field = {3, UPB_SIZE(16, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
753
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
718
754
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
719
755
|
if (arr) {
|
|
720
756
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -731,6 +767,7 @@ UPB_INLINE envoy_config_route_v3_Route** envoy_config_route_v3_VirtualHost_resiz
|
|
|
731
767
|
}
|
|
732
768
|
UPB_INLINE struct envoy_config_route_v3_Route* envoy_config_route_v3_VirtualHost_add_routes(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
733
769
|
upb_MiniTableField field = {3, UPB_SIZE(16, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
770
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
734
771
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
735
772
|
UPB_UPCAST(msg), &field, arena);
|
|
736
773
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -745,10 +782,11 @@ UPB_INLINE struct envoy_config_route_v3_Route* envoy_config_route_v3_VirtualHost
|
|
|
745
782
|
}
|
|
746
783
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_require_tls(envoy_config_route_v3_VirtualHost *msg, int32_t value) {
|
|
747
784
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
748
|
-
|
|
785
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
749
786
|
}
|
|
750
787
|
UPB_INLINE envoy_config_route_v3_VirtualCluster** envoy_config_route_v3_VirtualHost_mutable_virtual_clusters(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
751
788
|
upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
789
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualCluster_msg_init);
|
|
752
790
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
753
791
|
if (arr) {
|
|
754
792
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -765,6 +803,7 @@ UPB_INLINE envoy_config_route_v3_VirtualCluster** envoy_config_route_v3_VirtualH
|
|
|
765
803
|
}
|
|
766
804
|
UPB_INLINE struct envoy_config_route_v3_VirtualCluster* envoy_config_route_v3_VirtualHost_add_virtual_clusters(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
767
805
|
upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
806
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualCluster_msg_init);
|
|
768
807
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
769
808
|
UPB_UPCAST(msg), &field, arena);
|
|
770
809
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -779,6 +818,7 @@ UPB_INLINE struct envoy_config_route_v3_VirtualCluster* envoy_config_route_v3_Vi
|
|
|
779
818
|
}
|
|
780
819
|
UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_VirtualHost_mutable_rate_limits(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
781
820
|
upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
821
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
782
822
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
783
823
|
if (arr) {
|
|
784
824
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -795,6 +835,7 @@ UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_VirtualHost_r
|
|
|
795
835
|
}
|
|
796
836
|
UPB_INLINE struct envoy_config_route_v3_RateLimit* envoy_config_route_v3_VirtualHost_add_rate_limits(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
797
837
|
upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
838
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
798
839
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
799
840
|
UPB_UPCAST(msg), &field, arena);
|
|
800
841
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -809,6 +850,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit* envoy_config_route_v3_Virtual
|
|
|
809
850
|
}
|
|
810
851
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3_VirtualHost_mutable_request_headers_to_add(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
811
852
|
upb_MiniTableField field = {7, UPB_SIZE(32, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
853
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
812
854
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
813
855
|
if (arr) {
|
|
814
856
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -825,6 +867,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3
|
|
|
825
867
|
}
|
|
826
868
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_VirtualHost_add_request_headers_to_add(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
827
869
|
upb_MiniTableField field = {7, UPB_SIZE(32, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
870
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
828
871
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
829
872
|
UPB_UPCAST(msg), &field, arena);
|
|
830
873
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -839,7 +882,8 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_
|
|
|
839
882
|
}
|
|
840
883
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_cors(envoy_config_route_v3_VirtualHost *msg, envoy_config_route_v3_CorsPolicy* value) {
|
|
841
884
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 64, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
842
|
-
|
|
885
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__CorsPolicy_msg_init);
|
|
886
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
843
887
|
}
|
|
844
888
|
UPB_INLINE struct envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_VirtualHost_mutable_cors(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
845
889
|
struct envoy_config_route_v3_CorsPolicy* sub = (struct envoy_config_route_v3_CorsPolicy*)envoy_config_route_v3_VirtualHost_cors(msg);
|
|
@@ -851,6 +895,7 @@ UPB_INLINE struct envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_Virtua
|
|
|
851
895
|
}
|
|
852
896
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3_VirtualHost_mutable_response_headers_to_add(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
853
897
|
upb_MiniTableField field = {10, UPB_SIZE(40, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
898
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
854
899
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
855
900
|
if (arr) {
|
|
856
901
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -867,6 +912,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3
|
|
|
867
912
|
}
|
|
868
913
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_VirtualHost_add_response_headers_to_add(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
869
914
|
upb_MiniTableField field = {10, UPB_SIZE(40, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
915
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
870
916
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
871
917
|
UPB_UPCAST(msg), &field, arena);
|
|
872
918
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -937,7 +983,7 @@ UPB_INLINE bool envoy_config_route_v3_VirtualHost_add_request_headers_to_remove(
|
|
|
937
983
|
}
|
|
938
984
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_include_request_attempt_count(envoy_config_route_v3_VirtualHost *msg, bool value) {
|
|
939
985
|
const upb_MiniTableField field = {14, UPB_SIZE(52, 16), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
940
|
-
|
|
986
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
941
987
|
}
|
|
942
988
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_typed_per_filter_config_clear(envoy_config_route_v3_VirtualHost* msg) {
|
|
943
989
|
const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
@@ -947,6 +993,8 @@ UPB_INLINE void envoy_config_route_v3_VirtualHost_typed_per_filter_config_clear(
|
|
|
947
993
|
}
|
|
948
994
|
UPB_INLINE bool envoy_config_route_v3_VirtualHost_typed_per_filter_config_set(envoy_config_route_v3_VirtualHost* msg, upb_StringView key, struct google_protobuf_Any* val, upb_Arena* a) {
|
|
949
995
|
const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
996
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualHost__TypedPerFilterConfigEntry_msg_init);
|
|
997
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
950
998
|
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
|
951
999
|
&field, 0, sizeof(val), a);
|
|
952
1000
|
return _upb_Map_Insert(map, &key, 0, &val, sizeof(val), a) !=
|
|
@@ -960,13 +1008,16 @@ UPB_INLINE bool envoy_config_route_v3_VirtualHost_typed_per_filter_config_delete
|
|
|
960
1008
|
}
|
|
961
1009
|
UPB_INLINE envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry* envoy_config_route_v3_VirtualHost_typed_per_filter_config_nextmutable(envoy_config_route_v3_VirtualHost* msg, size_t* iter) {
|
|
962
1010
|
const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1011
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__VirtualHost__TypedPerFilterConfigEntry_msg_init);
|
|
1012
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
963
1013
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
964
1014
|
if (!map) return NULL;
|
|
965
1015
|
return (envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry*)_upb_map_next(map, iter);
|
|
966
1016
|
}
|
|
967
1017
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_retry_policy(envoy_config_route_v3_VirtualHost *msg, envoy_config_route_v3_RetryPolicy* value) {
|
|
968
1018
|
const upb_MiniTableField field = {16, UPB_SIZE(60, 120), 65, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
969
|
-
|
|
1019
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy_msg_init);
|
|
1020
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
970
1021
|
}
|
|
971
1022
|
UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_VirtualHost_mutable_retry_policy(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
972
1023
|
struct envoy_config_route_v3_RetryPolicy* sub = (struct envoy_config_route_v3_RetryPolicy*)envoy_config_route_v3_VirtualHost_retry_policy(msg);
|
|
@@ -978,7 +1029,8 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_Virtu
|
|
|
978
1029
|
}
|
|
979
1030
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_hedge_policy(envoy_config_route_v3_VirtualHost *msg, envoy_config_route_v3_HedgePolicy* value) {
|
|
980
1031
|
const upb_MiniTableField field = {17, UPB_SIZE(64, 128), 66, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
981
|
-
|
|
1032
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HedgePolicy_msg_init);
|
|
1033
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
982
1034
|
}
|
|
983
1035
|
UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_VirtualHost_mutable_hedge_policy(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
984
1036
|
struct envoy_config_route_v3_HedgePolicy* sub = (struct envoy_config_route_v3_HedgePolicy*)envoy_config_route_v3_VirtualHost_hedge_policy(msg);
|
|
@@ -990,7 +1042,8 @@ UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_Virtu
|
|
|
990
1042
|
}
|
|
991
1043
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_per_request_buffer_limit_bytes(envoy_config_route_v3_VirtualHost *msg, struct google_protobuf_UInt32Value* value) {
|
|
992
1044
|
const upb_MiniTableField field = {18, UPB_SIZE(68, 136), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
993
|
-
|
|
1045
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
1046
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
994
1047
|
}
|
|
995
1048
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_VirtualHost_mutable_per_request_buffer_limit_bytes(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
996
1049
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_VirtualHost_per_request_buffer_limit_bytes(msg);
|
|
@@ -1002,11 +1055,12 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_VirtualHost
|
|
|
1002
1055
|
}
|
|
1003
1056
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_include_attempt_count_in_response(envoy_config_route_v3_VirtualHost *msg, bool value) {
|
|
1004
1057
|
const upb_MiniTableField field = {19, UPB_SIZE(72, 17), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
1005
|
-
|
|
1058
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1006
1059
|
}
|
|
1007
1060
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_retry_policy_typed_config(envoy_config_route_v3_VirtualHost *msg, struct google_protobuf_Any* value) {
|
|
1008
1061
|
const upb_MiniTableField field = {20, UPB_SIZE(76, 144), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1009
|
-
|
|
1062
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1063
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1010
1064
|
}
|
|
1011
1065
|
UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_VirtualHost_mutable_retry_policy_typed_config(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
1012
1066
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_VirtualHost_retry_policy_typed_config(msg);
|
|
@@ -1018,7 +1072,8 @@ UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_VirtualHost_mutable
|
|
|
1018
1072
|
}
|
|
1019
1073
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_matcher(envoy_config_route_v3_VirtualHost *msg, struct xds_type_matcher_v3_Matcher* value) {
|
|
1020
1074
|
const upb_MiniTableField field = {21, UPB_SIZE(80, 152), 69, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1021
|
-
|
|
1075
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&xds__type__matcher__v3__Matcher_msg_init);
|
|
1076
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1022
1077
|
}
|
|
1023
1078
|
UPB_INLINE struct xds_type_matcher_v3_Matcher* envoy_config_route_v3_VirtualHost_mutable_matcher(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
1024
1079
|
struct xds_type_matcher_v3_Matcher* sub = (struct xds_type_matcher_v3_Matcher*)envoy_config_route_v3_VirtualHost_matcher(msg);
|
|
@@ -1030,6 +1085,7 @@ UPB_INLINE struct xds_type_matcher_v3_Matcher* envoy_config_route_v3_VirtualHost
|
|
|
1030
1085
|
}
|
|
1031
1086
|
UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_route_v3_VirtualHost_mutable_request_mirror_policies(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
1032
1087
|
upb_MiniTableField field = {22, UPB_SIZE(84, 160), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1088
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
1033
1089
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
1034
1090
|
if (arr) {
|
|
1035
1091
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -1046,6 +1102,7 @@ UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_
|
|
|
1046
1102
|
}
|
|
1047
1103
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_config_route_v3_VirtualHost_add_request_mirror_policies(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
1048
1104
|
upb_MiniTableField field = {22, UPB_SIZE(84, 160), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1105
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
1049
1106
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
1050
1107
|
UPB_UPCAST(msg), &field, arena);
|
|
1051
1108
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -1060,11 +1117,12 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_c
|
|
|
1060
1117
|
}
|
|
1061
1118
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_include_is_timeout_retry_header(envoy_config_route_v3_VirtualHost *msg, bool value) {
|
|
1062
1119
|
const upb_MiniTableField field = {23, UPB_SIZE(88, 18), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
1063
|
-
|
|
1120
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1064
1121
|
}
|
|
1065
1122
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_metadata(envoy_config_route_v3_VirtualHost *msg, struct envoy_config_core_v3_Metadata* value) {
|
|
1066
1123
|
const upb_MiniTableField field = {24, UPB_SIZE(92, 168), 70, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1067
|
-
|
|
1124
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
1125
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1068
1126
|
}
|
|
1069
1127
|
UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_VirtualHost_mutable_metadata(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
1070
1128
|
struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_VirtualHost_metadata(msg);
|
|
@@ -1140,6 +1198,7 @@ UPB_INLINE const struct google_protobuf_Any* envoy_config_route_v3_FilterAction_
|
|
|
1140
1198
|
const struct google_protobuf_Any* default_val = NULL;
|
|
1141
1199
|
const struct google_protobuf_Any* ret;
|
|
1142
1200
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1201
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1143
1202
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1144
1203
|
&default_val, &ret);
|
|
1145
1204
|
return ret;
|
|
@@ -1151,7 +1210,8 @@ UPB_INLINE bool envoy_config_route_v3_FilterAction_has_action(const envoy_config
|
|
|
1151
1210
|
|
|
1152
1211
|
UPB_INLINE void envoy_config_route_v3_FilterAction_set_action(envoy_config_route_v3_FilterAction *msg, struct google_protobuf_Any* value) {
|
|
1153
1212
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1154
|
-
|
|
1213
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1214
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1155
1215
|
}
|
|
1156
1216
|
UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_FilterAction_mutable_action(envoy_config_route_v3_FilterAction* msg, upb_Arena* arena) {
|
|
1157
1217
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_FilterAction_action(msg);
|
|
@@ -1204,6 +1264,7 @@ UPB_INLINE void envoy_config_route_v3_RouteList_clear_routes(envoy_config_route_
|
|
|
1204
1264
|
}
|
|
1205
1265
|
UPB_INLINE const envoy_config_route_v3_Route* const* envoy_config_route_v3_RouteList_routes(const envoy_config_route_v3_RouteList* msg, size_t* size) {
|
|
1206
1266
|
const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1267
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
1207
1268
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
1208
1269
|
if (arr) {
|
|
1209
1270
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -1215,6 +1276,7 @@ UPB_INLINE const envoy_config_route_v3_Route* const* envoy_config_route_v3_Route
|
|
|
1215
1276
|
}
|
|
1216
1277
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteList_routes_upb_array(const envoy_config_route_v3_RouteList* msg, size_t* size) {
|
|
1217
1278
|
const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1279
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
1218
1280
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
1219
1281
|
if (size) {
|
|
1220
1282
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -1223,6 +1285,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteList_routes_upb_array(co
|
|
|
1223
1285
|
}
|
|
1224
1286
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteList_routes_mutable_upb_array(envoy_config_route_v3_RouteList* msg, size_t* size, upb_Arena* arena) {
|
|
1225
1287
|
const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1288
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
1226
1289
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
1227
1290
|
&field, arena);
|
|
1228
1291
|
if (size) {
|
|
@@ -1233,6 +1296,7 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_RouteList_routes_mutable_upb_array(
|
|
|
1233
1296
|
|
|
1234
1297
|
UPB_INLINE envoy_config_route_v3_Route** envoy_config_route_v3_RouteList_mutable_routes(envoy_config_route_v3_RouteList* msg, size_t* size) {
|
|
1235
1298
|
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1299
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
1236
1300
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
1237
1301
|
if (arr) {
|
|
1238
1302
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -1249,6 +1313,7 @@ UPB_INLINE envoy_config_route_v3_Route** envoy_config_route_v3_RouteList_resize_
|
|
|
1249
1313
|
}
|
|
1250
1314
|
UPB_INLINE struct envoy_config_route_v3_Route* envoy_config_route_v3_RouteList_add_routes(envoy_config_route_v3_RouteList* msg, upb_Arena* arena) {
|
|
1251
1315
|
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1316
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route_msg_init);
|
|
1252
1317
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
1253
1318
|
UPB_UPCAST(msg), &field, arena);
|
|
1254
1319
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -1319,6 +1384,7 @@ UPB_INLINE const envoy_config_route_v3_RouteMatch* envoy_config_route_v3_Route_m
|
|
|
1319
1384
|
const envoy_config_route_v3_RouteMatch* default_val = NULL;
|
|
1320
1385
|
const envoy_config_route_v3_RouteMatch* ret;
|
|
1321
1386
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1387
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch_msg_init);
|
|
1322
1388
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1323
1389
|
&default_val, &ret);
|
|
1324
1390
|
return ret;
|
|
@@ -1335,6 +1401,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction* envoy_config_route_v3_Route_
|
|
|
1335
1401
|
const envoy_config_route_v3_RouteAction* default_val = NULL;
|
|
1336
1402
|
const envoy_config_route_v3_RouteAction* ret;
|
|
1337
1403
|
const upb_MiniTableField field = {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)};
|
|
1404
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction_msg_init);
|
|
1338
1405
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1339
1406
|
&default_val, &ret);
|
|
1340
1407
|
return ret;
|
|
@@ -1351,6 +1418,7 @@ UPB_INLINE const envoy_config_route_v3_RedirectAction* envoy_config_route_v3_Rou
|
|
|
1351
1418
|
const envoy_config_route_v3_RedirectAction* default_val = NULL;
|
|
1352
1419
|
const envoy_config_route_v3_RedirectAction* ret;
|
|
1353
1420
|
const upb_MiniTableField field = {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)};
|
|
1421
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RedirectAction_msg_init);
|
|
1354
1422
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1355
1423
|
&default_val, &ret);
|
|
1356
1424
|
return ret;
|
|
@@ -1367,6 +1435,7 @@ UPB_INLINE const struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Rou
|
|
|
1367
1435
|
const struct envoy_config_core_v3_Metadata* default_val = NULL;
|
|
1368
1436
|
const struct envoy_config_core_v3_Metadata* ret;
|
|
1369
1437
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 24), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1438
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
1370
1439
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1371
1440
|
&default_val, &ret);
|
|
1372
1441
|
return ret;
|
|
@@ -1383,6 +1452,7 @@ UPB_INLINE const envoy_config_route_v3_Decorator* envoy_config_route_v3_Route_de
|
|
|
1383
1452
|
const envoy_config_route_v3_Decorator* default_val = NULL;
|
|
1384
1453
|
const envoy_config_route_v3_Decorator* ret;
|
|
1385
1454
|
const upb_MiniTableField field = {5, UPB_SIZE(20, 32), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1455
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Decorator_msg_init);
|
|
1386
1456
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1387
1457
|
&default_val, &ret);
|
|
1388
1458
|
return ret;
|
|
@@ -1399,6 +1469,7 @@ UPB_INLINE const envoy_config_route_v3_DirectResponseAction* envoy_config_route_
|
|
|
1399
1469
|
const envoy_config_route_v3_DirectResponseAction* default_val = NULL;
|
|
1400
1470
|
const envoy_config_route_v3_DirectResponseAction* ret;
|
|
1401
1471
|
const upb_MiniTableField field = {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)};
|
|
1472
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__DirectResponseAction_msg_init);
|
|
1402
1473
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1403
1474
|
&default_val, &ret);
|
|
1404
1475
|
return ret;
|
|
@@ -1413,6 +1484,7 @@ UPB_INLINE void envoy_config_route_v3_Route_clear_request_headers_to_add(envoy_c
|
|
|
1413
1484
|
}
|
|
1414
1485
|
UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_config_route_v3_Route_request_headers_to_add(const envoy_config_route_v3_Route* msg, size_t* size) {
|
|
1415
1486
|
const upb_MiniTableField field = {9, UPB_SIZE(24, 40), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1487
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1416
1488
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
1417
1489
|
if (arr) {
|
|
1418
1490
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -1424,6 +1496,7 @@ UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_con
|
|
|
1424
1496
|
}
|
|
1425
1497
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_Route_request_headers_to_add_upb_array(const envoy_config_route_v3_Route* msg, size_t* size) {
|
|
1426
1498
|
const upb_MiniTableField field = {9, UPB_SIZE(24, 40), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1499
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1427
1500
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
1428
1501
|
if (size) {
|
|
1429
1502
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -1432,6 +1505,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_Route_request_headers_to_add_
|
|
|
1432
1505
|
}
|
|
1433
1506
|
UPB_INLINE upb_Array* _envoy_config_route_v3_Route_request_headers_to_add_mutable_upb_array(envoy_config_route_v3_Route* msg, size_t* size, upb_Arena* arena) {
|
|
1434
1507
|
const upb_MiniTableField field = {9, UPB_SIZE(24, 40), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1508
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1435
1509
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
1436
1510
|
&field, arena);
|
|
1437
1511
|
if (size) {
|
|
@@ -1445,6 +1519,7 @@ UPB_INLINE void envoy_config_route_v3_Route_clear_response_headers_to_add(envoy_
|
|
|
1445
1519
|
}
|
|
1446
1520
|
UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_config_route_v3_Route_response_headers_to_add(const envoy_config_route_v3_Route* msg, size_t* size) {
|
|
1447
1521
|
const upb_MiniTableField field = {10, UPB_SIZE(28, 48), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1522
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1448
1523
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
1449
1524
|
if (arr) {
|
|
1450
1525
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -1456,6 +1531,7 @@ UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_con
|
|
|
1456
1531
|
}
|
|
1457
1532
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_Route_response_headers_to_add_upb_array(const envoy_config_route_v3_Route* msg, size_t* size) {
|
|
1458
1533
|
const upb_MiniTableField field = {10, UPB_SIZE(28, 48), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1534
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1459
1535
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
1460
1536
|
if (size) {
|
|
1461
1537
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -1464,6 +1540,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_Route_response_headers_to_add
|
|
|
1464
1540
|
}
|
|
1465
1541
|
UPB_INLINE upb_Array* _envoy_config_route_v3_Route_response_headers_to_add_mutable_upb_array(envoy_config_route_v3_Route* msg, size_t* size, upb_Arena* arena) {
|
|
1466
1542
|
const upb_MiniTableField field = {10, UPB_SIZE(28, 48), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1543
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1467
1544
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
1468
1545
|
&field, arena);
|
|
1469
1546
|
if (size) {
|
|
@@ -1546,22 +1623,30 @@ UPB_INLINE size_t envoy_config_route_v3_Route_typed_per_filter_config_size(const
|
|
|
1546
1623
|
}
|
|
1547
1624
|
UPB_INLINE bool envoy_config_route_v3_Route_typed_per_filter_config_get(const envoy_config_route_v3_Route* msg, upb_StringView key, struct google_protobuf_Any** val) {
|
|
1548
1625
|
const upb_MiniTableField field = {13, UPB_SIZE(40, 72), 0, 8, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1626
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route__TypedPerFilterConfigEntry_msg_init);
|
|
1627
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1549
1628
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
1550
1629
|
if (!map) return false;
|
|
1551
1630
|
return _upb_Map_Get(map, &key, 0, val, sizeof(*val));
|
|
1552
1631
|
}
|
|
1553
1632
|
UPB_INLINE const envoy_config_route_v3_Route_TypedPerFilterConfigEntry* envoy_config_route_v3_Route_typed_per_filter_config_next(const envoy_config_route_v3_Route* msg, size_t* iter) {
|
|
1554
1633
|
const upb_MiniTableField field = {13, UPB_SIZE(40, 72), 0, 8, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1634
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route__TypedPerFilterConfigEntry_msg_init);
|
|
1635
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1555
1636
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
1556
1637
|
if (!map) return NULL;
|
|
1557
1638
|
return (const envoy_config_route_v3_Route_TypedPerFilterConfigEntry*)_upb_map_next(map, iter);
|
|
1558
1639
|
}
|
|
1559
1640
|
UPB_INLINE const upb_Map* _envoy_config_route_v3_Route_typed_per_filter_config_upb_map(envoy_config_route_v3_Route* msg) {
|
|
1560
1641
|
const upb_MiniTableField field = {13, UPB_SIZE(40, 72), 0, 8, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1642
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route__TypedPerFilterConfigEntry_msg_init);
|
|
1643
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1561
1644
|
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
1562
1645
|
}
|
|
1563
1646
|
UPB_INLINE upb_Map* _envoy_config_route_v3_Route_typed_per_filter_config_mutable_upb_map(envoy_config_route_v3_Route* msg, upb_Arena* a) {
|
|
1564
1647
|
const upb_MiniTableField field = {13, UPB_SIZE(40, 72), 0, 8, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1648
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route__TypedPerFilterConfigEntry_msg_init);
|
|
1649
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1565
1650
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, sizeof(struct google_protobuf_Any*), a);
|
|
1566
1651
|
}
|
|
1567
1652
|
UPB_INLINE void envoy_config_route_v3_Route_clear_name(envoy_config_route_v3_Route* msg) {
|
|
@@ -1584,6 +1669,7 @@ UPB_INLINE const envoy_config_route_v3_Tracing* envoy_config_route_v3_Route_trac
|
|
|
1584
1669
|
const envoy_config_route_v3_Tracing* default_val = NULL;
|
|
1585
1670
|
const envoy_config_route_v3_Tracing* ret;
|
|
1586
1671
|
const upb_MiniTableField field = {15, UPB_SIZE(44, 96), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1672
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Tracing_msg_init);
|
|
1587
1673
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1588
1674
|
&default_val, &ret);
|
|
1589
1675
|
return ret;
|
|
@@ -1600,6 +1686,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Route
|
|
|
1600
1686
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
1601
1687
|
const struct google_protobuf_UInt32Value* ret;
|
|
1602
1688
|
const upb_MiniTableField field = {16, UPB_SIZE(48, 104), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1689
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
1603
1690
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1604
1691
|
&default_val, &ret);
|
|
1605
1692
|
return ret;
|
|
@@ -1616,6 +1703,7 @@ UPB_INLINE const envoy_config_route_v3_FilterAction* envoy_config_route_v3_Route
|
|
|
1616
1703
|
const envoy_config_route_v3_FilterAction* default_val = NULL;
|
|
1617
1704
|
const envoy_config_route_v3_FilterAction* ret;
|
|
1618
1705
|
const upb_MiniTableField field = {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)};
|
|
1706
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__FilterAction_msg_init);
|
|
1619
1707
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1620
1708
|
&default_val, &ret);
|
|
1621
1709
|
return ret;
|
|
@@ -1632,6 +1720,7 @@ UPB_INLINE const envoy_config_route_v3_NonForwardingAction* envoy_config_route_v
|
|
|
1632
1720
|
const envoy_config_route_v3_NonForwardingAction* default_val = NULL;
|
|
1633
1721
|
const envoy_config_route_v3_NonForwardingAction* ret;
|
|
1634
1722
|
const upb_MiniTableField field = {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)};
|
|
1723
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__NonForwardingAction_msg_init);
|
|
1635
1724
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1636
1725
|
&default_val, &ret);
|
|
1637
1726
|
return ret;
|
|
@@ -1655,7 +1744,8 @@ UPB_INLINE upb_StringView envoy_config_route_v3_Route_stat_prefix(const envoy_co
|
|
|
1655
1744
|
|
|
1656
1745
|
UPB_INLINE void envoy_config_route_v3_Route_set_match(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RouteMatch* value) {
|
|
1657
1746
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1658
|
-
|
|
1747
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch_msg_init);
|
|
1748
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1659
1749
|
}
|
|
1660
1750
|
UPB_INLINE struct envoy_config_route_v3_RouteMatch* envoy_config_route_v3_Route_mutable_match(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1661
1751
|
struct envoy_config_route_v3_RouteMatch* sub = (struct envoy_config_route_v3_RouteMatch*)envoy_config_route_v3_Route_match(msg);
|
|
@@ -1667,7 +1757,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch* envoy_config_route_v3_Route_
|
|
|
1667
1757
|
}
|
|
1668
1758
|
UPB_INLINE void envoy_config_route_v3_Route_set_route(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RouteAction* value) {
|
|
1669
1759
|
const upb_MiniTableField field = {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)};
|
|
1670
|
-
|
|
1760
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction_msg_init);
|
|
1761
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1671
1762
|
}
|
|
1672
1763
|
UPB_INLINE struct envoy_config_route_v3_RouteAction* envoy_config_route_v3_Route_mutable_route(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1673
1764
|
struct envoy_config_route_v3_RouteAction* sub = (struct envoy_config_route_v3_RouteAction*)envoy_config_route_v3_Route_route(msg);
|
|
@@ -1679,7 +1770,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction* envoy_config_route_v3_Route
|
|
|
1679
1770
|
}
|
|
1680
1771
|
UPB_INLINE void envoy_config_route_v3_Route_set_redirect(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RedirectAction* value) {
|
|
1681
1772
|
const upb_MiniTableField field = {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)};
|
|
1682
|
-
|
|
1773
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RedirectAction_msg_init);
|
|
1774
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1683
1775
|
}
|
|
1684
1776
|
UPB_INLINE struct envoy_config_route_v3_RedirectAction* envoy_config_route_v3_Route_mutable_redirect(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1685
1777
|
struct envoy_config_route_v3_RedirectAction* sub = (struct envoy_config_route_v3_RedirectAction*)envoy_config_route_v3_Route_redirect(msg);
|
|
@@ -1691,7 +1783,8 @@ UPB_INLINE struct envoy_config_route_v3_RedirectAction* envoy_config_route_v3_Ro
|
|
|
1691
1783
|
}
|
|
1692
1784
|
UPB_INLINE void envoy_config_route_v3_Route_set_metadata(envoy_config_route_v3_Route *msg, struct envoy_config_core_v3_Metadata* value) {
|
|
1693
1785
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 24), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1694
|
-
|
|
1786
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
1787
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1695
1788
|
}
|
|
1696
1789
|
UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Route_mutable_metadata(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1697
1790
|
struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_Route_metadata(msg);
|
|
@@ -1703,7 +1796,8 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Route_mut
|
|
|
1703
1796
|
}
|
|
1704
1797
|
UPB_INLINE void envoy_config_route_v3_Route_set_decorator(envoy_config_route_v3_Route *msg, envoy_config_route_v3_Decorator* value) {
|
|
1705
1798
|
const upb_MiniTableField field = {5, UPB_SIZE(20, 32), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1706
|
-
|
|
1799
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Decorator_msg_init);
|
|
1800
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1707
1801
|
}
|
|
1708
1802
|
UPB_INLINE struct envoy_config_route_v3_Decorator* envoy_config_route_v3_Route_mutable_decorator(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1709
1803
|
struct envoy_config_route_v3_Decorator* sub = (struct envoy_config_route_v3_Decorator*)envoy_config_route_v3_Route_decorator(msg);
|
|
@@ -1715,7 +1809,8 @@ UPB_INLINE struct envoy_config_route_v3_Decorator* envoy_config_route_v3_Route_m
|
|
|
1715
1809
|
}
|
|
1716
1810
|
UPB_INLINE void envoy_config_route_v3_Route_set_direct_response(envoy_config_route_v3_Route *msg, envoy_config_route_v3_DirectResponseAction* value) {
|
|
1717
1811
|
const upb_MiniTableField field = {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)};
|
|
1718
|
-
|
|
1812
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__DirectResponseAction_msg_init);
|
|
1813
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1719
1814
|
}
|
|
1720
1815
|
UPB_INLINE struct envoy_config_route_v3_DirectResponseAction* envoy_config_route_v3_Route_mutable_direct_response(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1721
1816
|
struct envoy_config_route_v3_DirectResponseAction* sub = (struct envoy_config_route_v3_DirectResponseAction*)envoy_config_route_v3_Route_direct_response(msg);
|
|
@@ -1727,6 +1822,7 @@ UPB_INLINE struct envoy_config_route_v3_DirectResponseAction* envoy_config_route
|
|
|
1727
1822
|
}
|
|
1728
1823
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3_Route_mutable_request_headers_to_add(envoy_config_route_v3_Route* msg, size_t* size) {
|
|
1729
1824
|
upb_MiniTableField field = {9, UPB_SIZE(24, 40), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1825
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1730
1826
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
1731
1827
|
if (arr) {
|
|
1732
1828
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -1743,6 +1839,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3
|
|
|
1743
1839
|
}
|
|
1744
1840
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_Route_add_request_headers_to_add(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1745
1841
|
upb_MiniTableField field = {9, UPB_SIZE(24, 40), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1842
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1746
1843
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
1747
1844
|
UPB_UPCAST(msg), &field, arena);
|
|
1748
1845
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -1757,6 +1854,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_
|
|
|
1757
1854
|
}
|
|
1758
1855
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3_Route_mutable_response_headers_to_add(envoy_config_route_v3_Route* msg, size_t* size) {
|
|
1759
1856
|
upb_MiniTableField field = {10, UPB_SIZE(28, 48), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1857
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1760
1858
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
1761
1859
|
if (arr) {
|
|
1762
1860
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -1773,6 +1871,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3
|
|
|
1773
1871
|
}
|
|
1774
1872
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_Route_add_response_headers_to_add(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1775
1873
|
upb_MiniTableField field = {10, UPB_SIZE(28, 48), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1874
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
1776
1875
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
1777
1876
|
UPB_UPCAST(msg), &field, arena);
|
|
1778
1877
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -1849,6 +1948,8 @@ UPB_INLINE void envoy_config_route_v3_Route_typed_per_filter_config_clear(envoy_
|
|
|
1849
1948
|
}
|
|
1850
1949
|
UPB_INLINE bool envoy_config_route_v3_Route_typed_per_filter_config_set(envoy_config_route_v3_Route* msg, upb_StringView key, struct google_protobuf_Any* val, upb_Arena* a) {
|
|
1851
1950
|
const upb_MiniTableField field = {13, UPB_SIZE(40, 72), 0, 8, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1951
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route__TypedPerFilterConfigEntry_msg_init);
|
|
1952
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1852
1953
|
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
|
1853
1954
|
&field, 0, sizeof(val), a);
|
|
1854
1955
|
return _upb_Map_Insert(map, &key, 0, &val, sizeof(val), a) !=
|
|
@@ -1862,17 +1963,20 @@ UPB_INLINE bool envoy_config_route_v3_Route_typed_per_filter_config_delete(envoy
|
|
|
1862
1963
|
}
|
|
1863
1964
|
UPB_INLINE envoy_config_route_v3_Route_TypedPerFilterConfigEntry* envoy_config_route_v3_Route_typed_per_filter_config_nextmutable(envoy_config_route_v3_Route* msg, size_t* iter) {
|
|
1864
1965
|
const upb_MiniTableField field = {13, UPB_SIZE(40, 72), 0, 8, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1966
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Route__TypedPerFilterConfigEntry_msg_init);
|
|
1967
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
1865
1968
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
1866
1969
|
if (!map) return NULL;
|
|
1867
1970
|
return (envoy_config_route_v3_Route_TypedPerFilterConfigEntry*)_upb_map_next(map, iter);
|
|
1868
1971
|
}
|
|
1869
1972
|
UPB_INLINE void envoy_config_route_v3_Route_set_name(envoy_config_route_v3_Route *msg, upb_StringView value) {
|
|
1870
1973
|
const upb_MiniTableField field = {14, UPB_SIZE(60, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
1871
|
-
|
|
1974
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1872
1975
|
}
|
|
1873
1976
|
UPB_INLINE void envoy_config_route_v3_Route_set_tracing(envoy_config_route_v3_Route *msg, envoy_config_route_v3_Tracing* value) {
|
|
1874
1977
|
const upb_MiniTableField field = {15, UPB_SIZE(44, 96), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1875
|
-
|
|
1978
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__Tracing_msg_init);
|
|
1979
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1876
1980
|
}
|
|
1877
1981
|
UPB_INLINE struct envoy_config_route_v3_Tracing* envoy_config_route_v3_Route_mutable_tracing(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1878
1982
|
struct envoy_config_route_v3_Tracing* sub = (struct envoy_config_route_v3_Tracing*)envoy_config_route_v3_Route_tracing(msg);
|
|
@@ -1884,7 +1988,8 @@ UPB_INLINE struct envoy_config_route_v3_Tracing* envoy_config_route_v3_Route_mut
|
|
|
1884
1988
|
}
|
|
1885
1989
|
UPB_INLINE void envoy_config_route_v3_Route_set_per_request_buffer_limit_bytes(envoy_config_route_v3_Route *msg, struct google_protobuf_UInt32Value* value) {
|
|
1886
1990
|
const upb_MiniTableField field = {16, UPB_SIZE(48, 104), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1887
|
-
|
|
1991
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
1992
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1888
1993
|
}
|
|
1889
1994
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_Route_mutable_per_request_buffer_limit_bytes(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1890
1995
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_Route_per_request_buffer_limit_bytes(msg);
|
|
@@ -1896,7 +2001,8 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_Route_mutab
|
|
|
1896
2001
|
}
|
|
1897
2002
|
UPB_INLINE void envoy_config_route_v3_Route_set_filter_action(envoy_config_route_v3_Route *msg, envoy_config_route_v3_FilterAction* value) {
|
|
1898
2003
|
const upb_MiniTableField field = {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)};
|
|
1899
|
-
|
|
2004
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__FilterAction_msg_init);
|
|
2005
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1900
2006
|
}
|
|
1901
2007
|
UPB_INLINE struct envoy_config_route_v3_FilterAction* envoy_config_route_v3_Route_mutable_filter_action(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1902
2008
|
struct envoy_config_route_v3_FilterAction* sub = (struct envoy_config_route_v3_FilterAction*)envoy_config_route_v3_Route_filter_action(msg);
|
|
@@ -1908,7 +2014,8 @@ UPB_INLINE struct envoy_config_route_v3_FilterAction* envoy_config_route_v3_Rout
|
|
|
1908
2014
|
}
|
|
1909
2015
|
UPB_INLINE void envoy_config_route_v3_Route_set_non_forwarding_action(envoy_config_route_v3_Route *msg, envoy_config_route_v3_NonForwardingAction* value) {
|
|
1910
2016
|
const upb_MiniTableField field = {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)};
|
|
1911
|
-
|
|
2017
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__NonForwardingAction_msg_init);
|
|
2018
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1912
2019
|
}
|
|
1913
2020
|
UPB_INLINE struct envoy_config_route_v3_NonForwardingAction* envoy_config_route_v3_Route_mutable_non_forwarding_action(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
1914
2021
|
struct envoy_config_route_v3_NonForwardingAction* sub = (struct envoy_config_route_v3_NonForwardingAction*)envoy_config_route_v3_Route_non_forwarding_action(msg);
|
|
@@ -1920,7 +2027,7 @@ UPB_INLINE struct envoy_config_route_v3_NonForwardingAction* envoy_config_route_
|
|
|
1920
2027
|
}
|
|
1921
2028
|
UPB_INLINE void envoy_config_route_v3_Route_set_stat_prefix(envoy_config_route_v3_Route *msg, upb_StringView value) {
|
|
1922
2029
|
const upb_MiniTableField field = {19, UPB_SIZE(68, 112), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
1923
|
-
|
|
2030
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1924
2031
|
}
|
|
1925
2032
|
|
|
1926
2033
|
/* envoy.config.route.v3.Route.TypedPerFilterConfigEntry */
|
|
@@ -1995,6 +2102,7 @@ UPB_INLINE void envoy_config_route_v3_WeightedCluster_clear_clusters(envoy_confi
|
|
|
1995
2102
|
}
|
|
1996
2103
|
UPB_INLINE const envoy_config_route_v3_WeightedCluster_ClusterWeight* const* envoy_config_route_v3_WeightedCluster_clusters(const envoy_config_route_v3_WeightedCluster* msg, size_t* size) {
|
|
1997
2104
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2105
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight_msg_init);
|
|
1998
2106
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
1999
2107
|
if (arr) {
|
|
2000
2108
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2006,6 +2114,7 @@ UPB_INLINE const envoy_config_route_v3_WeightedCluster_ClusterWeight* const* env
|
|
|
2006
2114
|
}
|
|
2007
2115
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_WeightedCluster_clusters_upb_array(const envoy_config_route_v3_WeightedCluster* msg, size_t* size) {
|
|
2008
2116
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2117
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight_msg_init);
|
|
2009
2118
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2010
2119
|
if (size) {
|
|
2011
2120
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -2014,6 +2123,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_WeightedCluster_clusters_upb_
|
|
|
2014
2123
|
}
|
|
2015
2124
|
UPB_INLINE upb_Array* _envoy_config_route_v3_WeightedCluster_clusters_mutable_upb_array(envoy_config_route_v3_WeightedCluster* msg, size_t* size, upb_Arena* arena) {
|
|
2016
2125
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2126
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight_msg_init);
|
|
2017
2127
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
2018
2128
|
&field, arena);
|
|
2019
2129
|
if (size) {
|
|
@@ -2041,6 +2151,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Weigh
|
|
|
2041
2151
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
2042
2152
|
const struct google_protobuf_UInt32Value* ret;
|
|
2043
2153
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2154
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
2044
2155
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2045
2156
|
&default_val, &ret);
|
|
2046
2157
|
return ret;
|
|
@@ -2068,6 +2179,7 @@ UPB_INLINE bool envoy_config_route_v3_WeightedCluster_has_header_name(const envo
|
|
|
2068
2179
|
|
|
2069
2180
|
UPB_INLINE envoy_config_route_v3_WeightedCluster_ClusterWeight** envoy_config_route_v3_WeightedCluster_mutable_clusters(envoy_config_route_v3_WeightedCluster* msg, size_t* size) {
|
|
2070
2181
|
upb_MiniTableField field = {1, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2182
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight_msg_init);
|
|
2071
2183
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
2072
2184
|
if (arr) {
|
|
2073
2185
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2084,6 +2196,7 @@ UPB_INLINE envoy_config_route_v3_WeightedCluster_ClusterWeight** envoy_config_ro
|
|
|
2084
2196
|
}
|
|
2085
2197
|
UPB_INLINE struct envoy_config_route_v3_WeightedCluster_ClusterWeight* envoy_config_route_v3_WeightedCluster_add_clusters(envoy_config_route_v3_WeightedCluster* msg, upb_Arena* arena) {
|
|
2086
2198
|
upb_MiniTableField field = {1, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2199
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight_msg_init);
|
|
2087
2200
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
2088
2201
|
UPB_UPCAST(msg), &field, arena);
|
|
2089
2202
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -2098,11 +2211,12 @@ UPB_INLINE struct envoy_config_route_v3_WeightedCluster_ClusterWeight* envoy_con
|
|
|
2098
2211
|
}
|
|
2099
2212
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_runtime_key_prefix(envoy_config_route_v3_WeightedCluster *msg, upb_StringView value) {
|
|
2100
2213
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2101
|
-
|
|
2214
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2102
2215
|
}
|
|
2103
2216
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_total_weight(envoy_config_route_v3_WeightedCluster *msg, struct google_protobuf_UInt32Value* value) {
|
|
2104
2217
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2105
|
-
|
|
2218
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
2219
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2106
2220
|
}
|
|
2107
2221
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedCluster_mutable_total_weight(envoy_config_route_v3_WeightedCluster* msg, upb_Arena* arena) {
|
|
2108
2222
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_WeightedCluster_total_weight(msg);
|
|
@@ -2114,7 +2228,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedClu
|
|
|
2114
2228
|
}
|
|
2115
2229
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_header_name(envoy_config_route_v3_WeightedCluster *msg, upb_StringView value) {
|
|
2116
2230
|
const upb_MiniTableField field = {4, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2117
|
-
|
|
2231
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2118
2232
|
}
|
|
2119
2233
|
|
|
2120
2234
|
/* envoy.config.route.v3.WeightedCluster.ClusterWeight */
|
|
@@ -2182,6 +2296,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Weigh
|
|
|
2182
2296
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
2183
2297
|
const struct google_protobuf_UInt32Value* ret;
|
|
2184
2298
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2299
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
2185
2300
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2186
2301
|
&default_val, &ret);
|
|
2187
2302
|
return ret;
|
|
@@ -2198,6 +2313,7 @@ UPB_INLINE const struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Wei
|
|
|
2198
2313
|
const struct envoy_config_core_v3_Metadata* default_val = NULL;
|
|
2199
2314
|
const struct envoy_config_core_v3_Metadata* ret;
|
|
2200
2315
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2316
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
2201
2317
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2202
2318
|
&default_val, &ret);
|
|
2203
2319
|
return ret;
|
|
@@ -2212,6 +2328,7 @@ UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_clear_reques
|
|
|
2212
2328
|
}
|
|
2213
2329
|
UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_config_route_v3_WeightedCluster_ClusterWeight_request_headers_to_add(const envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size) {
|
|
2214
2330
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2331
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2215
2332
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2216
2333
|
if (arr) {
|
|
2217
2334
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2223,6 +2340,7 @@ UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_con
|
|
|
2223
2340
|
}
|
|
2224
2341
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_WeightedCluster_ClusterWeight_request_headers_to_add_upb_array(const envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size) {
|
|
2225
2342
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2343
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2226
2344
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2227
2345
|
if (size) {
|
|
2228
2346
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -2231,6 +2349,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_WeightedCluster_ClusterWeight
|
|
|
2231
2349
|
}
|
|
2232
2350
|
UPB_INLINE upb_Array* _envoy_config_route_v3_WeightedCluster_ClusterWeight_request_headers_to_add_mutable_upb_array(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size, upb_Arena* arena) {
|
|
2233
2351
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2352
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2234
2353
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
2235
2354
|
&field, arena);
|
|
2236
2355
|
if (size) {
|
|
@@ -2244,6 +2363,7 @@ UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_clear_respon
|
|
|
2244
2363
|
}
|
|
2245
2364
|
UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_config_route_v3_WeightedCluster_ClusterWeight_response_headers_to_add(const envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size) {
|
|
2246
2365
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2366
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2247
2367
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2248
2368
|
if (arr) {
|
|
2249
2369
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2255,6 +2375,7 @@ UPB_INLINE const struct envoy_config_core_v3_HeaderValueOption* const* envoy_con
|
|
|
2255
2375
|
}
|
|
2256
2376
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_WeightedCluster_ClusterWeight_response_headers_to_add_upb_array(const envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size) {
|
|
2257
2377
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2378
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2258
2379
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2259
2380
|
if (size) {
|
|
2260
2381
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -2263,6 +2384,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_WeightedCluster_ClusterWeight
|
|
|
2263
2384
|
}
|
|
2264
2385
|
UPB_INLINE upb_Array* _envoy_config_route_v3_WeightedCluster_ClusterWeight_response_headers_to_add_mutable_upb_array(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size, upb_Arena* arena) {
|
|
2265
2386
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2387
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2266
2388
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
2267
2389
|
&field, arena);
|
|
2268
2390
|
if (size) {
|
|
@@ -2345,22 +2467,30 @@ UPB_INLINE size_t envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_
|
|
|
2345
2467
|
}
|
|
2346
2468
|
UPB_INLINE bool envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_filter_config_get(const envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_StringView key, struct google_protobuf_Any** val) {
|
|
2347
2469
|
const upb_MiniTableField field = {10, UPB_SIZE(36, 96), 0, 4, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2470
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight__TypedPerFilterConfigEntry_msg_init);
|
|
2471
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
2348
2472
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
2349
2473
|
if (!map) return false;
|
|
2350
2474
|
return _upb_Map_Get(map, &key, 0, val, sizeof(*val));
|
|
2351
2475
|
}
|
|
2352
2476
|
UPB_INLINE const envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry* envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_filter_config_next(const envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* iter) {
|
|
2353
2477
|
const upb_MiniTableField field = {10, UPB_SIZE(36, 96), 0, 4, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2478
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight__TypedPerFilterConfigEntry_msg_init);
|
|
2479
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
2354
2480
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
2355
2481
|
if (!map) return NULL;
|
|
2356
2482
|
return (const envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry*)_upb_map_next(map, iter);
|
|
2357
2483
|
}
|
|
2358
2484
|
UPB_INLINE const upb_Map* _envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_filter_config_upb_map(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg) {
|
|
2359
2485
|
const upb_MiniTableField field = {10, UPB_SIZE(36, 96), 0, 4, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2486
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight__TypedPerFilterConfigEntry_msg_init);
|
|
2487
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
2360
2488
|
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
2361
2489
|
}
|
|
2362
2490
|
UPB_INLINE upb_Map* _envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_filter_config_mutable_upb_map(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_Arena* a) {
|
|
2363
2491
|
const upb_MiniTableField field = {10, UPB_SIZE(36, 96), 0, 4, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2492
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight__TypedPerFilterConfigEntry_msg_init);
|
|
2493
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
2364
2494
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, sizeof(struct google_protobuf_Any*), a);
|
|
2365
2495
|
}
|
|
2366
2496
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_clear_host_rewrite_literal(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg) {
|
|
@@ -2394,11 +2524,12 @@ UPB_INLINE upb_StringView envoy_config_route_v3_WeightedCluster_ClusterWeight_cl
|
|
|
2394
2524
|
|
|
2395
2525
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_name(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, upb_StringView value) {
|
|
2396
2526
|
const upb_MiniTableField field = {1, UPB_SIZE(52, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2397
|
-
|
|
2527
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2398
2528
|
}
|
|
2399
2529
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_weight(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, struct google_protobuf_UInt32Value* value) {
|
|
2400
2530
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2401
|
-
|
|
2531
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
2532
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2402
2533
|
}
|
|
2403
2534
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedCluster_ClusterWeight_mutable_weight(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_Arena* arena) {
|
|
2404
2535
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_WeightedCluster_ClusterWeight_weight(msg);
|
|
@@ -2410,7 +2541,8 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedClu
|
|
|
2410
2541
|
}
|
|
2411
2542
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_metadata_match(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, struct envoy_config_core_v3_Metadata* value) {
|
|
2412
2543
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2413
|
-
|
|
2544
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
2545
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2414
2546
|
}
|
|
2415
2547
|
UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_WeightedCluster_ClusterWeight_mutable_metadata_match(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_Arena* arena) {
|
|
2416
2548
|
struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_WeightedCluster_ClusterWeight_metadata_match(msg);
|
|
@@ -2422,6 +2554,7 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_WeightedC
|
|
|
2422
2554
|
}
|
|
2423
2555
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3_WeightedCluster_ClusterWeight_mutable_request_headers_to_add(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size) {
|
|
2424
2556
|
upb_MiniTableField field = {4, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2557
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2425
2558
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
2426
2559
|
if (arr) {
|
|
2427
2560
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2438,6 +2571,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3
|
|
|
2438
2571
|
}
|
|
2439
2572
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_WeightedCluster_ClusterWeight_add_request_headers_to_add(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_Arena* arena) {
|
|
2440
2573
|
upb_MiniTableField field = {4, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2574
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2441
2575
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
2442
2576
|
UPB_UPCAST(msg), &field, arena);
|
|
2443
2577
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -2452,6 +2586,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_
|
|
|
2452
2586
|
}
|
|
2453
2587
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3_WeightedCluster_ClusterWeight_mutable_response_headers_to_add(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* size) {
|
|
2454
2588
|
upb_MiniTableField field = {5, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2589
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2455
2590
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
2456
2591
|
if (arr) {
|
|
2457
2592
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2468,6 +2603,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption** envoy_config_route_v3
|
|
|
2468
2603
|
}
|
|
2469
2604
|
UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_WeightedCluster_ClusterWeight_add_response_headers_to_add(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_Arena* arena) {
|
|
2470
2605
|
upb_MiniTableField field = {5, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2606
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HeaderValueOption_msg_init);
|
|
2471
2607
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
2472
2608
|
UPB_UPCAST(msg), &field, arena);
|
|
2473
2609
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -2544,6 +2680,8 @@ UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_fi
|
|
|
2544
2680
|
}
|
|
2545
2681
|
UPB_INLINE bool envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_filter_config_set(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_StringView key, struct google_protobuf_Any* val, upb_Arena* a) {
|
|
2546
2682
|
const upb_MiniTableField field = {10, UPB_SIZE(36, 96), 0, 4, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2683
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight__TypedPerFilterConfigEntry_msg_init);
|
|
2684
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
2547
2685
|
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
|
2548
2686
|
&field, 0, sizeof(val), a);
|
|
2549
2687
|
return _upb_Map_Insert(map, &key, 0, &val, sizeof(val), a) !=
|
|
@@ -2557,17 +2695,19 @@ UPB_INLINE bool envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_fi
|
|
|
2557
2695
|
}
|
|
2558
2696
|
UPB_INLINE envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry* envoy_config_route_v3_WeightedCluster_ClusterWeight_typed_per_filter_config_nextmutable(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, size_t* iter) {
|
|
2559
2697
|
const upb_MiniTableField field = {10, UPB_SIZE(36, 96), 0, 4, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2698
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster__ClusterWeight__TypedPerFilterConfigEntry_msg_init);
|
|
2699
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
2560
2700
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
|
2561
2701
|
if (!map) return NULL;
|
|
2562
2702
|
return (envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry*)_upb_map_next(map, iter);
|
|
2563
2703
|
}
|
|
2564
2704
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_host_rewrite_literal(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, upb_StringView value) {
|
|
2565
2705
|
const upb_MiniTableField field = {11, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2566
|
-
|
|
2706
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2567
2707
|
}
|
|
2568
2708
|
UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_cluster_header(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, upb_StringView value) {
|
|
2569
2709
|
const upb_MiniTableField field = {12, UPB_SIZE(60, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2570
|
-
|
|
2710
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2571
2711
|
}
|
|
2572
2712
|
|
|
2573
2713
|
/* envoy.config.route.v3.WeightedCluster.ClusterWeight.TypedPerFilterConfigEntry */
|
|
@@ -2635,6 +2775,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_
|
|
|
2635
2775
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
2636
2776
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
2637
2777
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2778
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
2638
2779
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2639
2780
|
&default_val, &ret);
|
|
2640
2781
|
return ret;
|
|
@@ -2658,7 +2799,8 @@ UPB_INLINE bool envoy_config_route_v3_ClusterSpecifierPlugin_is_optional(const e
|
|
|
2658
2799
|
|
|
2659
2800
|
UPB_INLINE void envoy_config_route_v3_ClusterSpecifierPlugin_set_extension(envoy_config_route_v3_ClusterSpecifierPlugin *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
2660
2801
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2661
|
-
|
|
2802
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
2803
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2662
2804
|
}
|
|
2663
2805
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_ClusterSpecifierPlugin_mutable_extension(envoy_config_route_v3_ClusterSpecifierPlugin* msg, upb_Arena* arena) {
|
|
2664
2806
|
struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_ClusterSpecifierPlugin_extension(msg);
|
|
@@ -2670,7 +2812,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
2670
2812
|
}
|
|
2671
2813
|
UPB_INLINE void envoy_config_route_v3_ClusterSpecifierPlugin_set_is_optional(envoy_config_route_v3_ClusterSpecifierPlugin *msg, bool value) {
|
|
2672
2814
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
2673
|
-
|
|
2815
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2674
2816
|
}
|
|
2675
2817
|
|
|
2676
2818
|
/* envoy.config.route.v3.RouteMatch */
|
|
@@ -2763,6 +2905,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMa
|
|
|
2763
2905
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
2764
2906
|
const struct google_protobuf_BoolValue* ret;
|
|
2765
2907
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2908
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
2766
2909
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2767
2910
|
&default_val, &ret);
|
|
2768
2911
|
return ret;
|
|
@@ -2777,6 +2920,7 @@ UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_headers(envoy_config_rout
|
|
|
2777
2920
|
}
|
|
2778
2921
|
UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_v3_RouteMatch_headers(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
2779
2922
|
const upb_MiniTableField field = {6, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2923
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
2780
2924
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2781
2925
|
if (arr) {
|
|
2782
2926
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2788,6 +2932,7 @@ UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_
|
|
|
2788
2932
|
}
|
|
2789
2933
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteMatch_headers_upb_array(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
2790
2934
|
const upb_MiniTableField field = {6, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2935
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
2791
2936
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2792
2937
|
if (size) {
|
|
2793
2938
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -2796,6 +2941,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteMatch_headers_upb_array(
|
|
|
2796
2941
|
}
|
|
2797
2942
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteMatch_headers_mutable_upb_array(envoy_config_route_v3_RouteMatch* msg, size_t* size, upb_Arena* arena) {
|
|
2798
2943
|
const upb_MiniTableField field = {6, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2944
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
2799
2945
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
2800
2946
|
&field, arena);
|
|
2801
2947
|
if (size) {
|
|
@@ -2809,6 +2955,7 @@ UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_query_parameters(envoy_co
|
|
|
2809
2955
|
}
|
|
2810
2956
|
UPB_INLINE const envoy_config_route_v3_QueryParameterMatcher* const* envoy_config_route_v3_RouteMatch_query_parameters(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
2811
2957
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2958
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
2812
2959
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2813
2960
|
if (arr) {
|
|
2814
2961
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2820,6 +2967,7 @@ UPB_INLINE const envoy_config_route_v3_QueryParameterMatcher* const* envoy_confi
|
|
|
2820
2967
|
}
|
|
2821
2968
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteMatch_query_parameters_upb_array(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
2822
2969
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2970
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
2823
2971
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2824
2972
|
if (size) {
|
|
2825
2973
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -2828,6 +2976,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteMatch_query_parameters_u
|
|
|
2828
2976
|
}
|
|
2829
2977
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteMatch_query_parameters_mutable_upb_array(envoy_config_route_v3_RouteMatch* msg, size_t* size, upb_Arena* arena) {
|
|
2830
2978
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2979
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
2831
2980
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
2832
2981
|
&field, arena);
|
|
2833
2982
|
if (size) {
|
|
@@ -2843,6 +2992,7 @@ UPB_INLINE const envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* envoy_c
|
|
|
2843
2992
|
const envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* default_val = NULL;
|
|
2844
2993
|
const envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* ret;
|
|
2845
2994
|
const upb_MiniTableField field = {8, UPB_SIZE(24, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2995
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__GrpcRouteMatchOptions_msg_init);
|
|
2846
2996
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2847
2997
|
&default_val, &ret);
|
|
2848
2998
|
return ret;
|
|
@@ -2859,6 +3009,7 @@ UPB_INLINE const struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_con
|
|
|
2859
3009
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* default_val = NULL;
|
|
2860
3010
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* ret;
|
|
2861
3011
|
const upb_MiniTableField field = {9, UPB_SIZE(28, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3012
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
2862
3013
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2863
3014
|
&default_val, &ret);
|
|
2864
3015
|
return ret;
|
|
@@ -2875,6 +3026,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v
|
|
|
2875
3026
|
const struct envoy_type_matcher_v3_RegexMatcher* default_val = NULL;
|
|
2876
3027
|
const struct envoy_type_matcher_v3_RegexMatcher* ret;
|
|
2877
3028
|
const upb_MiniTableField field = {10, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3029
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatcher_msg_init);
|
|
2878
3030
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2879
3031
|
&default_val, &ret);
|
|
2880
3032
|
return ret;
|
|
@@ -2891,6 +3043,7 @@ UPB_INLINE const envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* envoy_
|
|
|
2891
3043
|
const envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* default_val = NULL;
|
|
2892
3044
|
const envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* ret;
|
|
2893
3045
|
const upb_MiniTableField field = {11, UPB_SIZE(32, 72), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3046
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__TlsContextMatchOptions_msg_init);
|
|
2894
3047
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2895
3048
|
&default_val, &ret);
|
|
2896
3049
|
return ret;
|
|
@@ -2907,6 +3060,7 @@ UPB_INLINE const envoy_config_route_v3_RouteMatch_ConnectMatcher* envoy_config_r
|
|
|
2907
3060
|
const envoy_config_route_v3_RouteMatch_ConnectMatcher* default_val = NULL;
|
|
2908
3061
|
const envoy_config_route_v3_RouteMatch_ConnectMatcher* ret;
|
|
2909
3062
|
const upb_MiniTableField field = {12, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3063
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__ConnectMatcher_msg_init);
|
|
2910
3064
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2911
3065
|
&default_val, &ret);
|
|
2912
3066
|
return ret;
|
|
@@ -2921,6 +3075,7 @@ UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_dynamic_metadata(envoy_co
|
|
|
2921
3075
|
}
|
|
2922
3076
|
UPB_INLINE const struct envoy_type_matcher_v3_MetadataMatcher* const* envoy_config_route_v3_RouteMatch_dynamic_metadata(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
2923
3077
|
const upb_MiniTableField field = {13, UPB_SIZE(36, 80), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3078
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__MetadataMatcher_msg_init);
|
|
2924
3079
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2925
3080
|
if (arr) {
|
|
2926
3081
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -2932,6 +3087,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_MetadataMatcher* const* envoy_conf
|
|
|
2932
3087
|
}
|
|
2933
3088
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteMatch_dynamic_metadata_upb_array(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
2934
3089
|
const upb_MiniTableField field = {13, UPB_SIZE(36, 80), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3090
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__MetadataMatcher_msg_init);
|
|
2935
3091
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
2936
3092
|
if (size) {
|
|
2937
3093
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -2940,6 +3096,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteMatch_dynamic_metadata_u
|
|
|
2940
3096
|
}
|
|
2941
3097
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteMatch_dynamic_metadata_mutable_upb_array(envoy_config_route_v3_RouteMatch* msg, size_t* size, upb_Arena* arena) {
|
|
2942
3098
|
const upb_MiniTableField field = {13, UPB_SIZE(36, 80), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3099
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__MetadataMatcher_msg_init);
|
|
2943
3100
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
2944
3101
|
&field, arena);
|
|
2945
3102
|
if (size) {
|
|
@@ -2971,6 +3128,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_
|
|
|
2971
3128
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
2972
3129
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
2973
3130
|
const upb_MiniTableField field = {15, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3131
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
2974
3132
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2975
3133
|
&default_val, &ret);
|
|
2976
3134
|
return ret;
|
|
@@ -2982,15 +3140,16 @@ UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_path_match_policy(const env
|
|
|
2982
3140
|
|
|
2983
3141
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_prefix(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
|
|
2984
3142
|
const upb_MiniTableField field = {1, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2985
|
-
|
|
3143
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2986
3144
|
}
|
|
2987
3145
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
|
|
2988
3146
|
const upb_MiniTableField field = {2, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2989
|
-
|
|
3147
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2990
3148
|
}
|
|
2991
3149
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_case_sensitive(envoy_config_route_v3_RouteMatch *msg, struct google_protobuf_BoolValue* value) {
|
|
2992
3150
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2993
|
-
|
|
3151
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3152
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2994
3153
|
}
|
|
2995
3154
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_mutable_case_sensitive(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
2996
3155
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteMatch_case_sensitive(msg);
|
|
@@ -3002,6 +3161,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_mu
|
|
|
3002
3161
|
}
|
|
3003
3162
|
UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RouteMatch_mutable_headers(envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
3004
3163
|
upb_MiniTableField field = {6, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3164
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
3005
3165
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
3006
3166
|
if (arr) {
|
|
3007
3167
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3018,6 +3178,7 @@ UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RouteMatc
|
|
|
3018
3178
|
}
|
|
3019
3179
|
UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_RouteMatch_add_headers(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3020
3180
|
upb_MiniTableField field = {6, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3181
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
3021
3182
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
3022
3183
|
UPB_UPCAST(msg), &field, arena);
|
|
3023
3184
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -3032,6 +3193,7 @@ UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_Rou
|
|
|
3032
3193
|
}
|
|
3033
3194
|
UPB_INLINE envoy_config_route_v3_QueryParameterMatcher** envoy_config_route_v3_RouteMatch_mutable_query_parameters(envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
3034
3195
|
upb_MiniTableField field = {7, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3196
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
3035
3197
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
3036
3198
|
if (arr) {
|
|
3037
3199
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3048,6 +3210,7 @@ UPB_INLINE envoy_config_route_v3_QueryParameterMatcher** envoy_config_route_v3_R
|
|
|
3048
3210
|
}
|
|
3049
3211
|
UPB_INLINE struct envoy_config_route_v3_QueryParameterMatcher* envoy_config_route_v3_RouteMatch_add_query_parameters(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3050
3212
|
upb_MiniTableField field = {7, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3213
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
3051
3214
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
3052
3215
|
UPB_UPCAST(msg), &field, arena);
|
|
3053
3216
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -3062,7 +3225,8 @@ UPB_INLINE struct envoy_config_route_v3_QueryParameterMatcher* envoy_config_rout
|
|
|
3062
3225
|
}
|
|
3063
3226
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_grpc(envoy_config_route_v3_RouteMatch *msg, envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* value) {
|
|
3064
3227
|
const upb_MiniTableField field = {8, UPB_SIZE(24, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3065
|
-
|
|
3228
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__GrpcRouteMatchOptions_msg_init);
|
|
3229
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3066
3230
|
}
|
|
3067
3231
|
UPB_INLINE struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* envoy_config_route_v3_RouteMatch_mutable_grpc(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3068
3232
|
struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* sub = (struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions*)envoy_config_route_v3_RouteMatch_grpc(msg);
|
|
@@ -3074,7 +3238,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* envoy_
|
|
|
3074
3238
|
}
|
|
3075
3239
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_runtime_fraction(envoy_config_route_v3_RouteMatch *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
|
|
3076
3240
|
const upb_MiniTableField field = {9, UPB_SIZE(28, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3077
|
-
|
|
3241
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
3242
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3078
3243
|
}
|
|
3079
3244
|
UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_RouteMatch_mutable_runtime_fraction(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3080
3245
|
struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_RouteMatch_runtime_fraction(msg);
|
|
@@ -3086,7 +3251,8 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
|
|
|
3086
3251
|
}
|
|
3087
3252
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_safe_regex(envoy_config_route_v3_RouteMatch *msg, struct envoy_type_matcher_v3_RegexMatcher* value) {
|
|
3088
3253
|
const upb_MiniTableField field = {10, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3089
|
-
|
|
3254
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatcher_msg_init);
|
|
3255
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3090
3256
|
}
|
|
3091
3257
|
UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_RouteMatch_mutable_safe_regex(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3092
3258
|
struct envoy_type_matcher_v3_RegexMatcher* sub = (struct envoy_type_matcher_v3_RegexMatcher*)envoy_config_route_v3_RouteMatch_safe_regex(msg);
|
|
@@ -3098,7 +3264,8 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_Rout
|
|
|
3098
3264
|
}
|
|
3099
3265
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_tls_context(envoy_config_route_v3_RouteMatch *msg, envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* value) {
|
|
3100
3266
|
const upb_MiniTableField field = {11, UPB_SIZE(32, 72), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3101
|
-
|
|
3267
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__TlsContextMatchOptions_msg_init);
|
|
3268
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3102
3269
|
}
|
|
3103
3270
|
UPB_INLINE struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* envoy_config_route_v3_RouteMatch_mutable_tls_context(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3104
3271
|
struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* sub = (struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions*)envoy_config_route_v3_RouteMatch_tls_context(msg);
|
|
@@ -3110,7 +3277,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* envoy
|
|
|
3110
3277
|
}
|
|
3111
3278
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_connect_matcher(envoy_config_route_v3_RouteMatch *msg, envoy_config_route_v3_RouteMatch_ConnectMatcher* value) {
|
|
3112
3279
|
const upb_MiniTableField field = {12, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3113
|
-
|
|
3280
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__ConnectMatcher_msg_init);
|
|
3281
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3114
3282
|
}
|
|
3115
3283
|
UPB_INLINE struct envoy_config_route_v3_RouteMatch_ConnectMatcher* envoy_config_route_v3_RouteMatch_mutable_connect_matcher(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3116
3284
|
struct envoy_config_route_v3_RouteMatch_ConnectMatcher* sub = (struct envoy_config_route_v3_RouteMatch_ConnectMatcher*)envoy_config_route_v3_RouteMatch_connect_matcher(msg);
|
|
@@ -3122,6 +3290,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch_ConnectMatcher* envoy_config_
|
|
|
3122
3290
|
}
|
|
3123
3291
|
UPB_INLINE struct envoy_type_matcher_v3_MetadataMatcher** envoy_config_route_v3_RouteMatch_mutable_dynamic_metadata(envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
3124
3292
|
upb_MiniTableField field = {13, UPB_SIZE(36, 80), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3293
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__MetadataMatcher_msg_init);
|
|
3125
3294
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
3126
3295
|
if (arr) {
|
|
3127
3296
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3138,6 +3307,7 @@ UPB_INLINE struct envoy_type_matcher_v3_MetadataMatcher** envoy_config_route_v3_
|
|
|
3138
3307
|
}
|
|
3139
3308
|
UPB_INLINE struct envoy_type_matcher_v3_MetadataMatcher* envoy_config_route_v3_RouteMatch_add_dynamic_metadata(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3140
3309
|
upb_MiniTableField field = {13, UPB_SIZE(36, 80), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3310
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__MetadataMatcher_msg_init);
|
|
3141
3311
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
3142
3312
|
UPB_UPCAST(msg), &field, arena);
|
|
3143
3313
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -3152,11 +3322,12 @@ UPB_INLINE struct envoy_type_matcher_v3_MetadataMatcher* envoy_config_route_v3_R
|
|
|
3152
3322
|
}
|
|
3153
3323
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path_separated_prefix(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
|
|
3154
3324
|
const upb_MiniTableField field = {14, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3155
|
-
|
|
3325
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3156
3326
|
}
|
|
3157
3327
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path_match_policy(envoy_config_route_v3_RouteMatch *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
3158
3328
|
const upb_MiniTableField field = {15, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3159
|
-
|
|
3329
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
3330
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3160
3331
|
}
|
|
3161
3332
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteMatch_mutable_path_match_policy(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3162
3333
|
struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RouteMatch_path_match_policy(msg);
|
|
@@ -3249,6 +3420,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMa
|
|
|
3249
3420
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3250
3421
|
const struct google_protobuf_BoolValue* ret;
|
|
3251
3422
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3423
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3252
3424
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3253
3425
|
&default_val, &ret);
|
|
3254
3426
|
return ret;
|
|
@@ -3265,6 +3437,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMa
|
|
|
3265
3437
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3266
3438
|
const struct google_protobuf_BoolValue* ret;
|
|
3267
3439
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3440
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3268
3441
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3269
3442
|
&default_val, &ret);
|
|
3270
3443
|
return ret;
|
|
@@ -3276,7 +3449,8 @@ UPB_INLINE bool envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_has_vali
|
|
|
3276
3449
|
|
|
3277
3450
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_set_presented(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions *msg, struct google_protobuf_BoolValue* value) {
|
|
3278
3451
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3279
|
-
|
|
3452
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3453
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3280
3454
|
}
|
|
3281
3455
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_mutable_presented(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* msg, upb_Arena* arena) {
|
|
3282
3456
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_presented(msg);
|
|
@@ -3288,7 +3462,8 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_Tl
|
|
|
3288
3462
|
}
|
|
3289
3463
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_set_validated(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions *msg, struct google_protobuf_BoolValue* value) {
|
|
3290
3464
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3291
|
-
|
|
3465
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3466
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3292
3467
|
}
|
|
3293
3468
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_mutable_validated(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* msg, upb_Arena* arena) {
|
|
3294
3469
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_validated(msg);
|
|
@@ -3378,54 +3553,54 @@ typedef enum {
|
|
|
3378
3553
|
envoy_config_route_v3_CorsPolicy_enabled_specifier_NOT_SET = 0
|
|
3379
3554
|
} envoy_config_route_v3_CorsPolicy_enabled_specifier_oneofcases;
|
|
3380
3555
|
UPB_INLINE envoy_config_route_v3_CorsPolicy_enabled_specifier_oneofcases envoy_config_route_v3_CorsPolicy_enabled_specifier_case(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3381
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
|
3556
|
+
const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3382
3557
|
return (envoy_config_route_v3_CorsPolicy_enabled_specifier_oneofcases)upb_Message_WhichOneofFieldNumber(
|
|
3383
3558
|
UPB_UPCAST(msg), &field);
|
|
3384
3559
|
}
|
|
3385
3560
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_allow_methods(envoy_config_route_v3_CorsPolicy* msg) {
|
|
3386
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
3561
|
+
const upb_MiniTableField field = {2, UPB_SIZE(40, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3387
3562
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3388
3563
|
}
|
|
3389
3564
|
UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_allow_methods(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3390
3565
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3391
3566
|
upb_StringView ret;
|
|
3392
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
3567
|
+
const upb_MiniTableField field = {2, UPB_SIZE(40, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3393
3568
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3394
3569
|
&default_val, &ret);
|
|
3395
3570
|
return ret;
|
|
3396
3571
|
}
|
|
3397
3572
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_allow_headers(envoy_config_route_v3_CorsPolicy* msg) {
|
|
3398
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
3573
|
+
const upb_MiniTableField field = {3, UPB_SIZE(48, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3399
3574
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3400
3575
|
}
|
|
3401
3576
|
UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_allow_headers(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3402
3577
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3403
3578
|
upb_StringView ret;
|
|
3404
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
3579
|
+
const upb_MiniTableField field = {3, UPB_SIZE(48, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3405
3580
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3406
3581
|
&default_val, &ret);
|
|
3407
3582
|
return ret;
|
|
3408
3583
|
}
|
|
3409
3584
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_expose_headers(envoy_config_route_v3_CorsPolicy* msg) {
|
|
3410
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
|
3585
|
+
const upb_MiniTableField field = {4, UPB_SIZE(56, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3411
3586
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3412
3587
|
}
|
|
3413
3588
|
UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_expose_headers(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3414
3589
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3415
3590
|
upb_StringView ret;
|
|
3416
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
|
3591
|
+
const upb_MiniTableField field = {4, UPB_SIZE(56, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3417
3592
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3418
3593
|
&default_val, &ret);
|
|
3419
3594
|
return ret;
|
|
3420
3595
|
}
|
|
3421
3596
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_max_age(envoy_config_route_v3_CorsPolicy* msg) {
|
|
3422
|
-
const upb_MiniTableField field = {5,
|
|
3597
|
+
const upb_MiniTableField field = {5, 64, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3423
3598
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3424
3599
|
}
|
|
3425
3600
|
UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_max_age(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3426
3601
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3427
3602
|
upb_StringView ret;
|
|
3428
|
-
const upb_MiniTableField field = {5,
|
|
3603
|
+
const upb_MiniTableField field = {5, 64, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3429
3604
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3430
3605
|
&default_val, &ret);
|
|
3431
3606
|
return ret;
|
|
@@ -3438,6 +3613,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPol
|
|
|
3438
3613
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3439
3614
|
const struct google_protobuf_BoolValue* ret;
|
|
3440
3615
|
const upb_MiniTableField field = {6, UPB_SIZE(12, 80), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3616
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3441
3617
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3442
3618
|
&default_val, &ret);
|
|
3443
3619
|
return ret;
|
|
@@ -3447,19 +3623,20 @@ UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_allow_credentials(const env
|
|
|
3447
3623
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3448
3624
|
}
|
|
3449
3625
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_filter_enabled(envoy_config_route_v3_CorsPolicy* msg) {
|
|
3450
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
|
3626
|
+
const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3451
3627
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3452
3628
|
}
|
|
3453
3629
|
UPB_INLINE const struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_CorsPolicy_filter_enabled(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3454
3630
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* default_val = NULL;
|
|
3455
3631
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* ret;
|
|
3456
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
|
3632
|
+
const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3633
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
3457
3634
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3458
3635
|
&default_val, &ret);
|
|
3459
3636
|
return ret;
|
|
3460
3637
|
}
|
|
3461
3638
|
UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_filter_enabled(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3462
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
|
3639
|
+
const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3463
3640
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3464
3641
|
}
|
|
3465
3642
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_shadow_enabled(envoy_config_route_v3_CorsPolicy* msg) {
|
|
@@ -3470,6 +3647,7 @@ UPB_INLINE const struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_con
|
|
|
3470
3647
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* default_val = NULL;
|
|
3471
3648
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* ret;
|
|
3472
3649
|
const upb_MiniTableField field = {10, UPB_SIZE(20, 88), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3650
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
3473
3651
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3474
3652
|
&default_val, &ret);
|
|
3475
3653
|
return ret;
|
|
@@ -3484,6 +3662,7 @@ UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_allow_origin_string_match
|
|
|
3484
3662
|
}
|
|
3485
3663
|
UPB_INLINE const struct envoy_type_matcher_v3_StringMatcher* const* envoy_config_route_v3_CorsPolicy_allow_origin_string_match(const envoy_config_route_v3_CorsPolicy* msg, size_t* size) {
|
|
3486
3664
|
const upb_MiniTableField field = {11, UPB_SIZE(24, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3665
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
3487
3666
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3488
3667
|
if (arr) {
|
|
3489
3668
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3495,6 +3674,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_StringMatcher* const* envoy_config
|
|
|
3495
3674
|
}
|
|
3496
3675
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_CorsPolicy_allow_origin_string_match_upb_array(const envoy_config_route_v3_CorsPolicy* msg, size_t* size) {
|
|
3497
3676
|
const upb_MiniTableField field = {11, UPB_SIZE(24, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3677
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
3498
3678
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3499
3679
|
if (size) {
|
|
3500
3680
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -3503,6 +3683,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_CorsPolicy_allow_origin_strin
|
|
|
3503
3683
|
}
|
|
3504
3684
|
UPB_INLINE upb_Array* _envoy_config_route_v3_CorsPolicy_allow_origin_string_match_mutable_upb_array(envoy_config_route_v3_CorsPolicy* msg, size_t* size, upb_Arena* arena) {
|
|
3505
3685
|
const upb_MiniTableField field = {11, UPB_SIZE(24, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3686
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
3506
3687
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
3507
3688
|
&field, arena);
|
|
3508
3689
|
if (size) {
|
|
@@ -3518,6 +3699,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPol
|
|
|
3518
3699
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3519
3700
|
const struct google_protobuf_BoolValue* ret;
|
|
3520
3701
|
const upb_MiniTableField field = {12, UPB_SIZE(28, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3702
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3521
3703
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3522
3704
|
&default_val, &ret);
|
|
3523
3705
|
return ret;
|
|
@@ -3526,26 +3708,44 @@ UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_allow_private_network_acces
|
|
|
3526
3708
|
const upb_MiniTableField field = {12, UPB_SIZE(28, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3527
3709
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3528
3710
|
}
|
|
3711
|
+
UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_forward_not_matching_preflights(envoy_config_route_v3_CorsPolicy* msg) {
|
|
3712
|
+
const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3713
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3714
|
+
}
|
|
3715
|
+
UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_forward_not_matching_preflights(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3716
|
+
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3717
|
+
const struct google_protobuf_BoolValue* ret;
|
|
3718
|
+
const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3719
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3720
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3721
|
+
&default_val, &ret);
|
|
3722
|
+
return ret;
|
|
3723
|
+
}
|
|
3724
|
+
UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_forward_not_matching_preflights(const envoy_config_route_v3_CorsPolicy* msg) {
|
|
3725
|
+
const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3726
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3727
|
+
}
|
|
3529
3728
|
|
|
3530
3729
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_methods(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
|
|
3531
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
3532
|
-
|
|
3730
|
+
const upb_MiniTableField field = {2, UPB_SIZE(40, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3731
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3533
3732
|
}
|
|
3534
3733
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_headers(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
|
|
3535
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
3536
|
-
|
|
3734
|
+
const upb_MiniTableField field = {3, UPB_SIZE(48, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3735
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3537
3736
|
}
|
|
3538
3737
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_expose_headers(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
|
|
3539
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
|
3540
|
-
|
|
3738
|
+
const upb_MiniTableField field = {4, UPB_SIZE(56, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3739
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3541
3740
|
}
|
|
3542
3741
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_max_age(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
|
|
3543
|
-
const upb_MiniTableField field = {5,
|
|
3544
|
-
|
|
3742
|
+
const upb_MiniTableField field = {5, 64, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3743
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3545
3744
|
}
|
|
3546
3745
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_credentials(envoy_config_route_v3_CorsPolicy *msg, struct google_protobuf_BoolValue* value) {
|
|
3547
3746
|
const upb_MiniTableField field = {6, UPB_SIZE(12, 80), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3548
|
-
|
|
3747
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3748
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3549
3749
|
}
|
|
3550
3750
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mutable_allow_credentials(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
|
|
3551
3751
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_CorsPolicy_allow_credentials(msg);
|
|
@@ -3556,8 +3756,9 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mu
|
|
|
3556
3756
|
return sub;
|
|
3557
3757
|
}
|
|
3558
3758
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_filter_enabled(envoy_config_route_v3_CorsPolicy *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
|
|
3559
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
|
3560
|
-
|
|
3759
|
+
const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3760
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
3761
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3561
3762
|
}
|
|
3562
3763
|
UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_CorsPolicy_mutable_filter_enabled(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
|
|
3563
3764
|
struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_CorsPolicy_filter_enabled(msg);
|
|
@@ -3569,7 +3770,8 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
|
|
|
3569
3770
|
}
|
|
3570
3771
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_shadow_enabled(envoy_config_route_v3_CorsPolicy *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
|
|
3571
3772
|
const upb_MiniTableField field = {10, UPB_SIZE(20, 88), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3572
|
-
|
|
3773
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
3774
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3573
3775
|
}
|
|
3574
3776
|
UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_CorsPolicy_mutable_shadow_enabled(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
|
|
3575
3777
|
struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_CorsPolicy_shadow_enabled(msg);
|
|
@@ -3581,6 +3783,7 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
|
|
|
3581
3783
|
}
|
|
3582
3784
|
UPB_INLINE struct envoy_type_matcher_v3_StringMatcher** envoy_config_route_v3_CorsPolicy_mutable_allow_origin_string_match(envoy_config_route_v3_CorsPolicy* msg, size_t* size) {
|
|
3583
3785
|
upb_MiniTableField field = {11, UPB_SIZE(24, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3786
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
3584
3787
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
3585
3788
|
if (arr) {
|
|
3586
3789
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3597,6 +3800,7 @@ UPB_INLINE struct envoy_type_matcher_v3_StringMatcher** envoy_config_route_v3_Co
|
|
|
3597
3800
|
}
|
|
3598
3801
|
UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_CorsPolicy_add_allow_origin_string_match(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
|
|
3599
3802
|
upb_MiniTableField field = {11, UPB_SIZE(24, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3803
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
3600
3804
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
3601
3805
|
UPB_UPCAST(msg), &field, arena);
|
|
3602
3806
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -3611,7 +3815,8 @@ UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_Cor
|
|
|
3611
3815
|
}
|
|
3612
3816
|
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_private_network_access(envoy_config_route_v3_CorsPolicy *msg, struct google_protobuf_BoolValue* value) {
|
|
3613
3817
|
const upb_MiniTableField field = {12, UPB_SIZE(28, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3614
|
-
|
|
3818
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3819
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3615
3820
|
}
|
|
3616
3821
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mutable_allow_private_network_access(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
|
|
3617
3822
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_CorsPolicy_allow_private_network_access(msg);
|
|
@@ -3621,6 +3826,19 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mu
|
|
|
3621
3826
|
}
|
|
3622
3827
|
return sub;
|
|
3623
3828
|
}
|
|
3829
|
+
UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_forward_not_matching_preflights(envoy_config_route_v3_CorsPolicy *msg, struct google_protobuf_BoolValue* value) {
|
|
3830
|
+
const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3831
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3832
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3833
|
+
}
|
|
3834
|
+
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mutable_forward_not_matching_preflights(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
|
|
3835
|
+
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_CorsPolicy_forward_not_matching_preflights(msg);
|
|
3836
|
+
if (sub == NULL) {
|
|
3837
|
+
sub = (struct google_protobuf_BoolValue*)_upb_Message_New(&google__protobuf__BoolValue_msg_init, arena);
|
|
3838
|
+
if (sub) envoy_config_route_v3_CorsPolicy_set_forward_not_matching_preflights(msg, sub);
|
|
3839
|
+
}
|
|
3840
|
+
return sub;
|
|
3841
|
+
}
|
|
3624
3842
|
|
|
3625
3843
|
/* envoy.config.route.v3.RouteAction */
|
|
3626
3844
|
|
|
@@ -3723,6 +3941,7 @@ UPB_INLINE const envoy_config_route_v3_WeightedCluster* envoy_config_route_v3_Ro
|
|
|
3723
3941
|
const envoy_config_route_v3_WeightedCluster* default_val = NULL;
|
|
3724
3942
|
const envoy_config_route_v3_WeightedCluster* ret;
|
|
3725
3943
|
const upb_MiniTableField field = {3, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3944
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster_msg_init);
|
|
3726
3945
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3727
3946
|
&default_val, &ret);
|
|
3728
3947
|
return ret;
|
|
@@ -3739,6 +3958,7 @@ UPB_INLINE const struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Rou
|
|
|
3739
3958
|
const struct envoy_config_core_v3_Metadata* default_val = NULL;
|
|
3740
3959
|
const struct envoy_config_core_v3_Metadata* ret;
|
|
3741
3960
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 72), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3961
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
3742
3962
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3743
3963
|
&default_val, &ret);
|
|
3744
3964
|
return ret;
|
|
@@ -3783,6 +4003,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAc
|
|
|
3783
4003
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3784
4004
|
const struct google_protobuf_BoolValue* ret;
|
|
3785
4005
|
const upb_MiniTableField field = {7, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4006
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3786
4007
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3787
4008
|
&default_val, &ret);
|
|
3788
4009
|
return ret;
|
|
@@ -3799,6 +4020,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
3799
4020
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
3800
4021
|
const struct google_protobuf_Duration* ret;
|
|
3801
4022
|
const upb_MiniTableField field = {8, UPB_SIZE(16, 96), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4023
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
3802
4024
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3803
4025
|
&default_val, &ret);
|
|
3804
4026
|
return ret;
|
|
@@ -3815,6 +4037,7 @@ UPB_INLINE const envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_RouteA
|
|
|
3815
4037
|
const envoy_config_route_v3_RetryPolicy* default_val = NULL;
|
|
3816
4038
|
const envoy_config_route_v3_RetryPolicy* ret;
|
|
3817
4039
|
const upb_MiniTableField field = {9, UPB_SIZE(20, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4040
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy_msg_init);
|
|
3818
4041
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3819
4042
|
&default_val, &ret);
|
|
3820
4043
|
return ret;
|
|
@@ -3841,6 +4064,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_clear_rate_limits(envoy_config
|
|
|
3841
4064
|
}
|
|
3842
4065
|
UPB_INLINE const envoy_config_route_v3_RateLimit* const* envoy_config_route_v3_RouteAction_rate_limits(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
3843
4066
|
const upb_MiniTableField field = {13, UPB_SIZE(28, 112), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4067
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
3844
4068
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3845
4069
|
if (arr) {
|
|
3846
4070
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3852,6 +4076,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit* const* envoy_config_route_v3_R
|
|
|
3852
4076
|
}
|
|
3853
4077
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_rate_limits_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
3854
4078
|
const upb_MiniTableField field = {13, UPB_SIZE(28, 112), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4079
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
3855
4080
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3856
4081
|
if (size) {
|
|
3857
4082
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -3860,6 +4085,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_rate_limits_upb_a
|
|
|
3860
4085
|
}
|
|
3861
4086
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_rate_limits_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
3862
4087
|
const upb_MiniTableField field = {13, UPB_SIZE(28, 112), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4088
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
3863
4089
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
3864
4090
|
&field, arena);
|
|
3865
4091
|
if (size) {
|
|
@@ -3875,6 +4101,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAc
|
|
|
3875
4101
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3876
4102
|
const struct google_protobuf_BoolValue* ret;
|
|
3877
4103
|
const upb_MiniTableField field = {14, UPB_SIZE(32, 120), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4104
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3878
4105
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3879
4106
|
&default_val, &ret);
|
|
3880
4107
|
return ret;
|
|
@@ -3889,6 +4116,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_clear_hash_policy(envoy_config
|
|
|
3889
4116
|
}
|
|
3890
4117
|
UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy* const* envoy_config_route_v3_RouteAction_hash_policy(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
3891
4118
|
const upb_MiniTableField field = {15, UPB_SIZE(36, 128), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4119
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
3892
4120
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3893
4121
|
if (arr) {
|
|
3894
4122
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3900,6 +4128,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy* const* envoy_conf
|
|
|
3900
4128
|
}
|
|
3901
4129
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_hash_policy_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
3902
4130
|
const upb_MiniTableField field = {15, UPB_SIZE(36, 128), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4131
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
3903
4132
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3904
4133
|
if (size) {
|
|
3905
4134
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -3908,6 +4137,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_hash_policy_upb_a
|
|
|
3908
4137
|
}
|
|
3909
4138
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_hash_policy_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
3910
4139
|
const upb_MiniTableField field = {15, UPB_SIZE(36, 128), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4140
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
3911
4141
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
3912
4142
|
&field, arena);
|
|
3913
4143
|
if (size) {
|
|
@@ -3923,6 +4153,7 @@ UPB_INLINE const envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_RouteAc
|
|
|
3923
4153
|
const envoy_config_route_v3_CorsPolicy* default_val = NULL;
|
|
3924
4154
|
const envoy_config_route_v3_CorsPolicy* ret;
|
|
3925
4155
|
const upb_MiniTableField field = {17, UPB_SIZE(40, 136), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4156
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__CorsPolicy_msg_init);
|
|
3926
4157
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3927
4158
|
&default_val, &ret);
|
|
3928
4159
|
return ret;
|
|
@@ -3951,6 +4182,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
3951
4182
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
3952
4183
|
const struct google_protobuf_Duration* ret;
|
|
3953
4184
|
const upb_MiniTableField field = {23, UPB_SIZE(48, 144), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4185
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
3954
4186
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3955
4187
|
&default_val, &ret);
|
|
3956
4188
|
return ret;
|
|
@@ -3967,6 +4199,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
3967
4199
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
3968
4200
|
const struct google_protobuf_Duration* ret;
|
|
3969
4201
|
const upb_MiniTableField field = {24, UPB_SIZE(52, 152), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4202
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
3970
4203
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3971
4204
|
&default_val, &ret);
|
|
3972
4205
|
return ret;
|
|
@@ -3981,6 +4214,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_clear_upgrade_configs(envoy_co
|
|
|
3981
4214
|
}
|
|
3982
4215
|
UPB_INLINE const envoy_config_route_v3_RouteAction_UpgradeConfig* const* envoy_config_route_v3_RouteAction_upgrade_configs(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
3983
4216
|
const upb_MiniTableField field = {25, UPB_SIZE(56, 160), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4217
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
3984
4218
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3985
4219
|
if (arr) {
|
|
3986
4220
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -3992,6 +4226,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_UpgradeConfig* const* envoy_c
|
|
|
3992
4226
|
}
|
|
3993
4227
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_upgrade_configs_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
3994
4228
|
const upb_MiniTableField field = {25, UPB_SIZE(56, 160), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4229
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
3995
4230
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3996
4231
|
if (size) {
|
|
3997
4232
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -4000,6 +4235,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_upgrade_configs_u
|
|
|
4000
4235
|
}
|
|
4001
4236
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_upgrade_configs_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
4002
4237
|
const upb_MiniTableField field = {25, UPB_SIZE(56, 160), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4238
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4003
4239
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
4004
4240
|
&field, arena);
|
|
4005
4241
|
if (size) {
|
|
@@ -4027,6 +4263,7 @@ UPB_INLINE const envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_RouteA
|
|
|
4027
4263
|
const envoy_config_route_v3_HedgePolicy* default_val = NULL;
|
|
4028
4264
|
const envoy_config_route_v3_HedgePolicy* ret;
|
|
4029
4265
|
const upb_MiniTableField field = {27, UPB_SIZE(64, 168), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4266
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HedgePolicy_msg_init);
|
|
4030
4267
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4031
4268
|
&default_val, &ret);
|
|
4032
4269
|
return ret;
|
|
@@ -4043,6 +4280,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
4043
4280
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
4044
4281
|
const struct google_protobuf_Duration* ret;
|
|
4045
4282
|
const upb_MiniTableField field = {28, UPB_SIZE(68, 176), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4283
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4046
4284
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4047
4285
|
&default_val, &ret);
|
|
4048
4286
|
return ret;
|
|
@@ -4073,6 +4311,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_clear_request_mirror_policies(
|
|
|
4073
4311
|
}
|
|
4074
4312
|
UPB_INLINE const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* const* envoy_config_route_v3_RouteAction_request_mirror_policies(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4075
4313
|
const upb_MiniTableField field = {30, UPB_SIZE(72, 184), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4314
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4076
4315
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4077
4316
|
if (arr) {
|
|
4078
4317
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -4084,6 +4323,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* const* e
|
|
|
4084
4323
|
}
|
|
4085
4324
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_request_mirror_policies_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4086
4325
|
const upb_MiniTableField field = {30, UPB_SIZE(72, 184), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4326
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4087
4327
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4088
4328
|
if (size) {
|
|
4089
4329
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -4092,6 +4332,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_request_mirror_po
|
|
|
4092
4332
|
}
|
|
4093
4333
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_request_mirror_policies_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
4094
4334
|
const upb_MiniTableField field = {30, UPB_SIZE(72, 184), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4335
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4095
4336
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
4096
4337
|
&field, arena);
|
|
4097
4338
|
if (size) {
|
|
@@ -4107,6 +4348,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Route
|
|
|
4107
4348
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
4108
4349
|
const struct google_protobuf_UInt32Value* ret;
|
|
4109
4350
|
const upb_MiniTableField field = {31, UPB_SIZE(76, 192), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4351
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
4110
4352
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4111
4353
|
&default_val, &ret);
|
|
4112
4354
|
return ret;
|
|
@@ -4123,6 +4365,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_con
|
|
|
4123
4365
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* default_val = NULL;
|
|
4124
4366
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* ret;
|
|
4125
4367
|
const upb_MiniTableField field = {32, UPB_SIZE(80, 200), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4368
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4126
4369
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4127
4370
|
&default_val, &ret);
|
|
4128
4371
|
return ret;
|
|
@@ -4139,6 +4382,7 @@ UPB_INLINE const struct google_protobuf_Any* envoy_config_route_v3_RouteAction_r
|
|
|
4139
4382
|
const struct google_protobuf_Any* default_val = NULL;
|
|
4140
4383
|
const struct google_protobuf_Any* ret;
|
|
4141
4384
|
const upb_MiniTableField field = {33, UPB_SIZE(84, 208), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4385
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
4142
4386
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4143
4387
|
&default_val, &ret);
|
|
4144
4388
|
return ret;
|
|
@@ -4155,6 +4399,7 @@ UPB_INLINE const envoy_config_route_v3_InternalRedirectPolicy* envoy_config_rout
|
|
|
4155
4399
|
const envoy_config_route_v3_InternalRedirectPolicy* default_val = NULL;
|
|
4156
4400
|
const envoy_config_route_v3_InternalRedirectPolicy* ret;
|
|
4157
4401
|
const upb_MiniTableField field = {34, UPB_SIZE(88, 216), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4402
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__InternalRedirectPolicy_msg_init);
|
|
4158
4403
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4159
4404
|
&default_val, &ret);
|
|
4160
4405
|
return ret;
|
|
@@ -4171,6 +4416,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_con
|
|
|
4171
4416
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* default_val = NULL;
|
|
4172
4417
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* ret;
|
|
4173
4418
|
const upb_MiniTableField field = {35, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4419
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4174
4420
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4175
4421
|
&default_val, &ret);
|
|
4176
4422
|
return ret;
|
|
@@ -4187,6 +4433,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_MaxStreamDuration* envoy_conf
|
|
|
4187
4433
|
const envoy_config_route_v3_RouteAction_MaxStreamDuration* default_val = NULL;
|
|
4188
4434
|
const envoy_config_route_v3_RouteAction_MaxStreamDuration* ret;
|
|
4189
4435
|
const upb_MiniTableField field = {36, UPB_SIZE(96, 224), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4436
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__MaxStreamDuration_msg_init);
|
|
4190
4437
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4191
4438
|
&default_val, &ret);
|
|
4192
4439
|
return ret;
|
|
@@ -4231,6 +4478,7 @@ UPB_INLINE const envoy_config_route_v3_ClusterSpecifierPlugin* envoy_config_rout
|
|
|
4231
4478
|
const envoy_config_route_v3_ClusterSpecifierPlugin* default_val = NULL;
|
|
4232
4479
|
const envoy_config_route_v3_ClusterSpecifierPlugin* ret;
|
|
4233
4480
|
const upb_MiniTableField field = {39, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4481
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__ClusterSpecifierPlugin_msg_init);
|
|
4234
4482
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4235
4483
|
&default_val, &ret);
|
|
4236
4484
|
return ret;
|
|
@@ -4247,6 +4495,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_
|
|
|
4247
4495
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
4248
4496
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
4249
4497
|
const upb_MiniTableField field = {40, UPB_SIZE(108, 232), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4498
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4250
4499
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4251
4500
|
&default_val, &ret);
|
|
4252
4501
|
return ret;
|
|
@@ -4263,6 +4512,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_
|
|
|
4263
4512
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
4264
4513
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
4265
4514
|
const upb_MiniTableField field = {41, UPB_SIZE(112, 240), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4515
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4266
4516
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4267
4517
|
&default_val, &ret);
|
|
4268
4518
|
return ret;
|
|
@@ -4274,15 +4524,16 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_has_path_rewrite_policy(const
|
|
|
4274
4524
|
|
|
4275
4525
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4276
4526
|
const upb_MiniTableField field = {1, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4277
|
-
|
|
4527
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4278
4528
|
}
|
|
4279
4529
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_header(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4280
4530
|
const upb_MiniTableField field = {2, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4281
|
-
|
|
4531
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4282
4532
|
}
|
|
4283
4533
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_weighted_clusters(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_WeightedCluster* value) {
|
|
4284
4534
|
const upb_MiniTableField field = {3, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4285
|
-
|
|
4535
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster_msg_init);
|
|
4536
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4286
4537
|
}
|
|
4287
4538
|
UPB_INLINE struct envoy_config_route_v3_WeightedCluster* envoy_config_route_v3_RouteAction_mutable_weighted_clusters(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4288
4539
|
struct envoy_config_route_v3_WeightedCluster* sub = (struct envoy_config_route_v3_WeightedCluster*)envoy_config_route_v3_RouteAction_weighted_clusters(msg);
|
|
@@ -4294,7 +4545,8 @@ UPB_INLINE struct envoy_config_route_v3_WeightedCluster* envoy_config_route_v3_R
|
|
|
4294
4545
|
}
|
|
4295
4546
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_metadata_match(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_Metadata* value) {
|
|
4296
4547
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 72), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4297
|
-
|
|
4548
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
4549
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4298
4550
|
}
|
|
4299
4551
|
UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_RouteAction_mutable_metadata_match(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4300
4552
|
struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_RouteAction_metadata_match(msg);
|
|
@@ -4306,15 +4558,16 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_RouteActi
|
|
|
4306
4558
|
}
|
|
4307
4559
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_prefix_rewrite(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4308
4560
|
const upb_MiniTableField field = {5, UPB_SIZE(132, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4309
|
-
|
|
4561
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4310
4562
|
}
|
|
4311
4563
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_literal(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4312
4564
|
const upb_MiniTableField field = {6, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4313
|
-
|
|
4565
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4314
4566
|
}
|
|
4315
4567
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_auto_host_rewrite(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_BoolValue* value) {
|
|
4316
4568
|
const upb_MiniTableField field = {7, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4317
|
-
|
|
4569
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
4570
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4318
4571
|
}
|
|
4319
4572
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_mutable_auto_host_rewrite(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4320
4573
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_auto_host_rewrite(msg);
|
|
@@ -4326,7 +4579,8 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_m
|
|
|
4326
4579
|
}
|
|
4327
4580
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4328
4581
|
const upb_MiniTableField field = {8, UPB_SIZE(16, 96), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4329
|
-
|
|
4582
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4583
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4330
4584
|
}
|
|
4331
4585
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_timeout(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4332
4586
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_timeout(msg);
|
|
@@ -4338,7 +4592,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4338
4592
|
}
|
|
4339
4593
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_retry_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_RetryPolicy* value) {
|
|
4340
4594
|
const upb_MiniTableField field = {9, UPB_SIZE(20, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4341
|
-
|
|
4595
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy_msg_init);
|
|
4596
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4342
4597
|
}
|
|
4343
4598
|
UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_RouteAction_mutable_retry_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4344
4599
|
struct envoy_config_route_v3_RetryPolicy* sub = (struct envoy_config_route_v3_RetryPolicy*)envoy_config_route_v3_RouteAction_retry_policy(msg);
|
|
@@ -4350,10 +4605,11 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_Route
|
|
|
4350
4605
|
}
|
|
4351
4606
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_priority(envoy_config_route_v3_RouteAction *msg, int32_t value) {
|
|
4352
4607
|
const upb_MiniTableField field = {11, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
4353
|
-
|
|
4608
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4354
4609
|
}
|
|
4355
4610
|
UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_RouteAction_mutable_rate_limits(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4356
4611
|
upb_MiniTableField field = {13, UPB_SIZE(28, 112), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4612
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
4357
4613
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4358
4614
|
if (arr) {
|
|
4359
4615
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -4370,6 +4626,7 @@ UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_RouteAction_r
|
|
|
4370
4626
|
}
|
|
4371
4627
|
UPB_INLINE struct envoy_config_route_v3_RateLimit* envoy_config_route_v3_RouteAction_add_rate_limits(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4372
4628
|
upb_MiniTableField field = {13, UPB_SIZE(28, 112), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4629
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
4373
4630
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4374
4631
|
UPB_UPCAST(msg), &field, arena);
|
|
4375
4632
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -4384,7 +4641,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit* envoy_config_route_v3_RouteAc
|
|
|
4384
4641
|
}
|
|
4385
4642
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_include_vh_rate_limits(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_BoolValue* value) {
|
|
4386
4643
|
const upb_MiniTableField field = {14, UPB_SIZE(32, 120), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4387
|
-
|
|
4644
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
4645
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4388
4646
|
}
|
|
4389
4647
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_mutable_include_vh_rate_limits(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4390
4648
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_include_vh_rate_limits(msg);
|
|
@@ -4396,6 +4654,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_m
|
|
|
4396
4654
|
}
|
|
4397
4655
|
UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy** envoy_config_route_v3_RouteAction_mutable_hash_policy(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4398
4656
|
upb_MiniTableField field = {15, UPB_SIZE(36, 128), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4657
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
4399
4658
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4400
4659
|
if (arr) {
|
|
4401
4660
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -4412,6 +4671,7 @@ UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy** envoy_config_route_v3_
|
|
|
4412
4671
|
}
|
|
4413
4672
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy* envoy_config_route_v3_RouteAction_add_hash_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4414
4673
|
upb_MiniTableField field = {15, UPB_SIZE(36, 128), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4674
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
4415
4675
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4416
4676
|
UPB_UPCAST(msg), &field, arena);
|
|
4417
4677
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -4426,7 +4686,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy* envoy_config_rou
|
|
|
4426
4686
|
}
|
|
4427
4687
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cors(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_CorsPolicy* value) {
|
|
4428
4688
|
const upb_MiniTableField field = {17, UPB_SIZE(40, 136), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4429
|
-
|
|
4689
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__CorsPolicy_msg_init);
|
|
4690
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4430
4691
|
}
|
|
4431
4692
|
UPB_INLINE struct envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_RouteAction_mutable_cors(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4432
4693
|
struct envoy_config_route_v3_CorsPolicy* sub = (struct envoy_config_route_v3_CorsPolicy*)envoy_config_route_v3_RouteAction_cors(msg);
|
|
@@ -4438,11 +4699,12 @@ UPB_INLINE struct envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_RouteA
|
|
|
4438
4699
|
}
|
|
4439
4700
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_not_found_response_code(envoy_config_route_v3_RouteAction *msg, int32_t value) {
|
|
4440
4701
|
const upb_MiniTableField field = {20, UPB_SIZE(44, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
4441
|
-
|
|
4702
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4442
4703
|
}
|
|
4443
4704
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_grpc_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4444
4705
|
const upb_MiniTableField field = {23, UPB_SIZE(48, 144), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4445
|
-
|
|
4706
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4707
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4446
4708
|
}
|
|
4447
4709
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_max_grpc_timeout(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4448
4710
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_max_grpc_timeout(msg);
|
|
@@ -4454,7 +4716,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4454
4716
|
}
|
|
4455
4717
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_idle_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4456
4718
|
const upb_MiniTableField field = {24, UPB_SIZE(52, 152), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4457
|
-
|
|
4719
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4720
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4458
4721
|
}
|
|
4459
4722
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_idle_timeout(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4460
4723
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_idle_timeout(msg);
|
|
@@ -4466,6 +4729,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4466
4729
|
}
|
|
4467
4730
|
UPB_INLINE envoy_config_route_v3_RouteAction_UpgradeConfig** envoy_config_route_v3_RouteAction_mutable_upgrade_configs(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4468
4731
|
upb_MiniTableField field = {25, UPB_SIZE(56, 160), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4732
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4469
4733
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4470
4734
|
if (arr) {
|
|
4471
4735
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -4482,6 +4746,7 @@ UPB_INLINE envoy_config_route_v3_RouteAction_UpgradeConfig** envoy_config_route_
|
|
|
4482
4746
|
}
|
|
4483
4747
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_UpgradeConfig* envoy_config_route_v3_RouteAction_add_upgrade_configs(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4484
4748
|
upb_MiniTableField field = {25, UPB_SIZE(56, 160), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4749
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4485
4750
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4486
4751
|
UPB_UPCAST(msg), &field, arena);
|
|
4487
4752
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -4496,11 +4761,12 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_UpgradeConfig* envoy_config_
|
|
|
4496
4761
|
}
|
|
4497
4762
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_internal_redirect_action(envoy_config_route_v3_RouteAction *msg, int32_t value) {
|
|
4498
4763
|
const upb_MiniTableField field = {26, UPB_SIZE(60, 20), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
4499
|
-
|
|
4764
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4500
4765
|
}
|
|
4501
4766
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_hedge_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_HedgePolicy* value) {
|
|
4502
4767
|
const upb_MiniTableField field = {27, UPB_SIZE(64, 168), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4503
|
-
|
|
4768
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HedgePolicy_msg_init);
|
|
4769
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4504
4770
|
}
|
|
4505
4771
|
UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_RouteAction_mutable_hedge_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4506
4772
|
struct envoy_config_route_v3_HedgePolicy* sub = (struct envoy_config_route_v3_HedgePolicy*)envoy_config_route_v3_RouteAction_hedge_policy(msg);
|
|
@@ -4512,7 +4778,8 @@ UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_Route
|
|
|
4512
4778
|
}
|
|
4513
4779
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_grpc_timeout_offset(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4514
4780
|
const upb_MiniTableField field = {28, UPB_SIZE(68, 176), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4515
|
-
|
|
4781
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4782
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4516
4783
|
}
|
|
4517
4784
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_grpc_timeout_offset(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4518
4785
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_grpc_timeout_offset(msg);
|
|
@@ -4524,10 +4791,11 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4524
4791
|
}
|
|
4525
4792
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_header(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4526
4793
|
const upb_MiniTableField field = {29, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4527
|
-
|
|
4794
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4528
4795
|
}
|
|
4529
4796
|
UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_route_v3_RouteAction_mutable_request_mirror_policies(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4530
4797
|
upb_MiniTableField field = {30, UPB_SIZE(72, 184), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4798
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4531
4799
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4532
4800
|
if (arr) {
|
|
4533
4801
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -4544,6 +4812,7 @@ UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_
|
|
|
4544
4812
|
}
|
|
4545
4813
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_config_route_v3_RouteAction_add_request_mirror_policies(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4546
4814
|
upb_MiniTableField field = {30, UPB_SIZE(72, 184), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4815
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4547
4816
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4548
4817
|
UPB_UPCAST(msg), &field, arena);
|
|
4549
4818
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -4558,7 +4827,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_c
|
|
|
4558
4827
|
}
|
|
4559
4828
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_internal_redirects(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_UInt32Value* value) {
|
|
4560
4829
|
const upb_MiniTableField field = {31, UPB_SIZE(76, 192), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4561
|
-
|
|
4830
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
4831
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4562
4832
|
}
|
|
4563
4833
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RouteAction_mutable_max_internal_redirects(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4564
4834
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RouteAction_max_internal_redirects(msg);
|
|
@@ -4570,7 +4840,8 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RouteAction
|
|
|
4570
4840
|
}
|
|
4571
4841
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_regex_rewrite(envoy_config_route_v3_RouteAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
|
|
4572
4842
|
const upb_MiniTableField field = {32, UPB_SIZE(80, 200), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4573
|
-
|
|
4843
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4844
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4574
4845
|
}
|
|
4575
4846
|
UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_mutable_regex_rewrite(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4576
4847
|
struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RouteAction_regex_rewrite(msg);
|
|
@@ -4582,7 +4853,8 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_ro
|
|
|
4582
4853
|
}
|
|
4583
4854
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_retry_policy_typed_config(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Any* value) {
|
|
4584
4855
|
const upb_MiniTableField field = {33, UPB_SIZE(84, 208), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4585
|
-
|
|
4856
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
4857
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4586
4858
|
}
|
|
4587
4859
|
UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RouteAction_mutable_retry_policy_typed_config(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4588
4860
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_RouteAction_retry_policy_typed_config(msg);
|
|
@@ -4594,7 +4866,8 @@ UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RouteAction_mutable
|
|
|
4594
4866
|
}
|
|
4595
4867
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_internal_redirect_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_InternalRedirectPolicy* value) {
|
|
4596
4868
|
const upb_MiniTableField field = {34, UPB_SIZE(88, 216), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4597
|
-
|
|
4869
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__InternalRedirectPolicy_msg_init);
|
|
4870
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4598
4871
|
}
|
|
4599
4872
|
UPB_INLINE struct envoy_config_route_v3_InternalRedirectPolicy* envoy_config_route_v3_RouteAction_mutable_internal_redirect_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4600
4873
|
struct envoy_config_route_v3_InternalRedirectPolicy* sub = (struct envoy_config_route_v3_InternalRedirectPolicy*)envoy_config_route_v3_RouteAction_internal_redirect_policy(msg);
|
|
@@ -4606,7 +4879,8 @@ UPB_INLINE struct envoy_config_route_v3_InternalRedirectPolicy* envoy_config_rou
|
|
|
4606
4879
|
}
|
|
4607
4880
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_path_regex(envoy_config_route_v3_RouteAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
|
|
4608
4881
|
const upb_MiniTableField field = {35, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4609
|
-
|
|
4882
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4883
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4610
4884
|
}
|
|
4611
4885
|
UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_mutable_host_rewrite_path_regex(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4612
4886
|
struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RouteAction_host_rewrite_path_regex(msg);
|
|
@@ -4618,7 +4892,8 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_ro
|
|
|
4618
4892
|
}
|
|
4619
4893
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_stream_duration(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_RouteAction_MaxStreamDuration* value) {
|
|
4620
4894
|
const upb_MiniTableField field = {36, UPB_SIZE(96, 224), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4621
|
-
|
|
4895
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__MaxStreamDuration_msg_init);
|
|
4896
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4622
4897
|
}
|
|
4623
4898
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_MaxStreamDuration* envoy_config_route_v3_RouteAction_mutable_max_stream_duration(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4624
4899
|
struct envoy_config_route_v3_RouteAction_MaxStreamDuration* sub = (struct envoy_config_route_v3_RouteAction_MaxStreamDuration*)envoy_config_route_v3_RouteAction_max_stream_duration(msg);
|
|
@@ -4630,15 +4905,16 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_MaxStreamDuration* envoy_con
|
|
|
4630
4905
|
}
|
|
4631
4906
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_specifier_plugin(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4632
4907
|
const upb_MiniTableField field = {37, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4633
|
-
|
|
4908
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4634
4909
|
}
|
|
4635
4910
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_append_x_forwarded_host(envoy_config_route_v3_RouteAction *msg, bool value) {
|
|
4636
4911
|
const upb_MiniTableField field = {38, UPB_SIZE(100, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
4637
|
-
|
|
4912
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4638
4913
|
}
|
|
4639
4914
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_inline_cluster_specifier_plugin(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_ClusterSpecifierPlugin* value) {
|
|
4640
4915
|
const upb_MiniTableField field = {39, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4641
|
-
|
|
4916
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__ClusterSpecifierPlugin_msg_init);
|
|
4917
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4642
4918
|
}
|
|
4643
4919
|
UPB_INLINE struct envoy_config_route_v3_ClusterSpecifierPlugin* envoy_config_route_v3_RouteAction_mutable_inline_cluster_specifier_plugin(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4644
4920
|
struct envoy_config_route_v3_ClusterSpecifierPlugin* sub = (struct envoy_config_route_v3_ClusterSpecifierPlugin*)envoy_config_route_v3_RouteAction_inline_cluster_specifier_plugin(msg);
|
|
@@ -4650,7 +4926,8 @@ UPB_INLINE struct envoy_config_route_v3_ClusterSpecifierPlugin* envoy_config_rou
|
|
|
4650
4926
|
}
|
|
4651
4927
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_early_data_policy(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
4652
4928
|
const upb_MiniTableField field = {40, UPB_SIZE(108, 232), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4653
|
-
|
|
4929
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4930
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4654
4931
|
}
|
|
4655
4932
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteAction_mutable_early_data_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4656
4933
|
struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RouteAction_early_data_policy(msg);
|
|
@@ -4662,7 +4939,8 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
4662
4939
|
}
|
|
4663
4940
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_path_rewrite_policy(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
4664
4941
|
const upb_MiniTableField field = {41, UPB_SIZE(112, 240), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4665
|
-
|
|
4942
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4943
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4666
4944
|
}
|
|
4667
4945
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteAction_mutable_path_rewrite_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4668
4946
|
struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RouteAction_path_rewrite_policy(msg);
|
|
@@ -4710,13 +4988,13 @@ UPB_INLINE char* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_serialize
|
|
|
4710
4988
|
return ptr;
|
|
4711
4989
|
}
|
|
4712
4990
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_cluster(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4713
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4991
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4714
4992
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4715
4993
|
}
|
|
4716
4994
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_RequestMirrorPolicy_cluster(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4717
4995
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
4718
4996
|
upb_StringView ret;
|
|
4719
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4997
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4720
4998
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4721
4999
|
&default_val, &ret);
|
|
4722
5000
|
return ret;
|
|
@@ -4729,6 +5007,7 @@ UPB_INLINE const struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_con
|
|
|
4729
5007
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* default_val = NULL;
|
|
4730
5008
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* ret;
|
|
4731
5009
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5010
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
4732
5011
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4733
5012
|
&default_val, &ret);
|
|
4734
5013
|
return ret;
|
|
@@ -4745,6 +5024,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAc
|
|
|
4745
5024
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
4746
5025
|
const struct google_protobuf_BoolValue* ret;
|
|
4747
5026
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5027
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
4748
5028
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4749
5029
|
&default_val, &ret);
|
|
4750
5030
|
return ret;
|
|
@@ -4754,25 +5034,38 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_RequestMirrorPolicy_has_trace_
|
|
|
4754
5034
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4755
5035
|
}
|
|
4756
5036
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_cluster_header(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4757
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
|
5037
|
+
const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4758
5038
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4759
5039
|
}
|
|
4760
5040
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_RequestMirrorPolicy_cluster_header(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4761
5041
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
4762
5042
|
upb_StringView ret;
|
|
4763
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
|
5043
|
+
const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5044
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5045
|
+
&default_val, &ret);
|
|
5046
|
+
return ret;
|
|
5047
|
+
}
|
|
5048
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_disable_shadow_host_suffix_append(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
5049
|
+
const upb_MiniTableField field = {6, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
5050
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
5051
|
+
}
|
|
5052
|
+
UPB_INLINE bool envoy_config_route_v3_RouteAction_RequestMirrorPolicy_disable_shadow_host_suffix_append(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
5053
|
+
bool default_val = false;
|
|
5054
|
+
bool ret;
|
|
5055
|
+
const upb_MiniTableField field = {6, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
4764
5056
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4765
5057
|
&default_val, &ret);
|
|
4766
5058
|
return ret;
|
|
4767
5059
|
}
|
|
4768
5060
|
|
|
4769
5061
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_cluster(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, upb_StringView value) {
|
|
4770
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4771
|
-
|
|
5062
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5063
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4772
5064
|
}
|
|
4773
5065
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_runtime_fraction(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
|
|
4774
5066
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4775
|
-
|
|
5067
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
5068
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4776
5069
|
}
|
|
4777
5070
|
UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_mutable_runtime_fraction(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, upb_Arena* arena) {
|
|
4778
5071
|
struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_RouteAction_RequestMirrorPolicy_runtime_fraction(msg);
|
|
@@ -4784,7 +5077,8 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
|
|
|
4784
5077
|
}
|
|
4785
5078
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_trace_sampled(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, struct google_protobuf_BoolValue* value) {
|
|
4786
5079
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4787
|
-
|
|
5080
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
5081
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4788
5082
|
}
|
|
4789
5083
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_mutable_trace_sampled(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, upb_Arena* arena) {
|
|
4790
5084
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_RequestMirrorPolicy_trace_sampled(msg);
|
|
@@ -4795,8 +5089,12 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_R
|
|
|
4795
5089
|
return sub;
|
|
4796
5090
|
}
|
|
4797
5091
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_cluster_header(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, upb_StringView value) {
|
|
4798
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
|
4799
|
-
|
|
5092
|
+
const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5093
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5094
|
+
}
|
|
5095
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_disable_shadow_host_suffix_append(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, bool value) {
|
|
5096
|
+
const upb_MiniTableField field = {6, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
5097
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4800
5098
|
}
|
|
4801
5099
|
|
|
4802
5100
|
/* envoy.config.route.v3.RouteAction.HashPolicy */
|
|
@@ -4856,6 +5154,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy_Header* envoy_conf
|
|
|
4856
5154
|
const envoy_config_route_v3_RouteAction_HashPolicy_Header* default_val = NULL;
|
|
4857
5155
|
const envoy_config_route_v3_RouteAction_HashPolicy_Header* ret;
|
|
4858
5156
|
const upb_MiniTableField field = {1, 16, -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5157
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__Header_msg_init);
|
|
4859
5158
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4860
5159
|
&default_val, &ret);
|
|
4861
5160
|
return ret;
|
|
@@ -4872,6 +5171,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy_Cookie* envoy_conf
|
|
|
4872
5171
|
const envoy_config_route_v3_RouteAction_HashPolicy_Cookie* default_val = NULL;
|
|
4873
5172
|
const envoy_config_route_v3_RouteAction_HashPolicy_Cookie* ret;
|
|
4874
5173
|
const upb_MiniTableField field = {2, 16, -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5174
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__Cookie_msg_init);
|
|
4875
5175
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4876
5176
|
&default_val, &ret);
|
|
4877
5177
|
return ret;
|
|
@@ -4888,6 +5188,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperti
|
|
|
4888
5188
|
const envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* default_val = NULL;
|
|
4889
5189
|
const envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* ret;
|
|
4890
5190
|
const upb_MiniTableField field = {3, 16, -13, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5191
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__ConnectionProperties_msg_init);
|
|
4891
5192
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4892
5193
|
&default_val, &ret);
|
|
4893
5194
|
return ret;
|
|
@@ -4916,6 +5217,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* en
|
|
|
4916
5217
|
const envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* default_val = NULL;
|
|
4917
5218
|
const envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* ret;
|
|
4918
5219
|
const upb_MiniTableField field = {5, 16, -13, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5220
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__QueryParameter_msg_init);
|
|
4919
5221
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4920
5222
|
&default_val, &ret);
|
|
4921
5223
|
return ret;
|
|
@@ -4932,6 +5234,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy_FilterState* envoy
|
|
|
4932
5234
|
const envoy_config_route_v3_RouteAction_HashPolicy_FilterState* default_val = NULL;
|
|
4933
5235
|
const envoy_config_route_v3_RouteAction_HashPolicy_FilterState* ret;
|
|
4934
5236
|
const upb_MiniTableField field = {6, 16, -13, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5237
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__FilterState_msg_init);
|
|
4935
5238
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4936
5239
|
&default_val, &ret);
|
|
4937
5240
|
return ret;
|
|
@@ -4943,7 +5246,8 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_HashPolicy_has_filter_state(co
|
|
|
4943
5246
|
|
|
4944
5247
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_header(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_Header* value) {
|
|
4945
5248
|
const upb_MiniTableField field = {1, 16, -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4946
|
-
|
|
5249
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__Header_msg_init);
|
|
5250
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4947
5251
|
}
|
|
4948
5252
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Header* envoy_config_route_v3_RouteAction_HashPolicy_mutable_header(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
|
|
4949
5253
|
struct envoy_config_route_v3_RouteAction_HashPolicy_Header* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_Header*)envoy_config_route_v3_RouteAction_HashPolicy_header(msg);
|
|
@@ -4955,7 +5259,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Header* envoy_con
|
|
|
4955
5259
|
}
|
|
4956
5260
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_cookie(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_Cookie* value) {
|
|
4957
5261
|
const upb_MiniTableField field = {2, 16, -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4958
|
-
|
|
5262
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__Cookie_msg_init);
|
|
5263
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4959
5264
|
}
|
|
4960
5265
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie* envoy_config_route_v3_RouteAction_HashPolicy_mutable_cookie(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
|
|
4961
5266
|
struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie*)envoy_config_route_v3_RouteAction_HashPolicy_cookie(msg);
|
|
@@ -4967,7 +5272,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie* envoy_con
|
|
|
4967
5272
|
}
|
|
4968
5273
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_connection_properties(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* value) {
|
|
4969
5274
|
const upb_MiniTableField field = {3, 16, -13, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4970
|
-
|
|
5275
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__ConnectionProperties_msg_init);
|
|
5276
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4971
5277
|
}
|
|
4972
5278
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* envoy_config_route_v3_RouteAction_HashPolicy_mutable_connection_properties(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
|
|
4973
5279
|
struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties*)envoy_config_route_v3_RouteAction_HashPolicy_connection_properties(msg);
|
|
@@ -4979,11 +5285,12 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionPropert
|
|
|
4979
5285
|
}
|
|
4980
5286
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_terminal(envoy_config_route_v3_RouteAction_HashPolicy *msg, bool value) {
|
|
4981
5287
|
const upb_MiniTableField field = {4, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
4982
|
-
|
|
5288
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4983
5289
|
}
|
|
4984
5290
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_query_parameter(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* value) {
|
|
4985
5291
|
const upb_MiniTableField field = {5, 16, -13, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4986
|
-
|
|
5292
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__QueryParameter_msg_init);
|
|
5293
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4987
5294
|
}
|
|
4988
5295
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* envoy_config_route_v3_RouteAction_HashPolicy_mutable_query_parameter(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
|
|
4989
5296
|
struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter*)envoy_config_route_v3_RouteAction_HashPolicy_query_parameter(msg);
|
|
@@ -4995,7 +5302,8 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* e
|
|
|
4995
5302
|
}
|
|
4996
5303
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_filter_state(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_FilterState* value) {
|
|
4997
5304
|
const upb_MiniTableField field = {6, 16, -13, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4998
|
-
|
|
5305
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__FilterState_msg_init);
|
|
5306
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4999
5307
|
}
|
|
5000
5308
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_FilterState* envoy_config_route_v3_RouteAction_HashPolicy_mutable_filter_state(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
|
|
5001
5309
|
struct envoy_config_route_v3_RouteAction_HashPolicy_FilterState* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_FilterState*)envoy_config_route_v3_RouteAction_HashPolicy_filter_state(msg);
|
|
@@ -5062,6 +5370,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_con
|
|
|
5062
5370
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* default_val = NULL;
|
|
5063
5371
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* ret;
|
|
5064
5372
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5373
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
5065
5374
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5066
5375
|
&default_val, &ret);
|
|
5067
5376
|
return ret;
|
|
@@ -5073,11 +5382,12 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_HashPolicy_Header_has_regex_re
|
|
|
5073
5382
|
|
|
5074
5383
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Header_set_header_name(envoy_config_route_v3_RouteAction_HashPolicy_Header *msg, upb_StringView value) {
|
|
5075
5384
|
const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5076
|
-
|
|
5385
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5077
5386
|
}
|
|
5078
5387
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Header_set_regex_rewrite(envoy_config_route_v3_RouteAction_HashPolicy_Header *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
|
|
5079
5388
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5080
|
-
|
|
5389
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
5390
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5081
5391
|
}
|
|
5082
5392
|
UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_HashPolicy_Header_mutable_regex_rewrite(envoy_config_route_v3_RouteAction_HashPolicy_Header* msg, upb_Arena* arena) {
|
|
5083
5393
|
struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RouteAction_HashPolicy_Header_regex_rewrite(msg);
|
|
@@ -5151,11 +5461,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_HashPolicy_CookieAtt
|
|
|
5151
5461
|
|
|
5152
5462
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute_set_name(envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute *msg, upb_StringView value) {
|
|
5153
5463
|
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5154
|
-
|
|
5464
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5155
5465
|
}
|
|
5156
5466
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute_set_value(envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute *msg, upb_StringView value) {
|
|
5157
5467
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5158
|
-
|
|
5468
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5159
5469
|
}
|
|
5160
5470
|
|
|
5161
5471
|
/* envoy.config.route.v3.RouteAction.HashPolicy.Cookie */
|
|
@@ -5214,6 +5524,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
5214
5524
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
5215
5525
|
const struct google_protobuf_Duration* ret;
|
|
5216
5526
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5527
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
5217
5528
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5218
5529
|
&default_val, &ret);
|
|
5219
5530
|
return ret;
|
|
@@ -5240,6 +5551,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Cookie_clear_attrib
|
|
|
5240
5551
|
}
|
|
5241
5552
|
UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute* const* envoy_config_route_v3_RouteAction_HashPolicy_Cookie_attributes(const envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, size_t* size) {
|
|
5242
5553
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5554
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__CookieAttribute_msg_init);
|
|
5243
5555
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
5244
5556
|
if (arr) {
|
|
5245
5557
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -5251,6 +5563,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute* c
|
|
|
5251
5563
|
}
|
|
5252
5564
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_HashPolicy_Cookie_attributes_upb_array(const envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, size_t* size) {
|
|
5253
5565
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5566
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__CookieAttribute_msg_init);
|
|
5254
5567
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
5255
5568
|
if (size) {
|
|
5256
5569
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -5259,6 +5572,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_HashPolicy_Cookie
|
|
|
5259
5572
|
}
|
|
5260
5573
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_HashPolicy_Cookie_attributes_mutable_upb_array(envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, size_t* size, upb_Arena* arena) {
|
|
5261
5574
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5575
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__CookieAttribute_msg_init);
|
|
5262
5576
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
5263
5577
|
&field, arena);
|
|
5264
5578
|
if (size) {
|
|
@@ -5269,11 +5583,12 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_HashPolicy_Cookie_attri
|
|
|
5269
5583
|
|
|
5270
5584
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Cookie_set_name(envoy_config_route_v3_RouteAction_HashPolicy_Cookie *msg, upb_StringView value) {
|
|
5271
5585
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5272
|
-
|
|
5586
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5273
5587
|
}
|
|
5274
5588
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Cookie_set_ttl(envoy_config_route_v3_RouteAction_HashPolicy_Cookie *msg, struct google_protobuf_Duration* value) {
|
|
5275
5589
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5276
|
-
|
|
5590
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
5591
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5277
5592
|
}
|
|
5278
5593
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_HashPolicy_Cookie_mutable_ttl(envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, upb_Arena* arena) {
|
|
5279
5594
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_HashPolicy_Cookie_ttl(msg);
|
|
@@ -5285,10 +5600,11 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_Ha
|
|
|
5285
5600
|
}
|
|
5286
5601
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Cookie_set_path(envoy_config_route_v3_RouteAction_HashPolicy_Cookie *msg, upb_StringView value) {
|
|
5287
5602
|
const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5288
|
-
|
|
5603
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5289
5604
|
}
|
|
5290
5605
|
UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute** envoy_config_route_v3_RouteAction_HashPolicy_Cookie_mutable_attributes(envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, size_t* size) {
|
|
5291
5606
|
upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5607
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__CookieAttribute_msg_init);
|
|
5292
5608
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
5293
5609
|
if (arr) {
|
|
5294
5610
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -5305,6 +5621,7 @@ UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute** envoy_
|
|
|
5305
5621
|
}
|
|
5306
5622
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute* envoy_config_route_v3_RouteAction_HashPolicy_Cookie_add_attributes(envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, upb_Arena* arena) {
|
|
5307
5623
|
upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5624
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy__CookieAttribute_msg_init);
|
|
5308
5625
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
5309
5626
|
UPB_UPCAST(msg), &field, arena);
|
|
5310
5627
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -5369,7 +5686,7 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_HashPolicy_ConnectionPropertie
|
|
|
5369
5686
|
|
|
5370
5687
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_set_source_ip(envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties *msg, bool value) {
|
|
5371
5688
|
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
5372
|
-
|
|
5689
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5373
5690
|
}
|
|
5374
5691
|
|
|
5375
5692
|
/* envoy.config.route.v3.RouteAction.HashPolicy.QueryParameter */
|
|
@@ -5423,7 +5740,7 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_HashPolicy_QueryPara
|
|
|
5423
5740
|
|
|
5424
5741
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_set_name(envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter *msg, upb_StringView value) {
|
|
5425
5742
|
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5426
|
-
|
|
5743
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5427
5744
|
}
|
|
5428
5745
|
|
|
5429
5746
|
/* envoy.config.route.v3.RouteAction.HashPolicy.FilterState */
|
|
@@ -5477,7 +5794,7 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_HashPolicy_FilterSta
|
|
|
5477
5794
|
|
|
5478
5795
|
UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_FilterState_set_key(envoy_config_route_v3_RouteAction_HashPolicy_FilterState *msg, upb_StringView value) {
|
|
5479
5796
|
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5480
|
-
|
|
5797
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5481
5798
|
}
|
|
5482
5799
|
|
|
5483
5800
|
/* envoy.config.route.v3.RouteAction.UpgradeConfig */
|
|
@@ -5536,6 +5853,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAc
|
|
|
5536
5853
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
5537
5854
|
const struct google_protobuf_BoolValue* ret;
|
|
5538
5855
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5856
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
5539
5857
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5540
5858
|
&default_val, &ret);
|
|
5541
5859
|
return ret;
|
|
@@ -5552,6 +5870,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig*
|
|
|
5552
5870
|
const envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* default_val = NULL;
|
|
5553
5871
|
const envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* ret;
|
|
5554
5872
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5873
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig__ConnectConfig_msg_init);
|
|
5555
5874
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5556
5875
|
&default_val, &ret);
|
|
5557
5876
|
return ret;
|
|
@@ -5563,11 +5882,12 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_UpgradeConfig_has_connect_conf
|
|
|
5563
5882
|
|
|
5564
5883
|
UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_set_upgrade_type(envoy_config_route_v3_RouteAction_UpgradeConfig *msg, upb_StringView value) {
|
|
5565
5884
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5566
|
-
|
|
5885
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5567
5886
|
}
|
|
5568
5887
|
UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_set_enabled(envoy_config_route_v3_RouteAction_UpgradeConfig *msg, struct google_protobuf_BoolValue* value) {
|
|
5569
5888
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5570
|
-
|
|
5889
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
5890
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5571
5891
|
}
|
|
5572
5892
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_UpgradeConfig_mutable_enabled(envoy_config_route_v3_RouteAction_UpgradeConfig* msg, upb_Arena* arena) {
|
|
5573
5893
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_UpgradeConfig_enabled(msg);
|
|
@@ -5579,7 +5899,8 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_U
|
|
|
5579
5899
|
}
|
|
5580
5900
|
UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_set_connect_config(envoy_config_route_v3_RouteAction_UpgradeConfig *msg, envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* value) {
|
|
5581
5901
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5582
|
-
|
|
5902
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig__ConnectConfig_msg_init);
|
|
5903
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5583
5904
|
}
|
|
5584
5905
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* envoy_config_route_v3_RouteAction_UpgradeConfig_mutable_connect_config(envoy_config_route_v3_RouteAction_UpgradeConfig* msg, upb_Arena* arena) {
|
|
5585
5906
|
struct envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* sub = (struct envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig*)envoy_config_route_v3_RouteAction_UpgradeConfig_connect_config(msg);
|
|
@@ -5634,6 +5955,7 @@ UPB_INLINE const struct envoy_config_core_v3_ProxyProtocolConfig* envoy_config_r
|
|
|
5634
5955
|
const struct envoy_config_core_v3_ProxyProtocolConfig* default_val = NULL;
|
|
5635
5956
|
const struct envoy_config_core_v3_ProxyProtocolConfig* ret;
|
|
5636
5957
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5958
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ProxyProtocolConfig_msg_init);
|
|
5637
5959
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5638
5960
|
&default_val, &ret);
|
|
5639
5961
|
return ret;
|
|
@@ -5657,7 +5979,8 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_al
|
|
|
5657
5979
|
|
|
5658
5980
|
UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_set_proxy_protocol_config(envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig *msg, struct envoy_config_core_v3_ProxyProtocolConfig* value) {
|
|
5659
5981
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5660
|
-
|
|
5982
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ProxyProtocolConfig_msg_init);
|
|
5983
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5661
5984
|
}
|
|
5662
5985
|
UPB_INLINE struct envoy_config_core_v3_ProxyProtocolConfig* envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_mutable_proxy_protocol_config(envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* msg, upb_Arena* arena) {
|
|
5663
5986
|
struct envoy_config_core_v3_ProxyProtocolConfig* sub = (struct envoy_config_core_v3_ProxyProtocolConfig*)envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_proxy_protocol_config(msg);
|
|
@@ -5669,7 +5992,7 @@ UPB_INLINE struct envoy_config_core_v3_ProxyProtocolConfig* envoy_config_route_v
|
|
|
5669
5992
|
}
|
|
5670
5993
|
UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_set_allow_post(envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig *msg, bool value) {
|
|
5671
5994
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
5672
|
-
|
|
5995
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5673
5996
|
}
|
|
5674
5997
|
|
|
5675
5998
|
/* envoy.config.route.v3.RouteAction.MaxStreamDuration */
|
|
@@ -5716,6 +6039,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
5716
6039
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
5717
6040
|
const struct google_protobuf_Duration* ret;
|
|
5718
6041
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6042
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
5719
6043
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5720
6044
|
&default_val, &ret);
|
|
5721
6045
|
return ret;
|
|
@@ -5732,6 +6056,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
5732
6056
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
5733
6057
|
const struct google_protobuf_Duration* ret;
|
|
5734
6058
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6059
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
5735
6060
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5736
6061
|
&default_val, &ret);
|
|
5737
6062
|
return ret;
|
|
@@ -5748,6 +6073,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAct
|
|
|
5748
6073
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
5749
6074
|
const struct google_protobuf_Duration* ret;
|
|
5750
6075
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6076
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
5751
6077
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5752
6078
|
&default_val, &ret);
|
|
5753
6079
|
return ret;
|
|
@@ -5759,7 +6085,8 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_MaxStreamDuration_has_grpc_tim
|
|
|
5759
6085
|
|
|
5760
6086
|
UPB_INLINE void envoy_config_route_v3_RouteAction_MaxStreamDuration_set_max_stream_duration(envoy_config_route_v3_RouteAction_MaxStreamDuration *msg, struct google_protobuf_Duration* value) {
|
|
5761
6087
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5762
|
-
|
|
6088
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6089
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5763
6090
|
}
|
|
5764
6091
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_MaxStreamDuration_mutable_max_stream_duration(envoy_config_route_v3_RouteAction_MaxStreamDuration* msg, upb_Arena* arena) {
|
|
5765
6092
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_MaxStreamDuration_max_stream_duration(msg);
|
|
@@ -5771,7 +6098,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_Ma
|
|
|
5771
6098
|
}
|
|
5772
6099
|
UPB_INLINE void envoy_config_route_v3_RouteAction_MaxStreamDuration_set_grpc_timeout_header_max(envoy_config_route_v3_RouteAction_MaxStreamDuration *msg, struct google_protobuf_Duration* value) {
|
|
5773
6100
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5774
|
-
|
|
6101
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6102
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5775
6103
|
}
|
|
5776
6104
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_MaxStreamDuration_mutable_grpc_timeout_header_max(envoy_config_route_v3_RouteAction_MaxStreamDuration* msg, upb_Arena* arena) {
|
|
5777
6105
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_MaxStreamDuration_grpc_timeout_header_max(msg);
|
|
@@ -5783,7 +6111,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_Ma
|
|
|
5783
6111
|
}
|
|
5784
6112
|
UPB_INLINE void envoy_config_route_v3_RouteAction_MaxStreamDuration_set_grpc_timeout_header_offset(envoy_config_route_v3_RouteAction_MaxStreamDuration *msg, struct google_protobuf_Duration* value) {
|
|
5785
6113
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5786
|
-
|
|
6114
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6115
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5787
6116
|
}
|
|
5788
6117
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_MaxStreamDuration_mutable_grpc_timeout_header_offset(envoy_config_route_v3_RouteAction_MaxStreamDuration* msg, upb_Arena* arena) {
|
|
5789
6118
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_MaxStreamDuration_grpc_timeout_header_offset(msg);
|
|
@@ -5850,6 +6179,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Retry
|
|
|
5850
6179
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
5851
6180
|
const struct google_protobuf_UInt32Value* ret;
|
|
5852
6181
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6182
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
5853
6183
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5854
6184
|
&default_val, &ret);
|
|
5855
6185
|
return ret;
|
|
@@ -5866,6 +6196,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RetryPol
|
|
|
5866
6196
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
5867
6197
|
const struct google_protobuf_Duration* ret;
|
|
5868
6198
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6199
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
5869
6200
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5870
6201
|
&default_val, &ret);
|
|
5871
6202
|
return ret;
|
|
@@ -5882,6 +6213,7 @@ UPB_INLINE const envoy_config_route_v3_RetryPolicy_RetryPriority* envoy_config_r
|
|
|
5882
6213
|
const envoy_config_route_v3_RetryPolicy_RetryPriority* default_val = NULL;
|
|
5883
6214
|
const envoy_config_route_v3_RetryPolicy_RetryPriority* ret;
|
|
5884
6215
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6216
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryPriority_msg_init);
|
|
5885
6217
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5886
6218
|
&default_val, &ret);
|
|
5887
6219
|
return ret;
|
|
@@ -5896,6 +6228,7 @@ UPB_INLINE void envoy_config_route_v3_RetryPolicy_clear_retry_host_predicate(env
|
|
|
5896
6228
|
}
|
|
5897
6229
|
UPB_INLINE const envoy_config_route_v3_RetryPolicy_RetryHostPredicate* const* envoy_config_route_v3_RetryPolicy_retry_host_predicate(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
5898
6230
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6231
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryHostPredicate_msg_init);
|
|
5899
6232
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
5900
6233
|
if (arr) {
|
|
5901
6234
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -5907,6 +6240,7 @@ UPB_INLINE const envoy_config_route_v3_RetryPolicy_RetryHostPredicate* const* en
|
|
|
5907
6240
|
}
|
|
5908
6241
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retry_host_predicate_upb_array(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
5909
6242
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6243
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryHostPredicate_msg_init);
|
|
5910
6244
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
5911
6245
|
if (size) {
|
|
5912
6246
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -5915,6 +6249,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retry_host_predic
|
|
|
5915
6249
|
}
|
|
5916
6250
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RetryPolicy_retry_host_predicate_mutable_upb_array(envoy_config_route_v3_RetryPolicy* msg, size_t* size, upb_Arena* arena) {
|
|
5917
6251
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6252
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryHostPredicate_msg_init);
|
|
5918
6253
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
5919
6254
|
&field, arena);
|
|
5920
6255
|
if (size) {
|
|
@@ -5974,6 +6309,7 @@ UPB_INLINE const envoy_config_route_v3_RetryPolicy_RetryBackOff* envoy_config_ro
|
|
|
5974
6309
|
const envoy_config_route_v3_RetryPolicy_RetryBackOff* default_val = NULL;
|
|
5975
6310
|
const envoy_config_route_v3_RetryPolicy_RetryBackOff* ret;
|
|
5976
6311
|
const upb_MiniTableField field = {8, UPB_SIZE(32, 80), 67, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6312
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryBackOff_msg_init);
|
|
5977
6313
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5978
6314
|
&default_val, &ret);
|
|
5979
6315
|
return ret;
|
|
@@ -5988,6 +6324,7 @@ UPB_INLINE void envoy_config_route_v3_RetryPolicy_clear_retriable_headers(envoy_
|
|
|
5988
6324
|
}
|
|
5989
6325
|
UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_v3_RetryPolicy_retriable_headers(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
5990
6326
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6327
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
5991
6328
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
5992
6329
|
if (arr) {
|
|
5993
6330
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -5999,6 +6336,7 @@ UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_
|
|
|
5999
6336
|
}
|
|
6000
6337
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retriable_headers_upb_array(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6001
6338
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6339
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6002
6340
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
6003
6341
|
if (size) {
|
|
6004
6342
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -6007,6 +6345,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retriable_headers
|
|
|
6007
6345
|
}
|
|
6008
6346
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RetryPolicy_retriable_headers_mutable_upb_array(envoy_config_route_v3_RetryPolicy* msg, size_t* size, upb_Arena* arena) {
|
|
6009
6347
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6348
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6010
6349
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
6011
6350
|
&field, arena);
|
|
6012
6351
|
if (size) {
|
|
@@ -6020,6 +6359,7 @@ UPB_INLINE void envoy_config_route_v3_RetryPolicy_clear_retriable_request_header
|
|
|
6020
6359
|
}
|
|
6021
6360
|
UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_v3_RetryPolicy_retriable_request_headers(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6022
6361
|
const upb_MiniTableField field = {10, UPB_SIZE(40, 96), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6362
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6023
6363
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
6024
6364
|
if (arr) {
|
|
6025
6365
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6031,6 +6371,7 @@ UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_
|
|
|
6031
6371
|
}
|
|
6032
6372
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retriable_request_headers_upb_array(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6033
6373
|
const upb_MiniTableField field = {10, UPB_SIZE(40, 96), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6374
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6034
6375
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
6035
6376
|
if (size) {
|
|
6036
6377
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -6039,6 +6380,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retriable_request
|
|
|
6039
6380
|
}
|
|
6040
6381
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RetryPolicy_retriable_request_headers_mutable_upb_array(envoy_config_route_v3_RetryPolicy* msg, size_t* size, upb_Arena* arena) {
|
|
6041
6382
|
const upb_MiniTableField field = {10, UPB_SIZE(40, 96), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6383
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6042
6384
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
6043
6385
|
&field, arena);
|
|
6044
6386
|
if (size) {
|
|
@@ -6054,6 +6396,7 @@ UPB_INLINE const envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* envo
|
|
|
6054
6396
|
const envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* default_val = NULL;
|
|
6055
6397
|
const envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* ret;
|
|
6056
6398
|
const upb_MiniTableField field = {11, UPB_SIZE(44, 104), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6399
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RateLimitedRetryBackOff_msg_init);
|
|
6057
6400
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6058
6401
|
&default_val, &ret);
|
|
6059
6402
|
return ret;
|
|
@@ -6068,6 +6411,7 @@ UPB_INLINE void envoy_config_route_v3_RetryPolicy_clear_retry_options_predicates
|
|
|
6068
6411
|
}
|
|
6069
6412
|
UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_config_route_v3_RetryPolicy_retry_options_predicates(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6070
6413
|
const upb_MiniTableField field = {12, UPB_SIZE(48, 112), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6414
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
6071
6415
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
6072
6416
|
if (arr) {
|
|
6073
6417
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6079,6 +6423,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_
|
|
|
6079
6423
|
}
|
|
6080
6424
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retry_options_predicates_upb_array(const envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6081
6425
|
const upb_MiniTableField field = {12, UPB_SIZE(48, 112), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6426
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
6082
6427
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
6083
6428
|
if (size) {
|
|
6084
6429
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -6087,6 +6432,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_retry_options_pre
|
|
|
6087
6432
|
}
|
|
6088
6433
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RetryPolicy_retry_options_predicates_mutable_upb_array(envoy_config_route_v3_RetryPolicy* msg, size_t* size, upb_Arena* arena) {
|
|
6089
6434
|
const upb_MiniTableField field = {12, UPB_SIZE(48, 112), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6435
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
6090
6436
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
6091
6437
|
&field, arena);
|
|
6092
6438
|
if (size) {
|
|
@@ -6102,6 +6448,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RetryPol
|
|
|
6102
6448
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
6103
6449
|
const struct google_protobuf_Duration* ret;
|
|
6104
6450
|
const upb_MiniTableField field = {13, UPB_SIZE(52, 120), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6451
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6105
6452
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6106
6453
|
&default_val, &ret);
|
|
6107
6454
|
return ret;
|
|
@@ -6113,11 +6460,12 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_has_per_try_idle_timeout(const
|
|
|
6113
6460
|
|
|
6114
6461
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_retry_on(envoy_config_route_v3_RetryPolicy *msg, upb_StringView value) {
|
|
6115
6462
|
const upb_MiniTableField field = {1, UPB_SIZE(56, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
6116
|
-
|
|
6463
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6117
6464
|
}
|
|
6118
6465
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_num_retries(envoy_config_route_v3_RetryPolicy *msg, struct google_protobuf_UInt32Value* value) {
|
|
6119
6466
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6120
|
-
|
|
6467
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
6468
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6121
6469
|
}
|
|
6122
6470
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RetryPolicy_mutable_num_retries(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6123
6471
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RetryPolicy_num_retries(msg);
|
|
@@ -6129,7 +6477,8 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RetryPolicy
|
|
|
6129
6477
|
}
|
|
6130
6478
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_per_try_timeout(envoy_config_route_v3_RetryPolicy *msg, struct google_protobuf_Duration* value) {
|
|
6131
6479
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6132
|
-
|
|
6480
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6481
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6133
6482
|
}
|
|
6134
6483
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_mutable_per_try_timeout(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6135
6484
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_per_try_timeout(msg);
|
|
@@ -6141,7 +6490,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_mu
|
|
|
6141
6490
|
}
|
|
6142
6491
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_retry_priority(envoy_config_route_v3_RetryPolicy *msg, envoy_config_route_v3_RetryPolicy_RetryPriority* value) {
|
|
6143
6492
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6144
|
-
|
|
6493
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryPriority_msg_init);
|
|
6494
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6145
6495
|
}
|
|
6146
6496
|
UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryPriority* envoy_config_route_v3_RetryPolicy_mutable_retry_priority(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6147
6497
|
struct envoy_config_route_v3_RetryPolicy_RetryPriority* sub = (struct envoy_config_route_v3_RetryPolicy_RetryPriority*)envoy_config_route_v3_RetryPolicy_retry_priority(msg);
|
|
@@ -6153,6 +6503,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryPriority* envoy_config_
|
|
|
6153
6503
|
}
|
|
6154
6504
|
UPB_INLINE envoy_config_route_v3_RetryPolicy_RetryHostPredicate** envoy_config_route_v3_RetryPolicy_mutable_retry_host_predicate(envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6155
6505
|
upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6506
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryHostPredicate_msg_init);
|
|
6156
6507
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
6157
6508
|
if (arr) {
|
|
6158
6509
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6169,6 +6520,7 @@ UPB_INLINE envoy_config_route_v3_RetryPolicy_RetryHostPredicate** envoy_config_r
|
|
|
6169
6520
|
}
|
|
6170
6521
|
UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryHostPredicate* envoy_config_route_v3_RetryPolicy_add_retry_host_predicate(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6171
6522
|
upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6523
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryHostPredicate_msg_init);
|
|
6172
6524
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
6173
6525
|
UPB_UPCAST(msg), &field, arena);
|
|
6174
6526
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -6183,7 +6535,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryHostPredicate* envoy_co
|
|
|
6183
6535
|
}
|
|
6184
6536
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_host_selection_retry_max_attempts(envoy_config_route_v3_RetryPolicy *msg, int64_t value) {
|
|
6185
6537
|
const upb_MiniTableField field = {6, 64, 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
|
6186
|
-
|
|
6538
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6187
6539
|
}
|
|
6188
6540
|
UPB_INLINE uint32_t* envoy_config_route_v3_RetryPolicy_mutable_retriable_status_codes(envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6189
6541
|
upb_MiniTableField field = {7, UPB_SIZE(28, 72), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
@@ -6215,7 +6567,8 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_add_retriable_status_codes(env
|
|
|
6215
6567
|
}
|
|
6216
6568
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_retry_back_off(envoy_config_route_v3_RetryPolicy *msg, envoy_config_route_v3_RetryPolicy_RetryBackOff* value) {
|
|
6217
6569
|
const upb_MiniTableField field = {8, UPB_SIZE(32, 80), 67, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6218
|
-
|
|
6570
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RetryBackOff_msg_init);
|
|
6571
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6219
6572
|
}
|
|
6220
6573
|
UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryBackOff* envoy_config_route_v3_RetryPolicy_mutable_retry_back_off(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6221
6574
|
struct envoy_config_route_v3_RetryPolicy_RetryBackOff* sub = (struct envoy_config_route_v3_RetryPolicy_RetryBackOff*)envoy_config_route_v3_RetryPolicy_retry_back_off(msg);
|
|
@@ -6227,6 +6580,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryBackOff* envoy_config_r
|
|
|
6227
6580
|
}
|
|
6228
6581
|
UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RetryPolicy_mutable_retriable_headers(envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6229
6582
|
upb_MiniTableField field = {9, UPB_SIZE(36, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6583
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6230
6584
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
6231
6585
|
if (arr) {
|
|
6232
6586
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6243,6 +6597,7 @@ UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RetryPoli
|
|
|
6243
6597
|
}
|
|
6244
6598
|
UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_RetryPolicy_add_retriable_headers(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6245
6599
|
upb_MiniTableField field = {9, UPB_SIZE(36, 88), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6600
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6246
6601
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
6247
6602
|
UPB_UPCAST(msg), &field, arena);
|
|
6248
6603
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -6257,6 +6612,7 @@ UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_Ret
|
|
|
6257
6612
|
}
|
|
6258
6613
|
UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RetryPolicy_mutable_retriable_request_headers(envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6259
6614
|
upb_MiniTableField field = {10, UPB_SIZE(40, 96), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6615
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6260
6616
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
6261
6617
|
if (arr) {
|
|
6262
6618
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6273,6 +6629,7 @@ UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RetryPoli
|
|
|
6273
6629
|
}
|
|
6274
6630
|
UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_RetryPolicy_add_retriable_request_headers(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6275
6631
|
upb_MiniTableField field = {10, UPB_SIZE(40, 96), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6632
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
6276
6633
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
6277
6634
|
UPB_UPCAST(msg), &field, arena);
|
|
6278
6635
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -6287,7 +6644,8 @@ UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_Ret
|
|
|
6287
6644
|
}
|
|
6288
6645
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_rate_limited_retry_back_off(envoy_config_route_v3_RetryPolicy *msg, envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* value) {
|
|
6289
6646
|
const upb_MiniTableField field = {11, UPB_SIZE(44, 104), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6290
|
-
|
|
6647
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__RateLimitedRetryBackOff_msg_init);
|
|
6648
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6291
6649
|
}
|
|
6292
6650
|
UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* envoy_config_route_v3_RetryPolicy_mutable_rate_limited_retry_back_off(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6293
6651
|
struct envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* sub = (struct envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff*)envoy_config_route_v3_RetryPolicy_rate_limited_retry_back_off(msg);
|
|
@@ -6299,6 +6657,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* env
|
|
|
6299
6657
|
}
|
|
6300
6658
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_route_v3_RetryPolicy_mutable_retry_options_predicates(envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
|
|
6301
6659
|
upb_MiniTableField field = {12, UPB_SIZE(48, 112), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6660
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
6302
6661
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
6303
6662
|
if (arr) {
|
|
6304
6663
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6315,6 +6674,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_route
|
|
|
6315
6674
|
}
|
|
6316
6675
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RetryPolicy_add_retry_options_predicates(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6317
6676
|
upb_MiniTableField field = {12, UPB_SIZE(48, 112), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6677
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
6318
6678
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
6319
6679
|
UPB_UPCAST(msg), &field, arena);
|
|
6320
6680
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -6329,7 +6689,8 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
6329
6689
|
}
|
|
6330
6690
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_per_try_idle_timeout(envoy_config_route_v3_RetryPolicy *msg, struct google_protobuf_Duration* value) {
|
|
6331
6691
|
const upb_MiniTableField field = {13, UPB_SIZE(52, 120), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6332
|
-
|
|
6692
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6693
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6333
6694
|
}
|
|
6334
6695
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_mutable_per_try_idle_timeout(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
|
|
6335
6696
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_per_try_idle_timeout(msg);
|
|
@@ -6405,6 +6766,7 @@ UPB_INLINE const struct google_protobuf_Any* envoy_config_route_v3_RetryPolicy_R
|
|
|
6405
6766
|
const struct google_protobuf_Any* default_val = NULL;
|
|
6406
6767
|
const struct google_protobuf_Any* ret;
|
|
6407
6768
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6769
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
6408
6770
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6409
6771
|
&default_val, &ret);
|
|
6410
6772
|
return ret;
|
|
@@ -6416,11 +6778,12 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_RetryPriority_has_typed_config
|
|
|
6416
6778
|
|
|
6417
6779
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryPriority_set_name(envoy_config_route_v3_RetryPolicy_RetryPriority *msg, upb_StringView value) {
|
|
6418
6780
|
const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
6419
|
-
|
|
6781
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6420
6782
|
}
|
|
6421
6783
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryPriority_set_typed_config(envoy_config_route_v3_RetryPolicy_RetryPriority *msg, struct google_protobuf_Any* value) {
|
|
6422
6784
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6423
|
-
|
|
6785
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
6786
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6424
6787
|
}
|
|
6425
6788
|
UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RetryPolicy_RetryPriority_mutable_typed_config(envoy_config_route_v3_RetryPolicy_RetryPriority* msg, upb_Arena* arena) {
|
|
6426
6789
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_RetryPolicy_RetryPriority_typed_config(msg);
|
|
@@ -6496,6 +6859,7 @@ UPB_INLINE const struct google_protobuf_Any* envoy_config_route_v3_RetryPolicy_R
|
|
|
6496
6859
|
const struct google_protobuf_Any* default_val = NULL;
|
|
6497
6860
|
const struct google_protobuf_Any* ret;
|
|
6498
6861
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6862
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
6499
6863
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6500
6864
|
&default_val, &ret);
|
|
6501
6865
|
return ret;
|
|
@@ -6507,11 +6871,12 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_RetryHostPredicate_has_typed_c
|
|
|
6507
6871
|
|
|
6508
6872
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryHostPredicate_set_name(envoy_config_route_v3_RetryPolicy_RetryHostPredicate *msg, upb_StringView value) {
|
|
6509
6873
|
const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
6510
|
-
|
|
6874
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6511
6875
|
}
|
|
6512
6876
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryHostPredicate_set_typed_config(envoy_config_route_v3_RetryPolicy_RetryHostPredicate *msg, struct google_protobuf_Any* value) {
|
|
6513
6877
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6514
|
-
|
|
6878
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
6879
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6515
6880
|
}
|
|
6516
6881
|
UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RetryPolicy_RetryHostPredicate_mutable_typed_config(envoy_config_route_v3_RetryPolicy_RetryHostPredicate* msg, upb_Arena* arena) {
|
|
6517
6882
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_RetryPolicy_RetryHostPredicate_typed_config(msg);
|
|
@@ -6566,6 +6931,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RetryPol
|
|
|
6566
6931
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
6567
6932
|
const struct google_protobuf_Duration* ret;
|
|
6568
6933
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6934
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6569
6935
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6570
6936
|
&default_val, &ret);
|
|
6571
6937
|
return ret;
|
|
@@ -6582,6 +6948,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RetryPol
|
|
|
6582
6948
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
6583
6949
|
const struct google_protobuf_Duration* ret;
|
|
6584
6950
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6951
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6585
6952
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6586
6953
|
&default_val, &ret);
|
|
6587
6954
|
return ret;
|
|
@@ -6593,7 +6960,8 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_RetryBackOff_has_max_interval(
|
|
|
6593
6960
|
|
|
6594
6961
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryBackOff_set_base_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff *msg, struct google_protobuf_Duration* value) {
|
|
6595
6962
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6596
|
-
|
|
6963
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6964
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6597
6965
|
}
|
|
6598
6966
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_RetryBackOff_mutable_base_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff* msg, upb_Arena* arena) {
|
|
6599
6967
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_RetryBackOff_base_interval(msg);
|
|
@@ -6605,7 +6973,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_Re
|
|
|
6605
6973
|
}
|
|
6606
6974
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryBackOff_set_max_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff *msg, struct google_protobuf_Duration* value) {
|
|
6607
6975
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6608
|
-
|
|
6976
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6977
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6609
6978
|
}
|
|
6610
6979
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_RetryBackOff_mutable_max_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff* msg, upb_Arena* arena) {
|
|
6611
6980
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_RetryBackOff_max_interval(msg);
|
|
@@ -6679,11 +7048,11 @@ UPB_INLINE int32_t envoy_config_route_v3_RetryPolicy_ResetHeader_format(const en
|
|
|
6679
7048
|
|
|
6680
7049
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_ResetHeader_set_name(envoy_config_route_v3_RetryPolicy_ResetHeader *msg, upb_StringView value) {
|
|
6681
7050
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
6682
|
-
|
|
7051
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6683
7052
|
}
|
|
6684
7053
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_ResetHeader_set_format(envoy_config_route_v3_RetryPolicy_ResetHeader *msg, int32_t value) {
|
|
6685
7054
|
const upb_MiniTableField field = {2, 8, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
6686
|
-
|
|
7055
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6687
7056
|
}
|
|
6688
7057
|
|
|
6689
7058
|
/* envoy.config.route.v3.RetryPolicy.RateLimitedRetryBackOff */
|
|
@@ -6728,6 +7097,7 @@ UPB_INLINE void envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_clear_
|
|
|
6728
7097
|
}
|
|
6729
7098
|
UPB_INLINE const envoy_config_route_v3_RetryPolicy_ResetHeader* const* envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_reset_headers(const envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* msg, size_t* size) {
|
|
6730
7099
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7100
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__ResetHeader_msg_init);
|
|
6731
7101
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
6732
7102
|
if (arr) {
|
|
6733
7103
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6739,6 +7109,7 @@ UPB_INLINE const envoy_config_route_v3_RetryPolicy_ResetHeader* const* envoy_con
|
|
|
6739
7109
|
}
|
|
6740
7110
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_reset_headers_upb_array(const envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* msg, size_t* size) {
|
|
6741
7111
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7112
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__ResetHeader_msg_init);
|
|
6742
7113
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
6743
7114
|
if (size) {
|
|
6744
7115
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -6747,6 +7118,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RetryPolicy_RateLimitedRetryB
|
|
|
6747
7118
|
}
|
|
6748
7119
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_reset_headers_mutable_upb_array(envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* msg, size_t* size, upb_Arena* arena) {
|
|
6749
7120
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7121
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__ResetHeader_msg_init);
|
|
6750
7122
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
6751
7123
|
&field, arena);
|
|
6752
7124
|
if (size) {
|
|
@@ -6762,6 +7134,7 @@ UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RetryPol
|
|
|
6762
7134
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
6763
7135
|
const struct google_protobuf_Duration* ret;
|
|
6764
7136
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7137
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
6765
7138
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6766
7139
|
&default_val, &ret);
|
|
6767
7140
|
return ret;
|
|
@@ -6773,6 +7146,7 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_has_ma
|
|
|
6773
7146
|
|
|
6774
7147
|
UPB_INLINE envoy_config_route_v3_RetryPolicy_ResetHeader** envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_mutable_reset_headers(envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* msg, size_t* size) {
|
|
6775
7148
|
upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7149
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__ResetHeader_msg_init);
|
|
6776
7150
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
6777
7151
|
if (arr) {
|
|
6778
7152
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -6789,6 +7163,7 @@ UPB_INLINE envoy_config_route_v3_RetryPolicy_ResetHeader** envoy_config_route_v3
|
|
|
6789
7163
|
}
|
|
6790
7164
|
UPB_INLINE struct envoy_config_route_v3_RetryPolicy_ResetHeader* envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_add_reset_headers(envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* msg, upb_Arena* arena) {
|
|
6791
7165
|
upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7166
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy__ResetHeader_msg_init);
|
|
6792
7167
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
6793
7168
|
UPB_UPCAST(msg), &field, arena);
|
|
6794
7169
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -6803,7 +7178,8 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy_ResetHeader* envoy_config_ro
|
|
|
6803
7178
|
}
|
|
6804
7179
|
UPB_INLINE void envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_set_max_interval(envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff *msg, struct google_protobuf_Duration* value) {
|
|
6805
7180
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6806
|
-
|
|
7181
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
7182
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6807
7183
|
}
|
|
6808
7184
|
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_mutable_max_interval(envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* msg, upb_Arena* arena) {
|
|
6809
7185
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_max_interval(msg);
|
|
@@ -6858,6 +7234,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Hedge
|
|
|
6858
7234
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
6859
7235
|
const struct google_protobuf_UInt32Value* ret;
|
|
6860
7236
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7237
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
6861
7238
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6862
7239
|
&default_val, &ret);
|
|
6863
7240
|
return ret;
|
|
@@ -6874,6 +7251,7 @@ UPB_INLINE const struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_H
|
|
|
6874
7251
|
const struct envoy_type_v3_FractionalPercent* default_val = NULL;
|
|
6875
7252
|
const struct envoy_type_v3_FractionalPercent* ret;
|
|
6876
7253
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7254
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
6877
7255
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
6878
7256
|
&default_val, &ret);
|
|
6879
7257
|
return ret;
|
|
@@ -6897,7 +7275,8 @@ UPB_INLINE bool envoy_config_route_v3_HedgePolicy_hedge_on_per_try_timeout(const
|
|
|
6897
7275
|
|
|
6898
7276
|
UPB_INLINE void envoy_config_route_v3_HedgePolicy_set_initial_requests(envoy_config_route_v3_HedgePolicy *msg, struct google_protobuf_UInt32Value* value) {
|
|
6899
7277
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6900
|
-
|
|
7278
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
7279
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6901
7280
|
}
|
|
6902
7281
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_HedgePolicy_mutable_initial_requests(envoy_config_route_v3_HedgePolicy* msg, upb_Arena* arena) {
|
|
6903
7282
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_HedgePolicy_initial_requests(msg);
|
|
@@ -6909,7 +7288,8 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_HedgePolicy
|
|
|
6909
7288
|
}
|
|
6910
7289
|
UPB_INLINE void envoy_config_route_v3_HedgePolicy_set_additional_request_chance(envoy_config_route_v3_HedgePolicy *msg, struct envoy_type_v3_FractionalPercent* value) {
|
|
6911
7290
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
6912
|
-
|
|
7291
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7292
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6913
7293
|
}
|
|
6914
7294
|
UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_HedgePolicy_mutable_additional_request_chance(envoy_config_route_v3_HedgePolicy* msg, upb_Arena* arena) {
|
|
6915
7295
|
struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_HedgePolicy_additional_request_chance(msg);
|
|
@@ -6921,7 +7301,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_HedgePo
|
|
|
6921
7301
|
}
|
|
6922
7302
|
UPB_INLINE void envoy_config_route_v3_HedgePolicy_set_hedge_on_per_try_timeout(envoy_config_route_v3_HedgePolicy *msg, bool value) {
|
|
6923
7303
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
6924
|
-
|
|
7304
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
6925
7305
|
}
|
|
6926
7306
|
|
|
6927
7307
|
/* envoy.config.route.v3.RedirectAction */
|
|
@@ -7101,6 +7481,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_con
|
|
|
7101
7481
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* default_val = NULL;
|
|
7102
7482
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* ret;
|
|
7103
7483
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 48), -25, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7484
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
7104
7485
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7105
7486
|
&default_val, &ret);
|
|
7106
7487
|
return ret;
|
|
@@ -7112,39 +7493,40 @@ UPB_INLINE bool envoy_config_route_v3_RedirectAction_has_regex_rewrite(const env
|
|
|
7112
7493
|
|
|
7113
7494
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_host_redirect(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
|
|
7114
7495
|
const upb_MiniTableField field = {1, UPB_SIZE(44, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7115
|
-
|
|
7496
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7116
7497
|
}
|
|
7117
7498
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_path_redirect(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
|
|
7118
7499
|
const upb_MiniTableField field = {2, UPB_SIZE(36, 48), -25, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7119
|
-
|
|
7500
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7120
7501
|
}
|
|
7121
7502
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_response_code(envoy_config_route_v3_RedirectAction *msg, int32_t value) {
|
|
7122
7503
|
const upb_MiniTableField field = {3, 8, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
7123
|
-
|
|
7504
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7124
7505
|
}
|
|
7125
7506
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_https_redirect(envoy_config_route_v3_RedirectAction *msg, bool value) {
|
|
7126
7507
|
const upb_MiniTableField field = {4, UPB_SIZE(28, 32), -17, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
7127
|
-
|
|
7508
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7128
7509
|
}
|
|
7129
7510
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_prefix_rewrite(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
|
|
7130
7511
|
const upb_MiniTableField field = {5, UPB_SIZE(36, 48), -25, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7131
|
-
|
|
7512
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7132
7513
|
}
|
|
7133
7514
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_strip_query(envoy_config_route_v3_RedirectAction *msg, bool value) {
|
|
7134
7515
|
const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
7135
|
-
|
|
7516
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7136
7517
|
}
|
|
7137
7518
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_scheme_redirect(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
|
|
7138
7519
|
const upb_MiniTableField field = {7, UPB_SIZE(28, 32), -17, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7139
|
-
|
|
7520
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7140
7521
|
}
|
|
7141
7522
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_port_redirect(envoy_config_route_v3_RedirectAction *msg, uint32_t value) {
|
|
7142
7523
|
const upb_MiniTableField field = {8, 20, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
7143
|
-
|
|
7524
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7144
7525
|
}
|
|
7145
7526
|
UPB_INLINE void envoy_config_route_v3_RedirectAction_set_regex_rewrite(envoy_config_route_v3_RedirectAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
|
|
7146
7527
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 48), -25, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7147
|
-
|
|
7528
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
7529
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7148
7530
|
}
|
|
7149
7531
|
UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RedirectAction_mutable_regex_rewrite(envoy_config_route_v3_RedirectAction* msg, upb_Arena* arena) {
|
|
7150
7532
|
struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RedirectAction_regex_rewrite(msg);
|
|
@@ -7211,6 +7593,7 @@ UPB_INLINE const struct envoy_config_core_v3_DataSource* envoy_config_route_v3_D
|
|
|
7211
7593
|
const struct envoy_config_core_v3_DataSource* default_val = NULL;
|
|
7212
7594
|
const struct envoy_config_core_v3_DataSource* ret;
|
|
7213
7595
|
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7596
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__DataSource_msg_init);
|
|
7214
7597
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7215
7598
|
&default_val, &ret);
|
|
7216
7599
|
return ret;
|
|
@@ -7222,11 +7605,12 @@ UPB_INLINE bool envoy_config_route_v3_DirectResponseAction_has_body(const envoy_
|
|
|
7222
7605
|
|
|
7223
7606
|
UPB_INLINE void envoy_config_route_v3_DirectResponseAction_set_status(envoy_config_route_v3_DirectResponseAction *msg, uint32_t value) {
|
|
7224
7607
|
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
7225
|
-
|
|
7608
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7226
7609
|
}
|
|
7227
7610
|
UPB_INLINE void envoy_config_route_v3_DirectResponseAction_set_body(envoy_config_route_v3_DirectResponseAction *msg, struct envoy_config_core_v3_DataSource* value) {
|
|
7228
7611
|
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7229
|
-
|
|
7612
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__DataSource_msg_init);
|
|
7613
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7230
7614
|
}
|
|
7231
7615
|
UPB_INLINE struct envoy_config_core_v3_DataSource* envoy_config_route_v3_DirectResponseAction_mutable_body(envoy_config_route_v3_DirectResponseAction* msg, upb_Arena* arena) {
|
|
7232
7616
|
struct envoy_config_core_v3_DataSource* sub = (struct envoy_config_core_v3_DataSource*)envoy_config_route_v3_DirectResponseAction_body(msg);
|
|
@@ -7331,6 +7715,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_Decorat
|
|
|
7331
7715
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
7332
7716
|
const struct google_protobuf_BoolValue* ret;
|
|
7333
7717
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7718
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
7334
7719
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7335
7720
|
&default_val, &ret);
|
|
7336
7721
|
return ret;
|
|
@@ -7342,11 +7727,12 @@ UPB_INLINE bool envoy_config_route_v3_Decorator_has_propagate(const envoy_config
|
|
|
7342
7727
|
|
|
7343
7728
|
UPB_INLINE void envoy_config_route_v3_Decorator_set_operation(envoy_config_route_v3_Decorator *msg, upb_StringView value) {
|
|
7344
7729
|
const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7345
|
-
|
|
7730
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7346
7731
|
}
|
|
7347
7732
|
UPB_INLINE void envoy_config_route_v3_Decorator_set_propagate(envoy_config_route_v3_Decorator *msg, struct google_protobuf_BoolValue* value) {
|
|
7348
7733
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7349
|
-
|
|
7734
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
7735
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7350
7736
|
}
|
|
7351
7737
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_Decorator_mutable_propagate(envoy_config_route_v3_Decorator* msg, upb_Arena* arena) {
|
|
7352
7738
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_Decorator_propagate(msg);
|
|
@@ -7401,6 +7787,7 @@ UPB_INLINE const struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_T
|
|
|
7401
7787
|
const struct envoy_type_v3_FractionalPercent* default_val = NULL;
|
|
7402
7788
|
const struct envoy_type_v3_FractionalPercent* ret;
|
|
7403
7789
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7790
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7404
7791
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7405
7792
|
&default_val, &ret);
|
|
7406
7793
|
return ret;
|
|
@@ -7417,6 +7804,7 @@ UPB_INLINE const struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_T
|
|
|
7417
7804
|
const struct envoy_type_v3_FractionalPercent* default_val = NULL;
|
|
7418
7805
|
const struct envoy_type_v3_FractionalPercent* ret;
|
|
7419
7806
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7807
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7420
7808
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7421
7809
|
&default_val, &ret);
|
|
7422
7810
|
return ret;
|
|
@@ -7433,6 +7821,7 @@ UPB_INLINE const struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_T
|
|
|
7433
7821
|
const struct envoy_type_v3_FractionalPercent* default_val = NULL;
|
|
7434
7822
|
const struct envoy_type_v3_FractionalPercent* ret;
|
|
7435
7823
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7824
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7436
7825
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7437
7826
|
&default_val, &ret);
|
|
7438
7827
|
return ret;
|
|
@@ -7447,6 +7836,7 @@ UPB_INLINE void envoy_config_route_v3_Tracing_clear_custom_tags(envoy_config_rou
|
|
|
7447
7836
|
}
|
|
7448
7837
|
UPB_INLINE const struct envoy_type_tracing_v3_CustomTag* const* envoy_config_route_v3_Tracing_custom_tags(const envoy_config_route_v3_Tracing* msg, size_t* size) {
|
|
7449
7838
|
const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7839
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7450
7840
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7451
7841
|
if (arr) {
|
|
7452
7842
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -7458,6 +7848,7 @@ UPB_INLINE const struct envoy_type_tracing_v3_CustomTag* const* envoy_config_rou
|
|
|
7458
7848
|
}
|
|
7459
7849
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_Tracing_custom_tags_upb_array(const envoy_config_route_v3_Tracing* msg, size_t* size) {
|
|
7460
7850
|
const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7851
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7461
7852
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7462
7853
|
if (size) {
|
|
7463
7854
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -7466,6 +7857,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_Tracing_custom_tags_upb_array
|
|
|
7466
7857
|
}
|
|
7467
7858
|
UPB_INLINE upb_Array* _envoy_config_route_v3_Tracing_custom_tags_mutable_upb_array(envoy_config_route_v3_Tracing* msg, size_t* size, upb_Arena* arena) {
|
|
7468
7859
|
const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7860
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7469
7861
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
7470
7862
|
&field, arena);
|
|
7471
7863
|
if (size) {
|
|
@@ -7476,7 +7868,8 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_Tracing_custom_tags_mutable_upb_arr
|
|
|
7476
7868
|
|
|
7477
7869
|
UPB_INLINE void envoy_config_route_v3_Tracing_set_client_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
|
|
7478
7870
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7479
|
-
|
|
7871
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7872
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7480
7873
|
}
|
|
7481
7874
|
UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_mutable_client_sampling(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
|
|
7482
7875
|
struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_Tracing_client_sampling(msg);
|
|
@@ -7488,7 +7881,8 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
|
|
|
7488
7881
|
}
|
|
7489
7882
|
UPB_INLINE void envoy_config_route_v3_Tracing_set_random_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
|
|
7490
7883
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7491
|
-
|
|
7884
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7885
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7492
7886
|
}
|
|
7493
7887
|
UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_mutable_random_sampling(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
|
|
7494
7888
|
struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_Tracing_random_sampling(msg);
|
|
@@ -7500,7 +7894,8 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
|
|
|
7500
7894
|
}
|
|
7501
7895
|
UPB_INLINE void envoy_config_route_v3_Tracing_set_overall_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
|
|
7502
7896
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7503
|
-
|
|
7897
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7898
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7504
7899
|
}
|
|
7505
7900
|
UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_mutable_overall_sampling(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
|
|
7506
7901
|
struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_Tracing_overall_sampling(msg);
|
|
@@ -7512,6 +7907,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
|
|
|
7512
7907
|
}
|
|
7513
7908
|
UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_config_route_v3_Tracing_mutable_custom_tags(envoy_config_route_v3_Tracing* msg, size_t* size) {
|
|
7514
7909
|
upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7910
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7515
7911
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
7516
7912
|
if (arr) {
|
|
7517
7913
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -7528,6 +7924,7 @@ UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_config_route_v3_Tracin
|
|
|
7528
7924
|
}
|
|
7529
7925
|
UPB_INLINE struct envoy_type_tracing_v3_CustomTag* envoy_config_route_v3_Tracing_add_custom_tags(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
|
|
7530
7926
|
upb_MiniTableField field = {4, UPB_SIZE(24, 40), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7927
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7531
7928
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
7532
7929
|
UPB_UPCAST(msg), &field, arena);
|
|
7533
7930
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -7595,6 +7992,7 @@ UPB_INLINE void envoy_config_route_v3_VirtualCluster_clear_headers(envoy_config_
|
|
|
7595
7992
|
}
|
|
7596
7993
|
UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_v3_VirtualCluster_headers(const envoy_config_route_v3_VirtualCluster* msg, size_t* size) {
|
|
7597
7994
|
const upb_MiniTableField field = {4, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7995
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
7598
7996
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7599
7997
|
if (arr) {
|
|
7600
7998
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -7606,6 +8004,7 @@ UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_
|
|
|
7606
8004
|
}
|
|
7607
8005
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualCluster_headers_upb_array(const envoy_config_route_v3_VirtualCluster* msg, size_t* size) {
|
|
7608
8006
|
const upb_MiniTableField field = {4, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8007
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
7609
8008
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7610
8009
|
if (size) {
|
|
7611
8010
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -7614,6 +8013,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_VirtualCluster_headers_upb_ar
|
|
|
7614
8013
|
}
|
|
7615
8014
|
UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualCluster_headers_mutable_upb_array(envoy_config_route_v3_VirtualCluster* msg, size_t* size, upb_Arena* arena) {
|
|
7616
8015
|
const upb_MiniTableField field = {4, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8016
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
7617
8017
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
7618
8018
|
&field, arena);
|
|
7619
8019
|
if (size) {
|
|
@@ -7624,10 +8024,11 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualCluster_headers_mutable_upb_
|
|
|
7624
8024
|
|
|
7625
8025
|
UPB_INLINE void envoy_config_route_v3_VirtualCluster_set_name(envoy_config_route_v3_VirtualCluster *msg, upb_StringView value) {
|
|
7626
8026
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7627
|
-
|
|
8027
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7628
8028
|
}
|
|
7629
8029
|
UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_VirtualCluster_mutable_headers(envoy_config_route_v3_VirtualCluster* msg, size_t* size) {
|
|
7630
8030
|
upb_MiniTableField field = {4, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8031
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
7631
8032
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
7632
8033
|
if (arr) {
|
|
7633
8034
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -7644,6 +8045,7 @@ UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_VirtualCl
|
|
|
7644
8045
|
}
|
|
7645
8046
|
UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_VirtualCluster_add_headers(envoy_config_route_v3_VirtualCluster* msg, upb_Arena* arena) {
|
|
7646
8047
|
upb_MiniTableField field = {4, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8048
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
7647
8049
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
7648
8050
|
UPB_UPCAST(msg), &field, arena);
|
|
7649
8051
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -7701,6 +8103,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_RateL
|
|
|
7701
8103
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
7702
8104
|
const struct google_protobuf_UInt32Value* ret;
|
|
7703
8105
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8106
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
7704
8107
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7705
8108
|
&default_val, &ret);
|
|
7706
8109
|
return ret;
|
|
@@ -7710,13 +8113,13 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_has_stage(const envoy_config_rou
|
|
|
7710
8113
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
7711
8114
|
}
|
|
7712
8115
|
UPB_INLINE void envoy_config_route_v3_RateLimit_clear_disable_key(envoy_config_route_v3_RateLimit* msg) {
|
|
7713
|
-
const upb_MiniTableField field = {2, 24, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8116
|
+
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7714
8117
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
7715
8118
|
}
|
|
7716
8119
|
UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_disable_key(const envoy_config_route_v3_RateLimit* msg) {
|
|
7717
8120
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
7718
8121
|
upb_StringView ret;
|
|
7719
|
-
const upb_MiniTableField field = {2, 24, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8122
|
+
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7720
8123
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7721
8124
|
&default_val, &ret);
|
|
7722
8125
|
return ret;
|
|
@@ -7727,6 +8130,7 @@ UPB_INLINE void envoy_config_route_v3_RateLimit_clear_actions(envoy_config_route
|
|
|
7727
8130
|
}
|
|
7728
8131
|
UPB_INLINE const envoy_config_route_v3_RateLimit_Action* const* envoy_config_route_v3_RateLimit_actions(const envoy_config_route_v3_RateLimit* msg, size_t* size) {
|
|
7729
8132
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8133
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action_msg_init);
|
|
7730
8134
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7731
8135
|
if (arr) {
|
|
7732
8136
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -7738,6 +8142,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action* const* envoy_config_rou
|
|
|
7738
8142
|
}
|
|
7739
8143
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RateLimit_actions_upb_array(const envoy_config_route_v3_RateLimit* msg, size_t* size) {
|
|
7740
8144
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8145
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action_msg_init);
|
|
7741
8146
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7742
8147
|
if (size) {
|
|
7743
8148
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -7746,6 +8151,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RateLimit_actions_upb_array(c
|
|
|
7746
8151
|
}
|
|
7747
8152
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RateLimit_actions_mutable_upb_array(envoy_config_route_v3_RateLimit* msg, size_t* size, upb_Arena* arena) {
|
|
7748
8153
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8154
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action_msg_init);
|
|
7749
8155
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
7750
8156
|
&field, arena);
|
|
7751
8157
|
if (size) {
|
|
@@ -7761,6 +8167,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Override* envoy_config_route_v3
|
|
|
7761
8167
|
const envoy_config_route_v3_RateLimit_Override* default_val = NULL;
|
|
7762
8168
|
const envoy_config_route_v3_RateLimit_Override* ret;
|
|
7763
8169
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8170
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Override_msg_init);
|
|
7764
8171
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7765
8172
|
&default_val, &ret);
|
|
7766
8173
|
return ret;
|
|
@@ -7769,10 +8176,40 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_has_limit(const envoy_config_rou
|
|
|
7769
8176
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7770
8177
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
7771
8178
|
}
|
|
8179
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_clear_hits_addend(envoy_config_route_v3_RateLimit* msg) {
|
|
8180
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 66, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8181
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
8182
|
+
}
|
|
8183
|
+
UPB_INLINE const envoy_config_route_v3_RateLimit_HitsAddend* envoy_config_route_v3_RateLimit_hits_addend(const envoy_config_route_v3_RateLimit* msg) {
|
|
8184
|
+
const envoy_config_route_v3_RateLimit_HitsAddend* default_val = NULL;
|
|
8185
|
+
const envoy_config_route_v3_RateLimit_HitsAddend* ret;
|
|
8186
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 66, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8187
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__HitsAddend_msg_init);
|
|
8188
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8189
|
+
&default_val, &ret);
|
|
8190
|
+
return ret;
|
|
8191
|
+
}
|
|
8192
|
+
UPB_INLINE bool envoy_config_route_v3_RateLimit_has_hits_addend(const envoy_config_route_v3_RateLimit* msg) {
|
|
8193
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 66, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8194
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
8195
|
+
}
|
|
8196
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_clear_apply_on_stream_done(envoy_config_route_v3_RateLimit* msg) {
|
|
8197
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
8198
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
8199
|
+
}
|
|
8200
|
+
UPB_INLINE bool envoy_config_route_v3_RateLimit_apply_on_stream_done(const envoy_config_route_v3_RateLimit* msg) {
|
|
8201
|
+
bool default_val = false;
|
|
8202
|
+
bool ret;
|
|
8203
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
8204
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8205
|
+
&default_val, &ret);
|
|
8206
|
+
return ret;
|
|
8207
|
+
}
|
|
7772
8208
|
|
|
7773
8209
|
UPB_INLINE void envoy_config_route_v3_RateLimit_set_stage(envoy_config_route_v3_RateLimit *msg, struct google_protobuf_UInt32Value* value) {
|
|
7774
8210
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7775
|
-
|
|
8211
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
8212
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7776
8213
|
}
|
|
7777
8214
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_mutable_stage(envoy_config_route_v3_RateLimit* msg, upb_Arena* arena) {
|
|
7778
8215
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RateLimit_stage(msg);
|
|
@@ -7783,11 +8220,12 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_m
|
|
|
7783
8220
|
return sub;
|
|
7784
8221
|
}
|
|
7785
8222
|
UPB_INLINE void envoy_config_route_v3_RateLimit_set_disable_key(envoy_config_route_v3_RateLimit *msg, upb_StringView value) {
|
|
7786
|
-
const upb_MiniTableField field = {2, 24, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
7787
|
-
|
|
8223
|
+
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8224
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7788
8225
|
}
|
|
7789
8226
|
UPB_INLINE envoy_config_route_v3_RateLimit_Action** envoy_config_route_v3_RateLimit_mutable_actions(envoy_config_route_v3_RateLimit* msg, size_t* size) {
|
|
7790
8227
|
upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8228
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action_msg_init);
|
|
7791
8229
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
7792
8230
|
if (arr) {
|
|
7793
8231
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -7804,6 +8242,7 @@ UPB_INLINE envoy_config_route_v3_RateLimit_Action** envoy_config_route_v3_RateLi
|
|
|
7804
8242
|
}
|
|
7805
8243
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action* envoy_config_route_v3_RateLimit_add_actions(envoy_config_route_v3_RateLimit* msg, upb_Arena* arena) {
|
|
7806
8244
|
upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8245
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action_msg_init);
|
|
7807
8246
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
7808
8247
|
UPB_UPCAST(msg), &field, arena);
|
|
7809
8248
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -7818,7 +8257,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action* envoy_config_route_v3_
|
|
|
7818
8257
|
}
|
|
7819
8258
|
UPB_INLINE void envoy_config_route_v3_RateLimit_set_limit(envoy_config_route_v3_RateLimit *msg, envoy_config_route_v3_RateLimit_Override* value) {
|
|
7820
8259
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7821
|
-
|
|
8260
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Override_msg_init);
|
|
8261
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7822
8262
|
}
|
|
7823
8263
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Override* envoy_config_route_v3_RateLimit_mutable_limit(envoy_config_route_v3_RateLimit* msg, upb_Arena* arena) {
|
|
7824
8264
|
struct envoy_config_route_v3_RateLimit_Override* sub = (struct envoy_config_route_v3_RateLimit_Override*)envoy_config_route_v3_RateLimit_limit(msg);
|
|
@@ -7828,6 +8268,23 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Override* envoy_config_route_v
|
|
|
7828
8268
|
}
|
|
7829
8269
|
return sub;
|
|
7830
8270
|
}
|
|
8271
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_set_hits_addend(envoy_config_route_v3_RateLimit *msg, envoy_config_route_v3_RateLimit_HitsAddend* value) {
|
|
8272
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 66, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8273
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__HitsAddend_msg_init);
|
|
8274
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8275
|
+
}
|
|
8276
|
+
UPB_INLINE struct envoy_config_route_v3_RateLimit_HitsAddend* envoy_config_route_v3_RateLimit_mutable_hits_addend(envoy_config_route_v3_RateLimit* msg, upb_Arena* arena) {
|
|
8277
|
+
struct envoy_config_route_v3_RateLimit_HitsAddend* sub = (struct envoy_config_route_v3_RateLimit_HitsAddend*)envoy_config_route_v3_RateLimit_hits_addend(msg);
|
|
8278
|
+
if (sub == NULL) {
|
|
8279
|
+
sub = (struct envoy_config_route_v3_RateLimit_HitsAddend*)_upb_Message_New(&envoy__config__route__v3__RateLimit__HitsAddend_msg_init, arena);
|
|
8280
|
+
if (sub) envoy_config_route_v3_RateLimit_set_hits_addend(msg, sub);
|
|
8281
|
+
}
|
|
8282
|
+
return sub;
|
|
8283
|
+
}
|
|
8284
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_set_apply_on_stream_done(envoy_config_route_v3_RateLimit *msg, bool value) {
|
|
8285
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
8286
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8287
|
+
}
|
|
7831
8288
|
|
|
7832
8289
|
/* envoy.config.route.v3.RateLimit.Action */
|
|
7833
8290
|
|
|
@@ -7892,6 +8349,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_SourceCluster* envoy_con
|
|
|
7892
8349
|
const envoy_config_route_v3_RateLimit_Action_SourceCluster* default_val = NULL;
|
|
7893
8350
|
const envoy_config_route_v3_RateLimit_Action_SourceCluster* ret;
|
|
7894
8351
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8352
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__SourceCluster_msg_init);
|
|
7895
8353
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7896
8354
|
&default_val, &ret);
|
|
7897
8355
|
return ret;
|
|
@@ -7908,6 +8366,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_DestinationCluster* envo
|
|
|
7908
8366
|
const envoy_config_route_v3_RateLimit_Action_DestinationCluster* default_val = NULL;
|
|
7909
8367
|
const envoy_config_route_v3_RateLimit_Action_DestinationCluster* ret;
|
|
7910
8368
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8369
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__DestinationCluster_msg_init);
|
|
7911
8370
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7912
8371
|
&default_val, &ret);
|
|
7913
8372
|
return ret;
|
|
@@ -7924,6 +8383,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_RequestHeaders* envoy_co
|
|
|
7924
8383
|
const envoy_config_route_v3_RateLimit_Action_RequestHeaders* default_val = NULL;
|
|
7925
8384
|
const envoy_config_route_v3_RateLimit_Action_RequestHeaders* ret;
|
|
7926
8385
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), -9, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8386
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__RequestHeaders_msg_init);
|
|
7927
8387
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7928
8388
|
&default_val, &ret);
|
|
7929
8389
|
return ret;
|
|
@@ -7940,6 +8400,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_RemoteAddress* envoy_con
|
|
|
7940
8400
|
const envoy_config_route_v3_RateLimit_Action_RemoteAddress* default_val = NULL;
|
|
7941
8401
|
const envoy_config_route_v3_RateLimit_Action_RemoteAddress* ret;
|
|
7942
8402
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 16), -9, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8403
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__RemoteAddress_msg_init);
|
|
7943
8404
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7944
8405
|
&default_val, &ret);
|
|
7945
8406
|
return ret;
|
|
@@ -7956,6 +8417,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_GenericKey* envoy_config
|
|
|
7956
8417
|
const envoy_config_route_v3_RateLimit_Action_GenericKey* default_val = NULL;
|
|
7957
8418
|
const envoy_config_route_v3_RateLimit_Action_GenericKey* ret;
|
|
7958
8419
|
const upb_MiniTableField field = {5, UPB_SIZE(12, 16), -9, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8420
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__GenericKey_msg_init);
|
|
7959
8421
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7960
8422
|
&default_val, &ret);
|
|
7961
8423
|
return ret;
|
|
@@ -7972,6 +8434,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* envoy_
|
|
|
7972
8434
|
const envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* default_val = NULL;
|
|
7973
8435
|
const envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* ret;
|
|
7974
8436
|
const upb_MiniTableField field = {6, UPB_SIZE(12, 16), -9, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8437
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__HeaderValueMatch_msg_init);
|
|
7975
8438
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7976
8439
|
&default_val, &ret);
|
|
7977
8440
|
return ret;
|
|
@@ -7988,6 +8451,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_DynamicMetaData* envoy_c
|
|
|
7988
8451
|
const envoy_config_route_v3_RateLimit_Action_DynamicMetaData* default_val = NULL;
|
|
7989
8452
|
const envoy_config_route_v3_RateLimit_Action_DynamicMetaData* ret;
|
|
7990
8453
|
const upb_MiniTableField field = {7, UPB_SIZE(12, 16), -9, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8454
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__DynamicMetaData_msg_init);
|
|
7991
8455
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7992
8456
|
&default_val, &ret);
|
|
7993
8457
|
return ret;
|
|
@@ -8004,6 +8468,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_MetaData* envoy_config_r
|
|
|
8004
8468
|
const envoy_config_route_v3_RateLimit_Action_MetaData* default_val = NULL;
|
|
8005
8469
|
const envoy_config_route_v3_RateLimit_Action_MetaData* ret;
|
|
8006
8470
|
const upb_MiniTableField field = {8, UPB_SIZE(12, 16), -9, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8471
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__MetaData_msg_init);
|
|
8007
8472
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8008
8473
|
&default_val, &ret);
|
|
8009
8474
|
return ret;
|
|
@@ -8020,6 +8485,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_
|
|
|
8020
8485
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
8021
8486
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
8022
8487
|
const upb_MiniTableField field = {9, UPB_SIZE(12, 16), -9, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8488
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
8023
8489
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8024
8490
|
&default_val, &ret);
|
|
8025
8491
|
return ret;
|
|
@@ -8036,6 +8502,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* env
|
|
|
8036
8502
|
const envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* default_val = NULL;
|
|
8037
8503
|
const envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* ret;
|
|
8038
8504
|
const upb_MiniTableField field = {10, UPB_SIZE(12, 16), -9, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8505
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__MaskedRemoteAddress_msg_init);
|
|
8039
8506
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8040
8507
|
&default_val, &ret);
|
|
8041
8508
|
return ret;
|
|
@@ -8052,6 +8519,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch
|
|
|
8052
8519
|
const envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* default_val = NULL;
|
|
8053
8520
|
const envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* ret;
|
|
8054
8521
|
const upb_MiniTableField field = {11, UPB_SIZE(12, 16), -9, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8522
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__QueryParameterValueMatch_msg_init);
|
|
8055
8523
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8056
8524
|
&default_val, &ret);
|
|
8057
8525
|
return ret;
|
|
@@ -8063,7 +8531,8 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_has_query_parameter_value
|
|
|
8063
8531
|
|
|
8064
8532
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_source_cluster(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_SourceCluster* value) {
|
|
8065
8533
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8066
|
-
|
|
8534
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__SourceCluster_msg_init);
|
|
8535
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8067
8536
|
}
|
|
8068
8537
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_SourceCluster* envoy_config_route_v3_RateLimit_Action_mutable_source_cluster(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8069
8538
|
struct envoy_config_route_v3_RateLimit_Action_SourceCluster* sub = (struct envoy_config_route_v3_RateLimit_Action_SourceCluster*)envoy_config_route_v3_RateLimit_Action_source_cluster(msg);
|
|
@@ -8075,7 +8544,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_SourceCluster* envoy_co
|
|
|
8075
8544
|
}
|
|
8076
8545
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_destination_cluster(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_DestinationCluster* value) {
|
|
8077
8546
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8078
|
-
|
|
8547
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__DestinationCluster_msg_init);
|
|
8548
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8079
8549
|
}
|
|
8080
8550
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DestinationCluster* envoy_config_route_v3_RateLimit_Action_mutable_destination_cluster(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8081
8551
|
struct envoy_config_route_v3_RateLimit_Action_DestinationCluster* sub = (struct envoy_config_route_v3_RateLimit_Action_DestinationCluster*)envoy_config_route_v3_RateLimit_Action_destination_cluster(msg);
|
|
@@ -8087,7 +8557,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DestinationCluster* env
|
|
|
8087
8557
|
}
|
|
8088
8558
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_request_headers(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_RequestHeaders* value) {
|
|
8089
8559
|
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), -9, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8090
|
-
|
|
8560
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__RequestHeaders_msg_init);
|
|
8561
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8091
8562
|
}
|
|
8092
8563
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RequestHeaders* envoy_config_route_v3_RateLimit_Action_mutable_request_headers(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8093
8564
|
struct envoy_config_route_v3_RateLimit_Action_RequestHeaders* sub = (struct envoy_config_route_v3_RateLimit_Action_RequestHeaders*)envoy_config_route_v3_RateLimit_Action_request_headers(msg);
|
|
@@ -8099,7 +8570,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RequestHeaders* envoy_c
|
|
|
8099
8570
|
}
|
|
8100
8571
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_remote_address(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_RemoteAddress* value) {
|
|
8101
8572
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 16), -9, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8102
|
-
|
|
8573
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__RemoteAddress_msg_init);
|
|
8574
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8103
8575
|
}
|
|
8104
8576
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RemoteAddress* envoy_config_route_v3_RateLimit_Action_mutable_remote_address(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8105
8577
|
struct envoy_config_route_v3_RateLimit_Action_RemoteAddress* sub = (struct envoy_config_route_v3_RateLimit_Action_RemoteAddress*)envoy_config_route_v3_RateLimit_Action_remote_address(msg);
|
|
@@ -8111,7 +8583,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RemoteAddress* envoy_co
|
|
|
8111
8583
|
}
|
|
8112
8584
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_generic_key(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_GenericKey* value) {
|
|
8113
8585
|
const upb_MiniTableField field = {5, UPB_SIZE(12, 16), -9, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8114
|
-
|
|
8586
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__GenericKey_msg_init);
|
|
8587
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8115
8588
|
}
|
|
8116
8589
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_GenericKey* envoy_config_route_v3_RateLimit_Action_mutable_generic_key(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8117
8590
|
struct envoy_config_route_v3_RateLimit_Action_GenericKey* sub = (struct envoy_config_route_v3_RateLimit_Action_GenericKey*)envoy_config_route_v3_RateLimit_Action_generic_key(msg);
|
|
@@ -8123,7 +8596,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_GenericKey* envoy_confi
|
|
|
8123
8596
|
}
|
|
8124
8597
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_header_value_match(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* value) {
|
|
8125
8598
|
const upb_MiniTableField field = {6, UPB_SIZE(12, 16), -9, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8126
|
-
|
|
8599
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__HeaderValueMatch_msg_init);
|
|
8600
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8127
8601
|
}
|
|
8128
8602
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* envoy_config_route_v3_RateLimit_Action_mutable_header_value_match(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8129
8603
|
struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* sub = (struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch*)envoy_config_route_v3_RateLimit_Action_header_value_match(msg);
|
|
@@ -8135,7 +8609,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* envoy
|
|
|
8135
8609
|
}
|
|
8136
8610
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_dynamic_metadata(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_DynamicMetaData* value) {
|
|
8137
8611
|
const upb_MiniTableField field = {7, UPB_SIZE(12, 16), -9, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8138
|
-
|
|
8612
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__DynamicMetaData_msg_init);
|
|
8613
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8139
8614
|
}
|
|
8140
8615
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData* envoy_config_route_v3_RateLimit_Action_mutable_dynamic_metadata(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8141
8616
|
struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData* sub = (struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData*)envoy_config_route_v3_RateLimit_Action_dynamic_metadata(msg);
|
|
@@ -8147,7 +8622,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData* envoy_
|
|
|
8147
8622
|
}
|
|
8148
8623
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_metadata(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_MetaData* value) {
|
|
8149
8624
|
const upb_MiniTableField field = {8, UPB_SIZE(12, 16), -9, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8150
|
-
|
|
8625
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__MetaData_msg_init);
|
|
8626
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8151
8627
|
}
|
|
8152
8628
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MetaData* envoy_config_route_v3_RateLimit_Action_mutable_metadata(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8153
8629
|
struct envoy_config_route_v3_RateLimit_Action_MetaData* sub = (struct envoy_config_route_v3_RateLimit_Action_MetaData*)envoy_config_route_v3_RateLimit_Action_metadata(msg);
|
|
@@ -8159,7 +8635,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MetaData* envoy_config_
|
|
|
8159
8635
|
}
|
|
8160
8636
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_extension(envoy_config_route_v3_RateLimit_Action *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
8161
8637
|
const upb_MiniTableField field = {9, UPB_SIZE(12, 16), -9, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8162
|
-
|
|
8638
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
8639
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8163
8640
|
}
|
|
8164
8641
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RateLimit_Action_mutable_extension(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8165
8642
|
struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RateLimit_Action_extension(msg);
|
|
@@ -8171,7 +8648,8 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
8171
8648
|
}
|
|
8172
8649
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_masked_remote_address(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* value) {
|
|
8173
8650
|
const upb_MiniTableField field = {10, UPB_SIZE(12, 16), -9, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8174
|
-
|
|
8651
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__MaskedRemoteAddress_msg_init);
|
|
8652
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8175
8653
|
}
|
|
8176
8654
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* envoy_config_route_v3_RateLimit_Action_mutable_masked_remote_address(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8177
8655
|
struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* sub = (struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress*)envoy_config_route_v3_RateLimit_Action_masked_remote_address(msg);
|
|
@@ -8183,7 +8661,8 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* en
|
|
|
8183
8661
|
}
|
|
8184
8662
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_query_parameter_value_match(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* value) {
|
|
8185
8663
|
const upb_MiniTableField field = {11, UPB_SIZE(12, 16), -9, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8186
|
-
|
|
8664
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Action__QueryParameterValueMatch_msg_init);
|
|
8665
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8187
8666
|
}
|
|
8188
8667
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* envoy_config_route_v3_RateLimit_Action_mutable_query_parameter_value_match(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
|
|
8189
8668
|
struct envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* sub = (struct envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch*)envoy_config_route_v3_RateLimit_Action_query_parameter_value_match(msg);
|
|
@@ -8345,15 +8824,15 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_RequestHeaders_skip_if_ab
|
|
|
8345
8824
|
|
|
8346
8825
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_RequestHeaders_set_header_name(envoy_config_route_v3_RateLimit_Action_RequestHeaders *msg, upb_StringView value) {
|
|
8347
8826
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8348
|
-
|
|
8827
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8349
8828
|
}
|
|
8350
8829
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_RequestHeaders_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_RequestHeaders *msg, upb_StringView value) {
|
|
8351
8830
|
const upb_MiniTableField field = {2, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8352
|
-
|
|
8831
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8353
8832
|
}
|
|
8354
8833
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_RequestHeaders_set_skip_if_absent(envoy_config_route_v3_RateLimit_Action_RequestHeaders *msg, bool value) {
|
|
8355
8834
|
const upb_MiniTableField field = {3, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
8356
|
-
|
|
8835
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8357
8836
|
}
|
|
8358
8837
|
|
|
8359
8838
|
/* envoy.config.route.v3.RateLimit.Action.RemoteAddress */
|
|
@@ -8438,6 +8917,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_RateL
|
|
|
8438
8917
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
8439
8918
|
const struct google_protobuf_UInt32Value* ret;
|
|
8440
8919
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8920
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
8441
8921
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8442
8922
|
&default_val, &ret);
|
|
8443
8923
|
return ret;
|
|
@@ -8454,6 +8934,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_RateL
|
|
|
8454
8934
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
8455
8935
|
const struct google_protobuf_UInt32Value* ret;
|
|
8456
8936
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8937
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
8457
8938
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8458
8939
|
&default_val, &ret);
|
|
8459
8940
|
return ret;
|
|
@@ -8465,7 +8946,8 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_has_v
|
|
|
8465
8946
|
|
|
8466
8947
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_set_v4_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress *msg, struct google_protobuf_UInt32Value* value) {
|
|
8467
8948
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8468
|
-
|
|
8949
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
8950
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8469
8951
|
}
|
|
8470
8952
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_mutable_v4_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* msg, upb_Arena* arena) {
|
|
8471
8953
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_v4_prefix_mask_len(msg);
|
|
@@ -8477,7 +8959,8 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_A
|
|
|
8477
8959
|
}
|
|
8478
8960
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_set_v6_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress *msg, struct google_protobuf_UInt32Value* value) {
|
|
8479
8961
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8480
|
-
|
|
8962
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
8963
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8481
8964
|
}
|
|
8482
8965
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_mutable_v6_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* msg, upb_Arena* arena) {
|
|
8483
8966
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_v6_prefix_mask_len(msg);
|
|
@@ -8551,11 +9034,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_GenericKey_desc
|
|
|
8551
9034
|
|
|
8552
9035
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_GenericKey_set_descriptor_value(envoy_config_route_v3_RateLimit_Action_GenericKey *msg, upb_StringView value) {
|
|
8553
9036
|
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8554
|
-
|
|
9037
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8555
9038
|
}
|
|
8556
9039
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_GenericKey_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_GenericKey *msg, upb_StringView value) {
|
|
8557
9040
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8558
|
-
|
|
9041
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8559
9042
|
}
|
|
8560
9043
|
|
|
8561
9044
|
/* envoy.config.route.v3.RateLimit.Action.HeaderValueMatch */
|
|
@@ -8614,6 +9097,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RateLim
|
|
|
8614
9097
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
8615
9098
|
const struct google_protobuf_BoolValue* ret;
|
|
8616
9099
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9100
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
8617
9101
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8618
9102
|
&default_val, &ret);
|
|
8619
9103
|
return ret;
|
|
@@ -8628,6 +9112,7 @@ UPB_INLINE void envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_clear_he
|
|
|
8628
9112
|
}
|
|
8629
9113
|
UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_headers(const envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* msg, size_t* size) {
|
|
8630
9114
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9115
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
8631
9116
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
8632
9117
|
if (arr) {
|
|
8633
9118
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -8639,6 +9124,7 @@ UPB_INLINE const envoy_config_route_v3_HeaderMatcher* const* envoy_config_route_
|
|
|
8639
9124
|
}
|
|
8640
9125
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_headers_upb_array(const envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* msg, size_t* size) {
|
|
8641
9126
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9127
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
8642
9128
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
8643
9129
|
if (size) {
|
|
8644
9130
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -8647,6 +9133,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RateLimit_Action_HeaderValueM
|
|
|
8647
9133
|
}
|
|
8648
9134
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_headers_mutable_upb_array(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* msg, size_t* size, upb_Arena* arena) {
|
|
8649
9135
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9136
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
8650
9137
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
8651
9138
|
&field, arena);
|
|
8652
9139
|
if (size) {
|
|
@@ -8669,11 +9156,12 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_HeaderValueMatc
|
|
|
8669
9156
|
|
|
8670
9157
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_set_descriptor_value(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch *msg, upb_StringView value) {
|
|
8671
9158
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8672
|
-
|
|
9159
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8673
9160
|
}
|
|
8674
9161
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_set_expect_match(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch *msg, struct google_protobuf_BoolValue* value) {
|
|
8675
9162
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8676
|
-
|
|
9163
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
9164
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8677
9165
|
}
|
|
8678
9166
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_mutable_expect_match(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* msg, upb_Arena* arena) {
|
|
8679
9167
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_expect_match(msg);
|
|
@@ -8685,6 +9173,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RateLimit_Act
|
|
|
8685
9173
|
}
|
|
8686
9174
|
UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_mutable_headers(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* msg, size_t* size) {
|
|
8687
9175
|
upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9176
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
8688
9177
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
8689
9178
|
if (arr) {
|
|
8690
9179
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -8701,6 +9190,7 @@ UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_RateLimit
|
|
|
8701
9190
|
}
|
|
8702
9191
|
UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_add_headers(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* msg, upb_Arena* arena) {
|
|
8703
9192
|
upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9193
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HeaderMatcher_msg_init);
|
|
8704
9194
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
8705
9195
|
UPB_UPCAST(msg), &field, arena);
|
|
8706
9196
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -8715,7 +9205,7 @@ UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_Rat
|
|
|
8715
9205
|
}
|
|
8716
9206
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch *msg, upb_StringView value) {
|
|
8717
9207
|
const upb_MiniTableField field = {4, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8718
|
-
|
|
9208
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8719
9209
|
}
|
|
8720
9210
|
|
|
8721
9211
|
/* envoy.config.route.v3.RateLimit.Action.DynamicMetaData */
|
|
@@ -8774,6 +9264,7 @@ UPB_INLINE const struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v
|
|
|
8774
9264
|
const struct envoy_type_metadata_v3_MetadataKey* default_val = NULL;
|
|
8775
9265
|
const struct envoy_type_metadata_v3_MetadataKey* ret;
|
|
8776
9266
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9267
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__metadata__v3__MetadataKey_msg_init);
|
|
8777
9268
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8778
9269
|
&default_val, &ret);
|
|
8779
9270
|
return ret;
|
|
@@ -8797,11 +9288,12 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_DynamicMetaData
|
|
|
8797
9288
|
|
|
8798
9289
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_DynamicMetaData_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_DynamicMetaData *msg, upb_StringView value) {
|
|
8799
9290
|
const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8800
|
-
|
|
9291
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8801
9292
|
}
|
|
8802
9293
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_DynamicMetaData_set_metadata_key(envoy_config_route_v3_RateLimit_Action_DynamicMetaData *msg, struct envoy_type_metadata_v3_MetadataKey* value) {
|
|
8803
9294
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8804
|
-
|
|
9295
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__metadata__v3__MetadataKey_msg_init);
|
|
9296
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8805
9297
|
}
|
|
8806
9298
|
UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_RateLimit_Action_DynamicMetaData_mutable_metadata_key(envoy_config_route_v3_RateLimit_Action_DynamicMetaData* msg, upb_Arena* arena) {
|
|
8807
9299
|
struct envoy_type_metadata_v3_MetadataKey* sub = (struct envoy_type_metadata_v3_MetadataKey*)envoy_config_route_v3_RateLimit_Action_DynamicMetaData_metadata_key(msg);
|
|
@@ -8813,7 +9305,7 @@ UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_Rate
|
|
|
8813
9305
|
}
|
|
8814
9306
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_DynamicMetaData_set_default_value(envoy_config_route_v3_RateLimit_Action_DynamicMetaData *msg, upb_StringView value) {
|
|
8815
9307
|
const upb_MiniTableField field = {3, UPB_SIZE(24, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8816
|
-
|
|
9308
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8817
9309
|
}
|
|
8818
9310
|
|
|
8819
9311
|
/* envoy.config.route.v3.RateLimit.Action.MetaData */
|
|
@@ -8872,6 +9364,7 @@ UPB_INLINE const struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v
|
|
|
8872
9364
|
const struct envoy_type_metadata_v3_MetadataKey* default_val = NULL;
|
|
8873
9365
|
const struct envoy_type_metadata_v3_MetadataKey* ret;
|
|
8874
9366
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9367
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__metadata__v3__MetadataKey_msg_init);
|
|
8875
9368
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8876
9369
|
&default_val, &ret);
|
|
8877
9370
|
return ret;
|
|
@@ -8919,11 +9412,12 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_MetaData_skip_if_absent(c
|
|
|
8919
9412
|
|
|
8920
9413
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_MetaData *msg, upb_StringView value) {
|
|
8921
9414
|
const upb_MiniTableField field = {1, 24, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8922
|
-
|
|
9415
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8923
9416
|
}
|
|
8924
9417
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_metadata_key(envoy_config_route_v3_RateLimit_Action_MetaData *msg, struct envoy_type_metadata_v3_MetadataKey* value) {
|
|
8925
9418
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
8926
|
-
|
|
9419
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__metadata__v3__MetadataKey_msg_init);
|
|
9420
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8927
9421
|
}
|
|
8928
9422
|
UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_RateLimit_Action_MetaData_mutable_metadata_key(envoy_config_route_v3_RateLimit_Action_MetaData* msg, upb_Arena* arena) {
|
|
8929
9423
|
struct envoy_type_metadata_v3_MetadataKey* sub = (struct envoy_type_metadata_v3_MetadataKey*)envoy_config_route_v3_RateLimit_Action_MetaData_metadata_key(msg);
|
|
@@ -8935,15 +9429,15 @@ UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_Rate
|
|
|
8935
9429
|
}
|
|
8936
9430
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_default_value(envoy_config_route_v3_RateLimit_Action_MetaData *msg, upb_StringView value) {
|
|
8937
9431
|
const upb_MiniTableField field = {3, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8938
|
-
|
|
9432
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8939
9433
|
}
|
|
8940
9434
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_source(envoy_config_route_v3_RateLimit_Action_MetaData *msg, int32_t value) {
|
|
8941
9435
|
const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
8942
|
-
|
|
9436
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8943
9437
|
}
|
|
8944
9438
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_skip_if_absent(envoy_config_route_v3_RateLimit_Action_MetaData *msg, bool value) {
|
|
8945
9439
|
const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
8946
|
-
|
|
9440
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8947
9441
|
}
|
|
8948
9442
|
|
|
8949
9443
|
/* envoy.config.route.v3.RateLimit.Action.QueryParameterValueMatch */
|
|
@@ -9002,6 +9496,7 @@ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RateLim
|
|
|
9002
9496
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
9003
9497
|
const struct google_protobuf_BoolValue* ret;
|
|
9004
9498
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9499
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
9005
9500
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9006
9501
|
&default_val, &ret);
|
|
9007
9502
|
return ret;
|
|
@@ -9016,6 +9511,7 @@ UPB_INLINE void envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_
|
|
|
9016
9511
|
}
|
|
9017
9512
|
UPB_INLINE const envoy_config_route_v3_QueryParameterMatcher* const* envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_query_parameters(const envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* msg, size_t* size) {
|
|
9018
9513
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9514
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
9019
9515
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
9020
9516
|
if (arr) {
|
|
9021
9517
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -9027,6 +9523,7 @@ UPB_INLINE const envoy_config_route_v3_QueryParameterMatcher* const* envoy_confi
|
|
|
9027
9523
|
}
|
|
9028
9524
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_query_parameters_upb_array(const envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* msg, size_t* size) {
|
|
9029
9525
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9526
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
9030
9527
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
9031
9528
|
if (size) {
|
|
9032
9529
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -9035,6 +9532,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RateLimit_Action_QueryParamet
|
|
|
9035
9532
|
}
|
|
9036
9533
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_query_parameters_mutable_upb_array(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* msg, size_t* size, upb_Arena* arena) {
|
|
9037
9534
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9535
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
9038
9536
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
9039
9537
|
&field, arena);
|
|
9040
9538
|
if (size) {
|
|
@@ -9057,11 +9555,12 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_QueryParameterV
|
|
|
9057
9555
|
|
|
9058
9556
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_set_descriptor_value(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch *msg, upb_StringView value) {
|
|
9059
9557
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9060
|
-
|
|
9558
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9061
9559
|
}
|
|
9062
9560
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_set_expect_match(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch *msg, struct google_protobuf_BoolValue* value) {
|
|
9063
9561
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9064
|
-
|
|
9562
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
9563
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9065
9564
|
}
|
|
9066
9565
|
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_mutable_expect_match(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* msg, upb_Arena* arena) {
|
|
9067
9566
|
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_expect_match(msg);
|
|
@@ -9073,6 +9572,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RateLimit_Act
|
|
|
9073
9572
|
}
|
|
9074
9573
|
UPB_INLINE envoy_config_route_v3_QueryParameterMatcher** envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_mutable_query_parameters(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* msg, size_t* size) {
|
|
9075
9574
|
upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9575
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
9076
9576
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
9077
9577
|
if (arr) {
|
|
9078
9578
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -9089,6 +9589,7 @@ UPB_INLINE envoy_config_route_v3_QueryParameterMatcher** envoy_config_route_v3_R
|
|
|
9089
9589
|
}
|
|
9090
9590
|
UPB_INLINE struct envoy_config_route_v3_QueryParameterMatcher* envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_add_query_parameters(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* msg, upb_Arena* arena) {
|
|
9091
9591
|
upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9592
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__QueryParameterMatcher_msg_init);
|
|
9092
9593
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
9093
9594
|
UPB_UPCAST(msg), &field, arena);
|
|
9094
9595
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -9103,7 +9604,7 @@ UPB_INLINE struct envoy_config_route_v3_QueryParameterMatcher* envoy_config_rout
|
|
|
9103
9604
|
}
|
|
9104
9605
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch *msg, upb_StringView value) {
|
|
9105
9606
|
const upb_MiniTableField field = {4, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9106
|
-
|
|
9607
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9107
9608
|
}
|
|
9108
9609
|
|
|
9109
9610
|
/* envoy.config.route.v3.RateLimit.Override */
|
|
@@ -9159,6 +9660,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit_Override_DynamicMetadata* envoy
|
|
|
9159
9660
|
const envoy_config_route_v3_RateLimit_Override_DynamicMetadata* default_val = NULL;
|
|
9160
9661
|
const envoy_config_route_v3_RateLimit_Override_DynamicMetadata* ret;
|
|
9161
9662
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9663
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Override__DynamicMetadata_msg_init);
|
|
9162
9664
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9163
9665
|
&default_val, &ret);
|
|
9164
9666
|
return ret;
|
|
@@ -9170,7 +9672,8 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Override_has_dynamic_metadata(co
|
|
|
9170
9672
|
|
|
9171
9673
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Override_set_dynamic_metadata(envoy_config_route_v3_RateLimit_Override *msg, envoy_config_route_v3_RateLimit_Override_DynamicMetadata* value) {
|
|
9172
9674
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9173
|
-
|
|
9675
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit__Override__DynamicMetadata_msg_init);
|
|
9676
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9174
9677
|
}
|
|
9175
9678
|
UPB_INLINE struct envoy_config_route_v3_RateLimit_Override_DynamicMetadata* envoy_config_route_v3_RateLimit_Override_mutable_dynamic_metadata(envoy_config_route_v3_RateLimit_Override* msg, upb_Arena* arena) {
|
|
9176
9679
|
struct envoy_config_route_v3_RateLimit_Override_DynamicMetadata* sub = (struct envoy_config_route_v3_RateLimit_Override_DynamicMetadata*)envoy_config_route_v3_RateLimit_Override_dynamic_metadata(msg);
|
|
@@ -9225,6 +9728,7 @@ UPB_INLINE const struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v
|
|
|
9225
9728
|
const struct envoy_type_metadata_v3_MetadataKey* default_val = NULL;
|
|
9226
9729
|
const struct envoy_type_metadata_v3_MetadataKey* ret;
|
|
9227
9730
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9731
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__metadata__v3__MetadataKey_msg_init);
|
|
9228
9732
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9229
9733
|
&default_val, &ret);
|
|
9230
9734
|
return ret;
|
|
@@ -9236,7 +9740,8 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Override_DynamicMetadata_has_met
|
|
|
9236
9740
|
|
|
9237
9741
|
UPB_INLINE void envoy_config_route_v3_RateLimit_Override_DynamicMetadata_set_metadata_key(envoy_config_route_v3_RateLimit_Override_DynamicMetadata *msg, struct envoy_type_metadata_v3_MetadataKey* value) {
|
|
9238
9742
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9239
|
-
|
|
9743
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__metadata__v3__MetadataKey_msg_init);
|
|
9744
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9240
9745
|
}
|
|
9241
9746
|
UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_RateLimit_Override_DynamicMetadata_mutable_metadata_key(envoy_config_route_v3_RateLimit_Override_DynamicMetadata* msg, upb_Arena* arena) {
|
|
9242
9747
|
struct envoy_type_metadata_v3_MetadataKey* sub = (struct envoy_type_metadata_v3_MetadataKey*)envoy_config_route_v3_RateLimit_Override_DynamicMetadata_metadata_key(msg);
|
|
@@ -9247,6 +9752,90 @@ UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_Rate
|
|
|
9247
9752
|
return sub;
|
|
9248
9753
|
}
|
|
9249
9754
|
|
|
9755
|
+
/* envoy.config.route.v3.RateLimit.HitsAddend */
|
|
9756
|
+
|
|
9757
|
+
UPB_INLINE envoy_config_route_v3_RateLimit_HitsAddend* envoy_config_route_v3_RateLimit_HitsAddend_new(upb_Arena* arena) {
|
|
9758
|
+
return (envoy_config_route_v3_RateLimit_HitsAddend*)_upb_Message_New(&envoy__config__route__v3__RateLimit__HitsAddend_msg_init, arena);
|
|
9759
|
+
}
|
|
9760
|
+
UPB_INLINE envoy_config_route_v3_RateLimit_HitsAddend* envoy_config_route_v3_RateLimit_HitsAddend_parse(const char* buf, size_t size, upb_Arena* arena) {
|
|
9761
|
+
envoy_config_route_v3_RateLimit_HitsAddend* ret = envoy_config_route_v3_RateLimit_HitsAddend_new(arena);
|
|
9762
|
+
if (!ret) return NULL;
|
|
9763
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__route__v3__RateLimit__HitsAddend_msg_init, NULL, 0, arena) !=
|
|
9764
|
+
kUpb_DecodeStatus_Ok) {
|
|
9765
|
+
return NULL;
|
|
9766
|
+
}
|
|
9767
|
+
return ret;
|
|
9768
|
+
}
|
|
9769
|
+
UPB_INLINE envoy_config_route_v3_RateLimit_HitsAddend* envoy_config_route_v3_RateLimit_HitsAddend_parse_ex(const char* buf, size_t size,
|
|
9770
|
+
const upb_ExtensionRegistry* extreg,
|
|
9771
|
+
int options, upb_Arena* arena) {
|
|
9772
|
+
envoy_config_route_v3_RateLimit_HitsAddend* ret = envoy_config_route_v3_RateLimit_HitsAddend_new(arena);
|
|
9773
|
+
if (!ret) return NULL;
|
|
9774
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__config__route__v3__RateLimit__HitsAddend_msg_init, extreg, options,
|
|
9775
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
|
9776
|
+
return NULL;
|
|
9777
|
+
}
|
|
9778
|
+
return ret;
|
|
9779
|
+
}
|
|
9780
|
+
UPB_INLINE char* envoy_config_route_v3_RateLimit_HitsAddend_serialize(const envoy_config_route_v3_RateLimit_HitsAddend* msg, upb_Arena* arena, size_t* len) {
|
|
9781
|
+
char* ptr;
|
|
9782
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__route__v3__RateLimit__HitsAddend_msg_init, 0, arena, &ptr, len);
|
|
9783
|
+
return ptr;
|
|
9784
|
+
}
|
|
9785
|
+
UPB_INLINE char* envoy_config_route_v3_RateLimit_HitsAddend_serialize_ex(const envoy_config_route_v3_RateLimit_HitsAddend* msg, int options,
|
|
9786
|
+
upb_Arena* arena, size_t* len) {
|
|
9787
|
+
char* ptr;
|
|
9788
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__config__route__v3__RateLimit__HitsAddend_msg_init, options, arena, &ptr, len);
|
|
9789
|
+
return ptr;
|
|
9790
|
+
}
|
|
9791
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_HitsAddend_clear_number(envoy_config_route_v3_RateLimit_HitsAddend* msg) {
|
|
9792
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9793
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
9794
|
+
}
|
|
9795
|
+
UPB_INLINE const struct google_protobuf_UInt64Value* envoy_config_route_v3_RateLimit_HitsAddend_number(const envoy_config_route_v3_RateLimit_HitsAddend* msg) {
|
|
9796
|
+
const struct google_protobuf_UInt64Value* default_val = NULL;
|
|
9797
|
+
const struct google_protobuf_UInt64Value* ret;
|
|
9798
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9799
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt64Value_msg_init);
|
|
9800
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9801
|
+
&default_val, &ret);
|
|
9802
|
+
return ret;
|
|
9803
|
+
}
|
|
9804
|
+
UPB_INLINE bool envoy_config_route_v3_RateLimit_HitsAddend_has_number(const envoy_config_route_v3_RateLimit_HitsAddend* msg) {
|
|
9805
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9806
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
9807
|
+
}
|
|
9808
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_HitsAddend_clear_format(envoy_config_route_v3_RateLimit_HitsAddend* msg) {
|
|
9809
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9810
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
9811
|
+
}
|
|
9812
|
+
UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_HitsAddend_format(const envoy_config_route_v3_RateLimit_HitsAddend* msg) {
|
|
9813
|
+
upb_StringView default_val = upb_StringView_FromString("");
|
|
9814
|
+
upb_StringView ret;
|
|
9815
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9816
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9817
|
+
&default_val, &ret);
|
|
9818
|
+
return ret;
|
|
9819
|
+
}
|
|
9820
|
+
|
|
9821
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_HitsAddend_set_number(envoy_config_route_v3_RateLimit_HitsAddend *msg, struct google_protobuf_UInt64Value* value) {
|
|
9822
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9823
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt64Value_msg_init);
|
|
9824
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9825
|
+
}
|
|
9826
|
+
UPB_INLINE struct google_protobuf_UInt64Value* envoy_config_route_v3_RateLimit_HitsAddend_mutable_number(envoy_config_route_v3_RateLimit_HitsAddend* msg, upb_Arena* arena) {
|
|
9827
|
+
struct google_protobuf_UInt64Value* sub = (struct google_protobuf_UInt64Value*)envoy_config_route_v3_RateLimit_HitsAddend_number(msg);
|
|
9828
|
+
if (sub == NULL) {
|
|
9829
|
+
sub = (struct google_protobuf_UInt64Value*)_upb_Message_New(&google__protobuf__UInt64Value_msg_init, arena);
|
|
9830
|
+
if (sub) envoy_config_route_v3_RateLimit_HitsAddend_set_number(msg, sub);
|
|
9831
|
+
}
|
|
9832
|
+
return sub;
|
|
9833
|
+
}
|
|
9834
|
+
UPB_INLINE void envoy_config_route_v3_RateLimit_HitsAddend_set_format(envoy_config_route_v3_RateLimit_HitsAddend *msg, upb_StringView value) {
|
|
9835
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9836
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9837
|
+
}
|
|
9838
|
+
|
|
9250
9839
|
/* envoy.config.route.v3.HeaderMatcher */
|
|
9251
9840
|
|
|
9252
9841
|
UPB_INLINE envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_HeaderMatcher_new(upb_Arena* arena) {
|
|
@@ -9335,6 +9924,7 @@ UPB_INLINE const struct envoy_type_v3_Int64Range* envoy_config_route_v3_HeaderMa
|
|
|
9335
9924
|
const struct envoy_type_v3_Int64Range* default_val = NULL;
|
|
9336
9925
|
const struct envoy_type_v3_Int64Range* ret;
|
|
9337
9926
|
const upb_MiniTableField field = {6, UPB_SIZE(20, 24), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9927
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__Int64Range_msg_init);
|
|
9338
9928
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9339
9929
|
&default_val, &ret);
|
|
9340
9930
|
return ret;
|
|
@@ -9411,6 +10001,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v
|
|
|
9411
10001
|
const struct envoy_type_matcher_v3_RegexMatcher* default_val = NULL;
|
|
9412
10002
|
const struct envoy_type_matcher_v3_RegexMatcher* ret;
|
|
9413
10003
|
const upb_MiniTableField field = {11, UPB_SIZE(20, 24), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10004
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatcher_msg_init);
|
|
9414
10005
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9415
10006
|
&default_val, &ret);
|
|
9416
10007
|
return ret;
|
|
@@ -9443,6 +10034,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_
|
|
|
9443
10034
|
const struct envoy_type_matcher_v3_StringMatcher* default_val = NULL;
|
|
9444
10035
|
const struct envoy_type_matcher_v3_StringMatcher* ret;
|
|
9445
10036
|
const upb_MiniTableField field = {13, UPB_SIZE(20, 24), -13, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10037
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
9446
10038
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9447
10039
|
&default_val, &ret);
|
|
9448
10040
|
return ret;
|
|
@@ -9466,15 +10058,16 @@ UPB_INLINE bool envoy_config_route_v3_HeaderMatcher_treat_missing_header_as_empt
|
|
|
9466
10058
|
|
|
9467
10059
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_name(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
|
|
9468
10060
|
const upb_MiniTableField field = {1, UPB_SIZE(28, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9469
|
-
|
|
10061
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9470
10062
|
}
|
|
9471
10063
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_exact_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
|
|
9472
10064
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9473
|
-
|
|
10065
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9474
10066
|
}
|
|
9475
10067
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_range_match(envoy_config_route_v3_HeaderMatcher *msg, struct envoy_type_v3_Int64Range* value) {
|
|
9476
10068
|
const upb_MiniTableField field = {6, UPB_SIZE(20, 24), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9477
|
-
|
|
10069
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__Int64Range_msg_init);
|
|
10070
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9478
10071
|
}
|
|
9479
10072
|
UPB_INLINE struct envoy_type_v3_Int64Range* envoy_config_route_v3_HeaderMatcher_mutable_range_match(envoy_config_route_v3_HeaderMatcher* msg, upb_Arena* arena) {
|
|
9480
10073
|
struct envoy_type_v3_Int64Range* sub = (struct envoy_type_v3_Int64Range*)envoy_config_route_v3_HeaderMatcher_range_match(msg);
|
|
@@ -9486,23 +10079,24 @@ UPB_INLINE struct envoy_type_v3_Int64Range* envoy_config_route_v3_HeaderMatcher_
|
|
|
9486
10079
|
}
|
|
9487
10080
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_present_match(envoy_config_route_v3_HeaderMatcher *msg, bool value) {
|
|
9488
10081
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 24), -13, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
9489
|
-
|
|
10082
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9490
10083
|
}
|
|
9491
10084
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_invert_match(envoy_config_route_v3_HeaderMatcher *msg, bool value) {
|
|
9492
10085
|
const upb_MiniTableField field = {8, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
9493
|
-
|
|
10086
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9494
10087
|
}
|
|
9495
10088
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_prefix_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
|
|
9496
10089
|
const upb_MiniTableField field = {9, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9497
|
-
|
|
10090
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9498
10091
|
}
|
|
9499
10092
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_suffix_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
|
|
9500
10093
|
const upb_MiniTableField field = {10, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9501
|
-
|
|
10094
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9502
10095
|
}
|
|
9503
10096
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_safe_regex_match(envoy_config_route_v3_HeaderMatcher *msg, struct envoy_type_matcher_v3_RegexMatcher* value) {
|
|
9504
10097
|
const upb_MiniTableField field = {11, UPB_SIZE(20, 24), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9505
|
-
|
|
10098
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatcher_msg_init);
|
|
10099
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9506
10100
|
}
|
|
9507
10101
|
UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_HeaderMatcher_mutable_safe_regex_match(envoy_config_route_v3_HeaderMatcher* msg, upb_Arena* arena) {
|
|
9508
10102
|
struct envoy_type_matcher_v3_RegexMatcher* sub = (struct envoy_type_matcher_v3_RegexMatcher*)envoy_config_route_v3_HeaderMatcher_safe_regex_match(msg);
|
|
@@ -9514,11 +10108,12 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_Head
|
|
|
9514
10108
|
}
|
|
9515
10109
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_contains_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
|
|
9516
10110
|
const upb_MiniTableField field = {12, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9517
|
-
|
|
10111
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9518
10112
|
}
|
|
9519
10113
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_string_match(envoy_config_route_v3_HeaderMatcher *msg, struct envoy_type_matcher_v3_StringMatcher* value) {
|
|
9520
10114
|
const upb_MiniTableField field = {13, UPB_SIZE(20, 24), -13, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9521
|
-
|
|
10115
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
10116
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9522
10117
|
}
|
|
9523
10118
|
UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_HeaderMatcher_mutable_string_match(envoy_config_route_v3_HeaderMatcher* msg, upb_Arena* arena) {
|
|
9524
10119
|
struct envoy_type_matcher_v3_StringMatcher* sub = (struct envoy_type_matcher_v3_StringMatcher*)envoy_config_route_v3_HeaderMatcher_string_match(msg);
|
|
@@ -9530,7 +10125,7 @@ UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_Hea
|
|
|
9530
10125
|
}
|
|
9531
10126
|
UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_treat_missing_header_as_empty(envoy_config_route_v3_HeaderMatcher *msg, bool value) {
|
|
9532
10127
|
const upb_MiniTableField field = {14, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
9533
|
-
|
|
10128
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9534
10129
|
}
|
|
9535
10130
|
|
|
9536
10131
|
/* envoy.config.route.v3.QueryParameterMatcher */
|
|
@@ -9599,6 +10194,7 @@ UPB_INLINE const struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_
|
|
|
9599
10194
|
const struct envoy_type_matcher_v3_StringMatcher* default_val = NULL;
|
|
9600
10195
|
const struct envoy_type_matcher_v3_StringMatcher* ret;
|
|
9601
10196
|
const upb_MiniTableField field = {5, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10197
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
9602
10198
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9603
10199
|
&default_val, &ret);
|
|
9604
10200
|
return ret;
|
|
@@ -9626,11 +10222,12 @@ UPB_INLINE bool envoy_config_route_v3_QueryParameterMatcher_has_present_match(co
|
|
|
9626
10222
|
|
|
9627
10223
|
UPB_INLINE void envoy_config_route_v3_QueryParameterMatcher_set_name(envoy_config_route_v3_QueryParameterMatcher *msg, upb_StringView value) {
|
|
9628
10224
|
const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
9629
|
-
|
|
10225
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9630
10226
|
}
|
|
9631
10227
|
UPB_INLINE void envoy_config_route_v3_QueryParameterMatcher_set_string_match(envoy_config_route_v3_QueryParameterMatcher *msg, struct envoy_type_matcher_v3_StringMatcher* value) {
|
|
9632
10228
|
const upb_MiniTableField field = {5, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9633
|
-
|
|
10229
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__StringMatcher_msg_init);
|
|
10230
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9634
10231
|
}
|
|
9635
10232
|
UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_QueryParameterMatcher_mutable_string_match(envoy_config_route_v3_QueryParameterMatcher* msg, upb_Arena* arena) {
|
|
9636
10233
|
struct envoy_type_matcher_v3_StringMatcher* sub = (struct envoy_type_matcher_v3_StringMatcher*)envoy_config_route_v3_QueryParameterMatcher_string_match(msg);
|
|
@@ -9642,7 +10239,7 @@ UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_Que
|
|
|
9642
10239
|
}
|
|
9643
10240
|
UPB_INLINE void envoy_config_route_v3_QueryParameterMatcher_set_present_match(envoy_config_route_v3_QueryParameterMatcher *msg, bool value) {
|
|
9644
10241
|
const upb_MiniTableField field = {6, UPB_SIZE(12, 32), -9, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
9645
|
-
|
|
10242
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9646
10243
|
}
|
|
9647
10244
|
|
|
9648
10245
|
/* envoy.config.route.v3.InternalRedirectPolicy */
|
|
@@ -9689,6 +10286,7 @@ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_Inter
|
|
|
9689
10286
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
9690
10287
|
const struct google_protobuf_UInt32Value* ret;
|
|
9691
10288
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10289
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
9692
10290
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9693
10291
|
&default_val, &ret);
|
|
9694
10292
|
return ret;
|
|
@@ -9735,6 +10333,7 @@ UPB_INLINE void envoy_config_route_v3_InternalRedirectPolicy_clear_predicates(en
|
|
|
9735
10333
|
}
|
|
9736
10334
|
UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_config_route_v3_InternalRedirectPolicy_predicates(const envoy_config_route_v3_InternalRedirectPolicy* msg, size_t* size) {
|
|
9737
10335
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10336
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
9738
10337
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
9739
10338
|
if (arr) {
|
|
9740
10339
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -9746,6 +10345,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_
|
|
|
9746
10345
|
}
|
|
9747
10346
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_InternalRedirectPolicy_predicates_upb_array(const envoy_config_route_v3_InternalRedirectPolicy* msg, size_t* size) {
|
|
9748
10347
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10348
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
9749
10349
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
9750
10350
|
if (size) {
|
|
9751
10351
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
@@ -9754,6 +10354,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_InternalRedirectPolicy_predic
|
|
|
9754
10354
|
}
|
|
9755
10355
|
UPB_INLINE upb_Array* _envoy_config_route_v3_InternalRedirectPolicy_predicates_mutable_upb_array(envoy_config_route_v3_InternalRedirectPolicy* msg, size_t* size, upb_Arena* arena) {
|
|
9756
10356
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10357
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
9757
10358
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
9758
10359
|
&field, arena);
|
|
9759
10360
|
if (size) {
|
|
@@ -9808,7 +10409,8 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_InternalRedirectPolicy_response_hea
|
|
|
9808
10409
|
|
|
9809
10410
|
UPB_INLINE void envoy_config_route_v3_InternalRedirectPolicy_set_max_internal_redirects(envoy_config_route_v3_InternalRedirectPolicy *msg, struct google_protobuf_UInt32Value* value) {
|
|
9810
10411
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9811
|
-
|
|
10412
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
10413
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9812
10414
|
}
|
|
9813
10415
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_InternalRedirectPolicy_mutable_max_internal_redirects(envoy_config_route_v3_InternalRedirectPolicy* msg, upb_Arena* arena) {
|
|
9814
10416
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_InternalRedirectPolicy_max_internal_redirects(msg);
|
|
@@ -9848,6 +10450,7 @@ UPB_INLINE bool envoy_config_route_v3_InternalRedirectPolicy_add_redirect_respon
|
|
|
9848
10450
|
}
|
|
9849
10451
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_route_v3_InternalRedirectPolicy_mutable_predicates(envoy_config_route_v3_InternalRedirectPolicy* msg, size_t* size) {
|
|
9850
10452
|
upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10453
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
9851
10454
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
9852
10455
|
if (arr) {
|
|
9853
10456
|
if (size) *size = arr->UPB_PRIVATE(size);
|
|
@@ -9864,6 +10467,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_route
|
|
|
9864
10467
|
}
|
|
9865
10468
|
UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_InternalRedirectPolicy_add_predicates(envoy_config_route_v3_InternalRedirectPolicy* msg, upb_Arena* arena) {
|
|
9866
10469
|
upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10470
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
9867
10471
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
9868
10472
|
UPB_UPCAST(msg), &field, arena);
|
|
9869
10473
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
@@ -9878,7 +10482,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
9878
10482
|
}
|
|
9879
10483
|
UPB_INLINE void envoy_config_route_v3_InternalRedirectPolicy_set_allow_cross_scheme_redirect(envoy_config_route_v3_InternalRedirectPolicy *msg, bool value) {
|
|
9880
10484
|
const upb_MiniTableField field = {4, UPB_SIZE(24, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
9881
|
-
|
|
10485
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9882
10486
|
}
|
|
9883
10487
|
UPB_INLINE upb_StringView* envoy_config_route_v3_InternalRedirectPolicy_mutable_response_headers_to_copy(envoy_config_route_v3_InternalRedirectPolicy* msg, size_t* size) {
|
|
9884
10488
|
upb_MiniTableField field = {5, UPB_SIZE(28, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
@@ -9953,6 +10557,7 @@ UPB_INLINE const struct google_protobuf_Any* envoy_config_route_v3_FilterConfig_
|
|
|
9953
10557
|
const struct google_protobuf_Any* default_val = NULL;
|
|
9954
10558
|
const struct google_protobuf_Any* ret;
|
|
9955
10559
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
10560
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
9956
10561
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
9957
10562
|
&default_val, &ret);
|
|
9958
10563
|
return ret;
|
|
@@ -9988,7 +10593,8 @@ UPB_INLINE bool envoy_config_route_v3_FilterConfig_disabled(const envoy_config_r
|
|
|
9988
10593
|
|
|
9989
10594
|
UPB_INLINE void envoy_config_route_v3_FilterConfig_set_config(envoy_config_route_v3_FilterConfig *msg, struct google_protobuf_Any* value) {
|
|
9990
10595
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
9991
|
-
|
|
10596
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
10597
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
9992
10598
|
}
|
|
9993
10599
|
UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_FilterConfig_mutable_config(envoy_config_route_v3_FilterConfig* msg, upb_Arena* arena) {
|
|
9994
10600
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_FilterConfig_config(msg);
|
|
@@ -10000,11 +10606,11 @@ UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_FilterConfig_mutabl
|
|
|
10000
10606
|
}
|
|
10001
10607
|
UPB_INLINE void envoy_config_route_v3_FilterConfig_set_is_optional(envoy_config_route_v3_FilterConfig *msg, bool value) {
|
|
10002
10608
|
const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
10003
|
-
|
|
10609
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
10004
10610
|
}
|
|
10005
10611
|
UPB_INLINE void envoy_config_route_v3_FilterConfig_set_disabled(envoy_config_route_v3_FilterConfig *msg, bool value) {
|
|
10006
10612
|
const upb_MiniTableField field = {3, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
10007
|
-
|
|
10613
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
10008
10614
|
}
|
|
10009
10615
|
|
|
10010
10616
|
#ifdef __cplusplus
|
|
@@ -10013,4 +10619,4 @@ UPB_INLINE void envoy_config_route_v3_FilterConfig_set_disabled(envoy_config_rou
|
|
|
10013
10619
|
|
|
10014
10620
|
#include "upb/port/undef.inc"
|
|
10015
10621
|
|
|
10016
|
-
#endif /*
|
|
10622
|
+
#endif /* ENVOY_CONFIG_ROUTE_V3_ROUTE_COMPONENTS_PROTO_UPB_H__UPB_H_ */
|