grpc 1.62.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +552 -2066
- data/include/grpc/byte_buffer.h +1 -2
- data/include/grpc/census.h +1 -2
- data/include/grpc/compression.h +2 -4
- data/include/grpc/credentials.h +1221 -0
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/event_engine.h +41 -15
- data/include/grpc/event_engine/extensible.h +3 -0
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +2 -3
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +2 -4
- data/include/grpc/event_engine/memory_request.h +18 -1
- data/include/grpc/event_engine/slice.h +2 -5
- data/include/grpc/event_engine/slice_buffer.h +5 -8
- data/include/grpc/grpc.h +9 -10
- data/include/grpc/grpc_audit_logging.h +1 -2
- data/include/grpc/grpc_crl_provider.h +4 -3
- data/include/grpc/grpc_cronet.h +1 -2
- data/include/grpc/grpc_posix.h +2 -4
- data/include/grpc/grpc_security.h +2 -1175
- data/include/grpc/impl/call.h +1 -2
- data/include/grpc/impl/channel_arg_names.h +14 -7
- data/include/grpc/impl/grpc_types.h +2 -4
- data/include/grpc/impl/slice_type.h +0 -1
- data/include/grpc/module.modulemap +3 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/slice.h +1 -2
- data/include/grpc/slice_buffer.h +1 -2
- data/include/grpc/support/alloc.h +0 -1
- data/include/grpc/support/json.h +0 -1
- data/include/grpc/support/log.h +36 -63
- data/include/grpc/support/metrics.h +66 -0
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/string_util.h +0 -1
- data/include/grpc/support/sync.h +0 -1
- data/include/grpc/support/sync_abseil.h +0 -1
- data/include/grpc/support/sync_custom.h +0 -1
- data/include/grpc/support/sync_generic.h +3 -6
- data/include/grpc/support/sync_posix.h +1 -3
- data/include/grpc/support/time.h +0 -1
- data/src/core/channelz/channel_trace.cc +180 -0
- data/src/core/channelz/channel_trace.h +138 -0
- data/src/core/channelz/channelz.cc +670 -0
- data/src/core/channelz/channelz.h +421 -0
- data/src/core/channelz/channelz_registry.cc +281 -0
- data/src/core/channelz/channelz_registry.h +101 -0
- data/src/core/client_channel/backup_poller.cc +25 -16
- data/src/core/client_channel/client_channel.cc +1426 -0
- data/src/core/client_channel/client_channel.h +245 -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 +437 -944
- data/src/core/client_channel/client_channel_filter.h +30 -93
- data/src/core/client_channel/client_channel_internal.h +27 -12
- 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 +12 -13
- data/src/core/client_channel/config_selector.h +26 -26
- data/src/core/client_channel/connector.h +4 -4
- 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 +19 -16
- data/src/core/client_channel/dynamic_filters.h +10 -11
- 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 +6 -7
- 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 +10 -18
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +215 -324
- data/src/core/client_channel/retry_filter_legacy_call_data.h +20 -23
- data/src/core/client_channel/retry_service_config.cc +10 -13
- data/src/core/client_channel/retry_service_config.h +9 -11
- data/src/core/client_channel/retry_throttle.cc +3 -4
- data/src/core/client_channel/retry_throttle.h +7 -9
- data/src/core/client_channel/subchannel.cc +295 -176
- data/src/core/client_channel/subchannel.h +53 -46
- 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 +5 -8
- data/src/core/client_channel/subchannel_stream_client.cc +47 -65
- data/src/core/client_channel/subchannel_stream_client.h +12 -16
- 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 +30 -80
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +5 -15
- 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 +48 -57
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +22 -19
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +25 -29
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +8 -7
- 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 +19 -12
- data/src/core/ext/filters/http/client/http_client_filter.h +8 -6
- data/src/core/ext/filters/http/client_authority_filter.cc +13 -11
- data/src/core/ext/filters/http/client_authority_filter.h +8 -5
- data/src/core/ext/filters/http/http_filters_plugin.cc +16 -37
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +67 -61
- data/src/core/ext/filters/http/message_compress/compression_filter.h +18 -13
- data/src/core/ext/filters/http/server/http_server_filter.cc +19 -16
- data/src/core/ext/filters/http/server/http_server_filter.h +8 -6
- data/src/core/ext/filters/message_size/message_size_filter.cc +51 -55
- data/src/core/ext/filters/message_size/message_size_filter.h +20 -16
- data/src/core/ext/filters/rbac/rbac_filter.cc +14 -19
- data/src/core/ext/filters/rbac/rbac_filter.h +8 -7
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +18 -12
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +3 -5
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +26 -28
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +8 -6
- 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 +4 -5
- data/src/core/ext/transport/chttp2/alpn/alpn.h +0 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +87 -124
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -12
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +465 -316
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +34 -1
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +26 -38
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +10 -12
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -3
- 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 +699 -622
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +37 -20
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +14 -12
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +11 -16
- data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -9
- data/src/core/ext/transport/chttp2/transport/frame.cc +25 -8
- data/src/core/ext/transport/chttp2/transport/frame.h +11 -2
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +21 -22
- data/src/core/ext/transport/chttp2/transport/frame_data.h +3 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +7 -10
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +16 -21
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +19 -20
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_security.cc +82 -0
- data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +36 -21
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +31 -10
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -4
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +21 -22
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +18 -15
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -10
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +5 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +80 -123
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +5 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +45 -20
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +28 -9
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +12 -4
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +10 -4
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +73 -81
- data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +140 -131
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +1 -1
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +4 -7
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +2 -7
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -19
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +6 -7
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +19 -21
- 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 +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +196 -155
- data/src/core/ext/transport/inproc/inproc_transport.cc +154 -70
- data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +136 -137
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +278 -234
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +73 -57
- 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 +325 -269
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +87 -77
- 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 +277 -230
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +75 -61
- 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 +1074 -886
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +299 -247
- 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 +87 -80
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +22 -12
- 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 +103 -88
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +28 -18
- 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 +54 -46
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +20 -14
- 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 +33 -28
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +14 -8
- 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 +33 -28
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +14 -8
- 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 +407 -321
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +104 -92
- 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 +30 -24
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +14 -10
- 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 +45 -36
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +11 -5
- 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 +38 -24
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +17 -10
- 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 +578 -477
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +194 -148
- 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 +1501 -1112
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +419 -331
- 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 +194 -156
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +50 -50
- 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 +1627 -1141
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +450 -395
- 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 +41 -32
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +16 -12
- 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 +360 -192
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +84 -73
- 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 +660 -512
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +214 -160
- 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 +384 -313
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +114 -94
- 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 +34 -26
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +14 -14
- 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 +1473 -692
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +450 -223
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +39 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +413 -347
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +113 -91
- 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 +26 -20
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +13 -7
- 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 +30 -24
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +14 -10
- 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 +87 -80
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +22 -12
- 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 +681 -474
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +213 -162
- 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 +808 -634
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +192 -150
- 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 +56 -47
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +16 -10
- 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 +42 -34
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +17 -11
- 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 +872 -641
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +266 -236
- 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 +72 -65
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +23 -15
- 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 +77 -65
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +24 -16
- 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_option.upb.h +101 -87
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +30 -20
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +118 -97
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +35 -25
- 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 +34 -26
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +14 -14
- 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 +197 -149
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +59 -49
- 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 +390 -291
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +118 -90
- 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 +578 -313
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +132 -78
- 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 +23 -18
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +12 -10
- 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 +615 -482
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +165 -132
- 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 +561 -472
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +134 -116
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +172 -82
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +33 -41
- 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 +52 -40
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +21 -29
- 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 +55 -44
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +22 -16
- 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 +340 -283
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +107 -77
- 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 +433 -362
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +127 -85
- 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 +665 -494
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +195 -161
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +16 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +391 -331
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +69 -77
- 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 +3886 -3149
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +1036 -851
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +63 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +114 -95
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +39 -25
- 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 +541 -434
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +171 -135
- 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 +134 -28
- 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 +30 -24
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +14 -10
- 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 +51 -40
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +24 -18
- 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 +65 -59
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +18 -16
- 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/opencensus.upb.h +157 -140
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +39 -33
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +85 -69
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +24 -18
- 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 +23 -18
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +12 -10
- 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 +78 -62
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +29 -29
- 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 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +77 -60
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +29 -25
- 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 +65 -54
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +25 -19
- 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 +1104 -836
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +359 -304
- 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 +40 -39
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +10 -4
- 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 +119 -92
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +52 -30
- 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 +248 -208
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +65 -67
- 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 +113 -62
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +36 -30
- 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 +181 -157
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +43 -35
- 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 +60 -48
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +27 -17
- 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 +1546 -1234
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +422 -351
- 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 +23 -18
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +12 -10
- 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 +78 -58
- 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 +22 -26
- 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 +145 -112
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +60 -46
- 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 +19 -16
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +10 -4
- 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 +81 -62
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +29 -23
- 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 +23 -18
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +12 -10
- 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 +106 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -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 +662 -498
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +142 -122
- 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 +109 -84
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +44 -36
- 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 +574 -461
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +153 -137
- 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 +70 -59
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +24 -16
- 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 +248 -189
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +75 -73
- 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 +12 -10
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +8 -2
- 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 +852 -714
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +219 -171
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +19 -4
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +116 -102
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +32 -22
- 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 +355 -292
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +100 -78
- 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 +37 -30
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +17 -11
- 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 +91 -75
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +36 -18
- 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 +33 -26
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +15 -9
- 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 +75 -64
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +38 -16
- 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 +89 -75
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +27 -17
- 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 +56 -47
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +16 -10
- 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 +35 -28
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +15 -9
- 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 +26 -20
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +13 -7
- 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 +76 -60
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +36 -26
- 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 +19 -16
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +13 -3
- 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 +142 -93
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +45 -24
- 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 +75 -63
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +23 -13
- 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 +156 -125
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +54 -36
- 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 +153 -125
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +61 -31
- 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 +158 -126
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +64 -42
- 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 +58 -46
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +28 -14
- 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 +19 -16
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +10 -4
- 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 +40 -34
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +19 -9
- 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 +68 -58
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +30 -16
- 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 +67 -54
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +27 -17
- 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 +33 -28
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +14 -8
- 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 +41 -32
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +16 -12
- 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 +24 -12
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +6 -3
- 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 +684 -528
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +203 -166
- 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 +1075 -547
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +296 -178
- 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 +194 -166
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +53 -39
- 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 +59 -51
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +17 -11
- 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 +27 -22
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +12 -6
- 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 +2875 -2375
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +660 -618
- 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 +27 -22
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +12 -6
- 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 +13 -10
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +8 -2
- 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 +161 -120
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +54 -38
- 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 +27 -22
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +12 -6
- 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 +132 -112
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +66 -28
- 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 +59 -51
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +17 -11
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +119 -96
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +48 -30
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +90 -65
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +34 -24
- 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 +640 -522
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +188 -144
- 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 +56 -44
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +23 -19
- 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 +34 -28
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +17 -7
- 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 +294 -242
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +106 -74
- 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 +108 -86
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +36 -22
- 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 +553 -470
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +128 -94
- 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 +149 -86
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +47 -28
- 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 +45 -30
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +19 -12
- 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 +15 -12
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +5 -2
- 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 +45 -30
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +19 -12
- 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 +38 -24
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +17 -10
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/validate/validate.upb.h +2716 -2462
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +505 -551
- 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 +149 -86
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +47 -28
- 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 +45 -30
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +19 -12
- 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 +15 -12
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +5 -2
- 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 +125 -82
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +49 -28
- 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 +38 -24
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +17 -10
- 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 +19 -16
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +10 -4
- 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 +30 -24
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +14 -10
- 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 +69 -54
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +30 -20
- 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 +44 -27
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +21 -11
- 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 +30 -24
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +14 -10
- 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 +41 -32
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +18 -12
- 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 +117 -97
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +36 -26
- 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 +44 -36
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +18 -16
- 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 +150 -97
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +55 -37
- 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 +51 -47
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +15 -9
- 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 +30 -24
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +15 -9
- 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 +91 -82
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +24 -16
- 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 +12 -10
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +8 -2
- 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 +103 -88
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +28 -18
- 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 +387 -289
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +137 -103
- 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 +278 -238
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +69 -49
- 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 +40 -32
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +20 -10
- 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 +109 -93
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +33 -23
- 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 +66 -50
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +27 -23
- 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 +69 -58
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +30 -16
- 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 +30 -24
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +14 -10
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +7 -9
- 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 +7 -9
- 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 +12 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +12 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +32 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +12 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +12 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +12 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +7 -9
- 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 +7 -9
- 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 +17 -9
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +478 -450
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +12 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +7 -9
- 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 +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- 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 +7 -9
- data/src/core/filter/blackboard.cc +33 -0
- data/src/core/filter/blackboard.h +70 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +81 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
- data/src/core/handshaker/handshaker.cc +199 -0
- data/src/core/handshaker/handshaker.h +170 -0
- data/src/core/handshaker/handshaker_factory.h +89 -0
- data/src/core/handshaker/handshaker_registry.cc +60 -0
- data/src/core/handshaker/handshaker_registry.h +69 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +359 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.h +42 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +297 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +52 -0
- 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 +52 -0
- data/src/core/handshaker/proxy_mapper_registry.cc +71 -0
- data/src/core/handshaker/proxy_mapper_registry.h +74 -0
- data/src/core/handshaker/security/secure_endpoint.cc +578 -0
- data/src/core/handshaker/security/secure_endpoint.h +41 -0
- data/src/core/handshaker/security/security_handshaker.cc +628 -0
- data/src/core/handshaker/security/security_handshaker.h +45 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +230 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +39 -0
- data/src/core/lib/address_utils/parse_address.cc +41 -45
- data/src/core/lib/address_utils/parse_address.h +1 -3
- data/src/core/lib/address_utils/sockaddr_utils.cc +30 -20
- data/src/core/lib/address_utils/sockaddr_utils.h +0 -2
- data/src/core/lib/channel/call_finalization.h +1 -1
- data/src/core/lib/channel/channel_args.cc +20 -26
- data/src/core/lib/channel/channel_args.h +34 -21
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +2 -3
- data/src/core/lib/channel/channel_stack.cc +21 -74
- data/src/core/lib/channel/channel_stack.h +31 -62
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +1 -7
- data/src/core/lib/channel/channel_stack_builder_impl.cc +18 -30
- data/src/core/lib/channel/channel_stack_builder_impl.h +13 -3
- data/src/core/lib/channel/connected_channel.cc +49 -709
- data/src/core/lib/channel/promise_based_filter.cc +249 -324
- data/src/core/lib/channel/promise_based_filter.h +269 -508
- data/src/core/lib/channel/status_util.cc +2 -4
- data/src/core/lib/channel/status_util.h +1 -2
- data/src/core/lib/compression/compression.cc +7 -10
- data/src/core/lib/compression/compression_internal.cc +39 -9
- data/src/core/lib/compression/compression_internal.h +5 -5
- data/src/core/lib/compression/message_compress.cc +16 -18
- data/src/core/lib/compression/message_compress.h +1 -2
- data/src/core/lib/debug/trace.cc +48 -67
- data/src/core/lib/debug/trace.h +2 -97
- data/src/core/lib/debug/trace_flags.cc +242 -0
- data/src/core/lib/debug/trace_flags.h +131 -0
- data/src/core/lib/debug/trace_impl.h +125 -0
- data/src/core/lib/event_engine/ares_resolver.cc +165 -92
- data/src/core/lib/event_engine/ares_resolver.h +11 -18
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +14 -15
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +47 -34
- 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 +28 -31
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +5 -6
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -5
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -3
- data/src/core/lib/event_engine/common_closures.h +1 -2
- data/src/core/lib/event_engine/default_event_engine.cc +13 -16
- data/src/core/lib/event_engine/default_event_engine.h +3 -10
- data/src/core/lib/event_engine/default_event_engine_factory.cc +3 -4
- data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
- data/src/core/lib/event_engine/event_engine.cc +35 -5
- data/src/core/lib/event_engine/event_engine_context.h +32 -0
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +64 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +25 -2
- data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
- data/src/core/lib/event_engine/forkable.cc +12 -13
- data/src/core/lib/event_engine/forkable.h +0 -13
- data/src/core/lib/event_engine/grpc_polled_fd.h +2 -4
- data/src/core/lib/event_engine/handle_containers.h +1 -3
- data/src/core/lib/event_engine/memory_allocator_factory.h +1 -3
- data/src/core/lib/event_engine/nameser.h +1 -1
- data/src/core/lib/event_engine/poller.h +1 -2
- data/src/core/lib/event_engine/posix.h +9 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +28 -30
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +6 -8
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +27 -31
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -3
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +3 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +0 -1
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -9
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +0 -1
- 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 +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +96 -103
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +22 -23
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +84 -65
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +16 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +1 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +28 -31
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +13 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +28 -33
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -3
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +53 -40
- 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 -6
- data/src/core/lib/event_engine/posix_engine/timer.h +4 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +16 -25
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +4 -7
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +7 -10
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +2 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +0 -1
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +0 -1
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +0 -1
- data/src/core/lib/event_engine/query_extensions.h +3 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -5
- data/src/core/lib/event_engine/resolved_address.cc +8 -7
- data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
- data/src/core/lib/event_engine/shim.cc +3 -3
- data/src/core/lib/event_engine/slice.cc +5 -7
- data/src/core/lib/event_engine/slice_buffer.cc +2 -4
- data/src/core/lib/event_engine/tcp_socket_utils.cc +29 -27
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -4
- data/src/core/lib/event_engine/thread_local.cc +2 -2
- data/src/core/lib/event_engine/thread_local.h +1 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -8
- data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -6
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +1 -2
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +46 -53
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -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 +7 -7
- data/src/core/lib/event_engine/time_util.cc +3 -4
- data/src/core/lib/event_engine/time_util.h +1 -3
- data/src/core/lib/event_engine/utils.cc +19 -6
- data/src/core/lib/event_engine/utils.h +9 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +158 -132
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
- data/src/core/lib/event_engine/windows/iocp.cc +24 -22
- 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 +51 -36
- data/src/core/lib/event_engine/windows/win_socket.h +11 -10
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +58 -44
- data/src/core/lib/event_engine/windows/windows_engine.cc +265 -123
- data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
- data/src/core/lib/event_engine/windows/windows_listener.cc +83 -49
- data/src/core/lib/event_engine/windows/windows_listener.h +18 -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 +2 -5
- data/src/core/lib/event_engine/work_queue/work_queue.h +1 -3
- data/src/core/lib/experiments/config.cc +111 -66
- data/src/core/lib/experiments/config.h +55 -2
- data/src/core/lib/experiments/experiments.cc +308 -510
- data/src/core/lib/experiments/experiments.h +148 -240
- data/src/core/lib/iomgr/buffer_list.cc +7 -8
- data/src/core/lib/iomgr/buffer_list.h +2 -4
- data/src/core/lib/iomgr/call_combiner.cc +42 -68
- data/src/core/lib/iomgr/call_combiner.h +12 -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 +17 -21
- data/src/core/lib/iomgr/combiner.cc +38 -52
- data/src/core/lib/iomgr/combiner.h +2 -6
- data/src/core/lib/iomgr/endpoint.cc +1 -7
- data/src/core/lib/iomgr/endpoint.h +4 -6
- data/src/core/lib/iomgr/endpoint_cfstream.cc +45 -76
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +8 -10
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +16 -17
- data/src/core/lib/iomgr/error.cc +24 -34
- data/src/core/lib/iomgr/error.h +8 -11
- 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 +81 -126
- data/src/core/lib/iomgr/ev_poll_posix.cc +62 -62
- data/src/core/lib/iomgr/ev_posix.cc +68 -60
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +11 -15
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -3
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +35 -53
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +10 -15
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
- data/src/core/lib/iomgr/exec_ctx.cc +14 -18
- data/src/core/lib/iomgr/exec_ctx.h +33 -23
- data/src/core/lib/iomgr/executor.cc +60 -59
- 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 +5 -6
- data/src/core/lib/iomgr/iocp_windows.cc +16 -15
- data/src/core/lib/iomgr/iocp_windows.h +0 -1
- data/src/core/lib/iomgr/iomgr.cc +19 -26
- data/src/core/lib/iomgr/iomgr.h +0 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +0 -1
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +7 -6
- data/src/core/lib/iomgr/lockfree_event.cc +12 -21
- data/src/core/lib/iomgr/lockfree_event.h +1 -2
- data/src/core/lib/iomgr/nameser.h +1 -1
- data/src/core/lib/iomgr/polling_entity.cc +17 -11
- data/src/core/lib/iomgr/pollset.cc +2 -2
- data/src/core/lib/iomgr/pollset.h +0 -3
- data/src/core/lib/iomgr/pollset_set.cc +2 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +0 -1
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/pollset_windows.h +0 -1
- data/src/core/lib/iomgr/port.h +5 -2
- data/src/core/lib/iomgr/python_util.h +1 -2
- data/src/core/lib/iomgr/resolve_address.cc +4 -7
- data/src/core/lib/iomgr/resolve_address.h +3 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +0 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
- data/src/core/lib/iomgr/resolved_address.h +0 -1
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +5 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
- data/src/core/lib/iomgr/socket_mutator.cc +3 -5
- data/src/core/lib/iomgr/socket_mutator.h +2 -4
- data/src/core/lib/iomgr/socket_utils.h +0 -1
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +45 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +3 -6
- data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +11 -14
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client.cc +2 -2
- data/src/core/lib/iomgr/tcp_client.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
- data/src/core/lib/iomgr/tcp_client_posix.cc +24 -36
- data/src/core/lib/iomgr/tcp_client_windows.cc +33 -17
- data/src/core/lib/iomgr/tcp_posix.cc +167 -189
- data/src/core/lib/iomgr/tcp_posix.h +1 -3
- data/src/core/lib/iomgr/tcp_server.cc +2 -2
- data/src/core/lib/iomgr/tcp_server.h +3 -4
- data/src/core/lib/iomgr/tcp_server_posix.cc +152 -156
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +13 -17
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +13 -14
- data/src/core/lib/iomgr/tcp_server_windows.cc +94 -50
- data/src/core/lib/iomgr/tcp_windows.cc +38 -66
- data/src/core/lib/iomgr/timer.cc +2 -2
- data/src/core/lib/iomgr/timer.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +73 -106
- data/src/core/lib/iomgr/timer_generic.h +0 -1
- data/src/core/lib/iomgr/timer_heap.cc +4 -6
- data/src/core/lib/iomgr/timer_manager.cc +27 -44
- data/src/core/lib/iomgr/timer_manager.h +0 -1
- data/src/core/lib/iomgr/unix_sockets_posix.cc +18 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +1 -3
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +2 -4
- data/src/core/lib/iomgr/vsock.cc +5 -8
- data/src/core/lib/iomgr/vsock.h +1 -3
- 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 -5
- data/src/core/lib/promise/activity.h +54 -22
- data/src/core/lib/promise/all_ok.h +52 -9
- data/src/core/lib/promise/arena_promise.h +1 -3
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +20 -11
- data/src/core/lib/promise/detail/basic_seq.h +33 -20
- data/src/core/lib/promise/detail/join_state.h +555 -760
- data/src/core/lib/promise/detail/promise_factory.h +45 -29
- data/src/core/lib/promise/detail/promise_like.h +49 -11
- data/src/core/lib/promise/detail/seq_state.h +1314 -1977
- data/src/core/lib/promise/detail/status.h +36 -14
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +1 -2
- data/src/core/lib/promise/for_each.h +97 -39
- data/src/core/lib/promise/if.h +21 -17
- data/src/core/lib/promise/interceptor_list.h +22 -36
- data/src/core/lib/promise/latch.h +25 -40
- data/src/core/lib/promise/loop.h +23 -10
- data/src/core/lib/promise/map.h +77 -9
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +263 -125
- data/src/core/lib/promise/party.h +187 -391
- data/src/core/lib/promise/pipe.h +34 -57
- data/src/core/lib/promise/poll.h +117 -39
- data/src/core/lib/promise/promise.h +12 -6
- data/src/core/lib/promise/race.h +10 -5
- data/src/core/lib/promise/seq.h +57 -64
- data/src/core/lib/promise/sleep.cc +5 -6
- data/src/core/lib/promise/sleep.h +2 -4
- data/src/core/lib/promise/status_flag.h +165 -51
- data/src/core/lib/promise/try_join.h +37 -20
- data/src/core/lib/promise/try_seq.h +113 -77
- data/src/core/lib/resource_quota/api.cc +4 -7
- data/src/core/lib/resource_quota/api.h +3 -5
- data/src/core/lib/resource_quota/arena.cc +64 -87
- data/src/core/lib/resource_quota/arena.h +145 -215
- data/src/core/lib/resource_quota/connection_quota.cc +69 -0
- data/src/core/lib/resource_quota/connection_quota.h +60 -0
- data/src/core/lib/resource_quota/memory_quota.cc +51 -52
- data/src/core/lib/resource_quota/memory_quota.h +27 -21
- data/src/core/lib/resource_quota/periodic_update.cc +5 -5
- data/src/core/lib/resource_quota/periodic_update.h +1 -3
- data/src/core/lib/resource_quota/resource_quota.cc +2 -2
- data/src/core/lib/resource_quota/resource_quota.h +6 -8
- data/src/core/lib/resource_quota/thread_quota.cc +4 -4
- data/src/core/lib/resource_quota/thread_quota.h +3 -4
- data/src/core/lib/security/authorization/audit_logging.cc +10 -12
- data/src/core/lib/security/authorization/audit_logging.h +3 -5
- data/src/core/lib/security/authorization/authorization_engine.h +1 -1
- data/src/core/lib/security/authorization/authorization_policy_provider.h +5 -7
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -4
- data/src/core/lib/security/authorization/evaluate_args.cc +16 -20
- data/src/core/lib/security/authorization/evaluate_args.h +4 -6
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -5
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +29 -41
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +11 -11
- data/src/core/lib/security/authorization/matchers.cc +5 -8
- data/src/core/lib/security/authorization/matchers.h +1 -3
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +2 -5
- data/src/core/lib/security/authorization/stdout_logger.cc +7 -7
- data/src/core/lib/security/authorization/stdout_logger.h +2 -3
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +7 -8
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +6 -6
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -1
- data/src/core/lib/security/context/security_context.cc +51 -49
- data/src/core/lib/security/context/security_context.h +46 -17
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -7
- data/src/core/lib/security/credentials/alts/alts_credentials.h +11 -7
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -5
- 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 +5 -7
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +4 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +2 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -2
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -8
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +5 -6
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +14 -13
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +18 -21
- data/src/core/lib/security/credentials/composite/composite_credentials.h +9 -8
- data/src/core/lib/security/credentials/credentials.cc +20 -20
- data/src/core/lib/security/credentials/credentials.h +13 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +336 -339
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +58 -46
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
- data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +410 -374
- data/src/core/lib/security/credentials/external/external_account_credentials.h +127 -59
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -53
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +30 -9
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +103 -129
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +20 -22
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +10 -9
- 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 +4 -6
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +60 -77
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -7
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +9 -14
- data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +4 -4
- data/src/core/lib/security/credentials/jwt/json_token.cc +35 -34
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -4
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +24 -30
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +9 -9
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +90 -102
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -5
- data/src/core/lib/security/credentials/local/local_credentials.cc +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.h +5 -5
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +202 -302
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +48 -71
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +22 -35
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +11 -13
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +47 -59
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +8 -9
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +28 -28
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +107 -46
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +15 -14
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +8 -12
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +27 -29
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +2 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +23 -20
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +13 -12
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -24
- data/src/core/lib/security/credentials/tls/tls_credentials.h +7 -5
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -7
- data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
- 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 +21 -19
- data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +35 -40
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +28 -28
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -10
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
- data/src/core/lib/security/security_connector/load_system_roots.h +4 -2
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +8 -10
- data/src/core/lib/security/security_connector/load_system_roots_supported.h +1 -2
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +85 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +35 -35
- data/src/core/lib/security/security_connector/local/local_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/security_connector.cc +11 -15
- data/src/core/lib/security/security_connector/security_connector.h +8 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +28 -32
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -5
- data/src/core/lib/security/security_connector/ssl_utils.cc +42 -42
- data/src/core/lib/security/security_connector/ssl_utils.h +6 -9
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +49 -62
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +6 -7
- data/src/core/lib/security/transport/auth_filters.h +17 -38
- data/src/core/lib/security/transport/client_auth_filter.cc +19 -27
- data/src/core/lib/security/transport/server_auth_filter.cc +23 -32
- data/src/core/lib/security/util/json_util.cc +4 -6
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/percent_encoding.cc +4 -6
- data/src/core/lib/slice/slice.cc +44 -20
- data/src/core/lib/slice/slice.h +8 -11
- data/src/core/lib/slice/slice_buffer.cc +67 -30
- data/src/core/lib/slice/slice_buffer.h +16 -5
- data/src/core/lib/slice/slice_internal.h +11 -7
- data/src/core/lib/slice/slice_refcount.h +7 -15
- data/src/core/lib/slice/slice_string_helpers.cc +3 -3
- data/src/core/lib/slice/slice_string_helpers.h +1 -3
- data/src/core/lib/surface/byte_buffer.cc +2 -4
- data/src/core/lib/surface/byte_buffer_reader.cc +5 -7
- data/src/core/lib/surface/call.cc +205 -3997
- data/src/core/lib/surface/call.h +177 -101
- data/src/core/lib/surface/call_details.cc +5 -5
- data/src/core/lib/surface/call_log_batch.cc +7 -11
- data/src/core/lib/surface/call_test_only.h +2 -4
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +486 -0
- data/src/core/lib/surface/channel.cc +131 -340
- data/src/core/lib/surface/channel.h +100 -118
- data/src/core/lib/surface/channel_create.cc +125 -0
- data/src/core/lib/surface/channel_create.h +42 -0
- data/src/core/lib/surface/channel_init.cc +275 -271
- data/src/core/lib/surface/channel_init.h +190 -115
- data/src/core/lib/surface/channel_stack_type.cc +2 -2
- data/src/core/lib/surface/client_call.cc +441 -0
- data/src/core/lib/surface/client_call.h +187 -0
- data/src/core/lib/surface/completion_queue.cc +127 -124
- data/src/core/lib/surface/completion_queue.h +4 -14
- data/src/core/lib/surface/completion_queue_factory.cc +8 -9
- data/src/core/lib/surface/completion_queue_factory.h +1 -2
- 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 +2 -2
- data/src/core/lib/surface/event_string.h +1 -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 +66 -32
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/init_internally.cc +2 -2
- data/src/core/lib/surface/lame_client.cc +23 -54
- data/src/core/lib/surface/lame_client.h +16 -15
- data/src/core/lib/surface/legacy_channel.cc +428 -0
- data/src/core/lib/surface/legacy_channel.h +113 -0
- data/src/core/lib/surface/metadata_array.cc +6 -7
- data/src/core/lib/surface/server_call.cc +227 -0
- data/src/core/lib/surface/server_call.h +167 -0
- data/src/core/lib/surface/validate_metadata.cc +4 -6
- data/src/core/lib/surface/validate_metadata.h +3 -6
- data/src/core/lib/surface/version.cc +3 -4
- data/src/core/lib/transport/bdp_estimator.cc +14 -20
- data/src/core/lib/transport/bdp_estimator.h +12 -18
- data/src/core/lib/transport/call_arena_allocator.cc +27 -0
- data/src/core/lib/transport/call_arena_allocator.h +91 -0
- data/src/core/lib/transport/call_destination.h +76 -0
- data/src/core/lib/transport/call_filters.cc +79 -308
- data/src/core/lib/transport/call_filters.h +875 -476
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +3 -4
- data/src/core/lib/transport/call_spine.cc +99 -79
- data/src/core/lib/transport/call_spine.h +254 -248
- data/src/core/lib/transport/call_state.cc +39 -0
- data/src/core/lib/transport/call_state.h +1061 -0
- data/src/core/lib/transport/connectivity_state.cc +38 -47
- data/src/core/lib/transport/connectivity_state.h +3 -7
- data/src/core/lib/transport/error_utils.cc +3 -5
- data/src/core/lib/transport/error_utils.h +2 -4
- data/src/core/lib/transport/interception_chain.cc +147 -0
- data/src/core/lib/transport/interception_chain.h +253 -0
- data/src/core/lib/transport/message.cc +3 -4
- data/src/core/lib/transport/message.h +5 -0
- data/src/core/lib/transport/metadata.cc +29 -5
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.cc +76 -8
- data/src/core/lib/transport/metadata_batch.h +116 -31
- data/src/core/lib/transport/metadata_compression_traits.h +2 -3
- data/src/core/lib/transport/metadata_info.cc +55 -0
- data/src/core/lib/transport/metadata_info.h +85 -0
- data/src/core/lib/transport/parsed_metadata.cc +2 -2
- data/src/core/lib/transport/parsed_metadata.h +2 -5
- data/src/core/lib/transport/simple_slice_based_metadata.h +0 -1
- data/src/core/lib/transport/status_conversion.cc +2 -2
- data/src/core/lib/transport/status_conversion.h +2 -3
- data/src/core/lib/transport/timeout_encoding.cc +11 -12
- data/src/core/lib/transport/timeout_encoding.h +1 -3
- data/src/core/lib/transport/transport.cc +7 -13
- data/src/core/lib/transport/transport.h +94 -88
- data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
- data/src/core/lib/transport/transport_op_string.cc +2 -13
- data/src/core/load_balancing/address_filtering.cc +3 -5
- data/src/core/load_balancing/address_filtering.h +3 -4
- data/src/core/load_balancing/backend_metric_parser.cc +94 -0
- data/src/core/load_balancing/backend_metric_parser.h +45 -0
- data/src/core/load_balancing/child_policy_handler.cc +43 -47
- data/src/core/load_balancing/child_policy_handler.h +2 -3
- data/src/core/load_balancing/delegating_helper.h +14 -8
- data/src/core/load_balancing/endpoint_list.cc +18 -22
- data/src/core/load_balancing/endpoint_list.h +20 -16
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +38 -34
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +23 -7
- data/src/core/load_balancing/grpclb/grpclb.cc +216 -255
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +3 -5
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -8
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -11
- data/src/core/load_balancing/grpclb/load_balancer_api.h +3 -6
- data/src/core/load_balancing/health_check_client.cc +68 -89
- data/src/core/load_balancing/health_check_client.h +1 -1
- data/src/core/load_balancing/health_check_client_internal.h +10 -13
- data/src/core/load_balancing/lb_policy.cc +7 -10
- data/src/core/load_balancing/lb_policy.h +84 -42
- data/src/core/load_balancing/lb_policy_factory.h +3 -4
- data/src/core/load_balancing/lb_policy_registry.cc +7 -9
- data/src/core/load_balancing/lb_policy_registry.h +5 -6
- data/src/core/load_balancing/oob_backend_metric.cc +28 -35
- data/src/core/load_balancing/oob_backend_metric.h +1 -1
- data/src/core/load_balancing/oob_backend_metric_internal.h +12 -14
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +172 -217
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +5 -7
- data/src/core/load_balancing/pick_first/pick_first.cc +1235 -409
- data/src/core/load_balancing/priority/priority.cc +115 -153
- data/src/core/load_balancing/ring_hash/ring_hash.cc +94 -101
- data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
- data/src/core/load_balancing/rls/rls.cc +516 -391
- data/src/core/load_balancing/rls/rls.h +26 -0
- data/src/core/load_balancing/round_robin/round_robin.cc +88 -559
- data/src/core/load_balancing/subchannel_interface.h +18 -7
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +7 -8
- 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 +240 -1042
- data/src/core/load_balancing/weighted_target/weighted_target.cc +91 -124
- data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
- data/src/core/load_balancing/xds/cds.cc +70 -87
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +257 -188
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +59 -92
- data/src/core/load_balancing/xds/xds_override_host.cc +141 -203
- data/src/core/load_balancing/xds/xds_override_host.h +6 -7
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +45 -55
- data/src/core/plugin_registry/grpc_plugin_registry.cc +28 -16
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +7 -4
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +97 -72
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -5
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +8 -11
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +156 -137
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +177 -162
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/resolver/dns/dns_resolver_plugin.cc +11 -13
- data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +58 -65
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +5 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/native/dns_resolver.cc +24 -34
- data/src/core/resolver/dns/native/dns_resolver.h +1 -1
- data/src/core/resolver/endpoint_addresses.cc +5 -8
- data/src/core/resolver/endpoint_addresses.h +7 -5
- data/src/core/resolver/fake/fake_resolver.cc +12 -14
- data/src/core/resolver/fake/fake_resolver.h +7 -9
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +38 -35
- data/src/core/resolver/polling_resolver.cc +42 -58
- data/src/core/resolver/polling_resolver.h +6 -8
- data/src/core/resolver/resolver.cc +3 -7
- data/src/core/resolver/resolver.h +2 -8
- data/src/core/resolver/resolver_factory.h +2 -3
- data/src/core/resolver/resolver_registry.cc +12 -14
- data/src/core/resolver/resolver_registry.h +4 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +12 -14
- 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 +100 -183
- data/src/core/resolver/xds/xds_dependency_manager.h +16 -81
- data/src/core/resolver/xds/xds_resolver.cc +157 -142
- data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
- data/src/core/server/server.cc +1931 -0
- data/src/core/server/server.h +569 -0
- data/src/core/server/server_call_tracer_filter.cc +117 -0
- data/src/core/server/server_call_tracer_filter.h +28 -0
- data/src/core/server/server_config_selector.h +82 -0
- data/src/core/server/server_config_selector_filter.cc +175 -0
- data/src/core/server/server_config_selector_filter.h +33 -0
- data/src/core/server/server_interface.h +45 -0
- data/src/core/server/xds_channel_stack_modifier.cc +107 -0
- data/src/core/server/xds_channel_stack_modifier.h +62 -0
- data/src/core/server/xds_server_config_fetcher.cc +1384 -0
- data/src/core/service_config/service_config.h +3 -6
- data/src/core/service_config/service_config_call_data.h +20 -19
- data/src/core/service_config/service_config_channel_arg_filter.cc +139 -0
- data/src/core/service_config/service_config_impl.cc +9 -11
- data/src/core/service_config/service_config_impl.h +6 -9
- data/src/core/service_config/service_config_parser.cc +4 -9
- 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 +4 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -4
- data/src/core/tsi/alts/crypt/gsec.h +3 -5
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -19
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +0 -1
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +2 -3
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +2 -3
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -13
- data/src/core/tsi/alts/frame_protector/frame_handler.h +0 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +84 -86
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -6
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +2 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +77 -76
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +6 -5
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +4 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +17 -19
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +12 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +16 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +13 -16
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +0 -1
- data/src/core/tsi/fake_transport_security.cc +31 -34
- data/src/core/tsi/local_transport_security.cc +9 -11
- data/src/core/tsi/local_transport_security.h +1 -2
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +14 -16
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +7 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -17
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +4 -7
- data/src/core/tsi/ssl_transport_security.cc +344 -193
- data/src/core/tsi/ssl_transport_security.h +5 -8
- data/src/core/tsi/ssl_transport_security_utils.cc +208 -27
- data/src/core/tsi/ssl_transport_security_utils.h +40 -5
- data/src/core/tsi/ssl_types.h +0 -1
- data/src/core/tsi/transport_security.cc +3 -9
- data/src/core/tsi/transport_security.h +0 -3
- data/src/core/tsi/transport_security_grpc.cc +2 -2
- data/src/core/tsi/transport_security_grpc.h +1 -2
- data/src/core/tsi/transport_security_interface.h +2 -7
- data/src/core/util/alloc.cc +69 -0
- data/src/core/util/alloc.h +28 -0
- data/src/core/util/atm.cc +34 -0
- data/src/core/util/atomic_utils.h +47 -0
- data/src/core/util/avl.h +324 -0
- data/src/core/util/backoff.cc +46 -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 +380 -0
- data/src/core/util/http_client/httpcli.h +269 -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 +167 -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 +402 -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 +155 -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 +153 -0
- data/src/core/xds/grpc/certificate_provider_store.h +132 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +136 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +80 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +123 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.h +67 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +238 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +167 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +216 -0
- data/src/core/xds/grpc/xds_certificate_provider.h +116 -0
- data/src/core/xds/grpc/xds_client_grpc.cc +445 -0
- data/src/core/xds/grpc/xds_client_grpc.h +115 -0
- data/src/core/xds/grpc/xds_cluster.cc +79 -0
- data/src/core/xds/grpc/xds_cluster.h +135 -0
- 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 +137 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +96 -0
- data/src/core/xds/grpc/xds_common_types.cc +103 -0
- data/src/core/xds/grpc/xds_common_types.h +90 -0
- 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 +97 -0
- data/src/core/xds/grpc/xds_endpoint.h +128 -0
- data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
- data/src/core/xds/grpc/xds_health_status.cc +73 -0
- data/src/core/xds/grpc/xds_health_status.h +88 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +249 -0
- data/src/core/xds/grpc/xds_http_fault_filter.h +62 -0
- 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 +602 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.h +62 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +230 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +62 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +365 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.h +70 -0
- data/src/core/xds/grpc/xds_listener.cc +175 -0
- data/src/core/xds/grpc/xds_listener.h +203 -0
- 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 +150 -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 +282 -0
- data/src/core/xds/grpc/xds_route_config.h +220 -0
- 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 +297 -0
- data/src/core/xds/grpc/xds_routing.h +112 -0
- 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 +393 -0
- data/src/core/xds/grpc/xds_transport_grpc.h +149 -0
- 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 +353 -0
- data/src/core/xds/xds_client/xds_api.h +166 -0
- 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 +37 -0
- data/src/core/xds/xds_client/xds_bootstrap.h +88 -0
- data/src/core/xds/xds_client/xds_channel_args.h +32 -0
- data/src/core/xds/xds_client/xds_client.cc +1689 -0
- data/src/core/xds/xds_client/xds_client.h +334 -0
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +41 -0
- data/src/core/xds/xds_client/xds_resource_type.h +97 -0
- data/src/core/xds/xds_client/xds_resource_type_impl.h +87 -0
- data/src/core/xds/xds_client/xds_transport.h +104 -0
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +1 -4
- 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 -32
- data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_channel.c +42 -36
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -5
- 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 +17 -16
- data/src/ruby/ext/grpc/rb_grpc.h +8 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +136 -146
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +205 -219
- data/src/ruby/ext/grpc/rb_server.c +47 -27
- data/src/ruby/ext/grpc/rb_server_credentials.c +4 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +2 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +5 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +2 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +16 -7
- 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/generic/rpc_server_spec.rb +25 -0
- 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/examine_stack.cc +320 -0
- data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
- 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 +93 -0
- data/third_party/abseil-cpp/absl/log/check.h +209 -0
- data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
- data/third_party/abseil-cpp/absl/log/globals.h +231 -0
- data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
- data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +138 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +462 -0
- data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
- data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
- data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
- data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
- data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
- data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
- data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
- data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +690 -0
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +394 -0
- data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
- data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
- data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
- data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +127 -0
- data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
- data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
- data/third_party/abseil-cpp/absl/log/internal/strip.h +108 -0
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
- data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
- data/third_party/abseil-cpp/absl/log/log.h +365 -0
- data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
- data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
- data/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
- data/third_party/abseil-cpp/absl/log/log_sink.h +71 -0
- data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
- 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/internal.h +1 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +113 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +15 -20
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -18
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +19 -15
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +63 -94
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +20 -28
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +36 -20
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +81 -60
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +41 -120
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +120 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +6 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc +876 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc +1320 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc +331 -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_inv.c.inc +222 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc +744 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc +1077 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc +354 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc +499 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc +1464 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc +734 -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/scalar.c.inc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc +317 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc +479 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc +1038 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc +1351 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc +121 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc +1038 -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.c.inc +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +78 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc +439 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc +543 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +295 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +143 -45
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +25 -12
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -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_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +43 -41
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- 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.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +26 -33
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -17
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +51 -78
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +12 -29
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -6
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +1514 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +24 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +88 -45
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +10 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +25 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +15 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +146 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +90 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- 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.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +66 -57
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +19 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +62 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +409 -111
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +10 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +13 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2927 -2394
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +301 -66
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +66 -58
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +17 -7
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +138 -54
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +159 -117
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +349 -202
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +45 -17
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +66 -385
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +21 -19
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +423 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +99 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +139 -83
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +116 -93
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +21 -27
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +54 -7
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +68 -23
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
- data/third_party/upb/upb/base/descriptor_constants.h +29 -2
- data/third_party/upb/upb/base/internal/endian.h +46 -0
- data/third_party/upb/upb/base/status.h +1 -1
- data/third_party/upb/upb/base/status.hpp +5 -1
- data/third_party/upb/upb/base/string_view.h +7 -5
- data/third_party/upb/upb/base/upcast.h +29 -0
- data/third_party/upb/upb/generated_code_support.h +2 -1
- data/third_party/upb/upb/json/decode.c +161 -64
- data/third_party/upb/upb/json/decode.h +29 -29
- data/third_party/upb/upb/json/encode.c +5 -28
- data/third_party/upb/upb/json/encode.h +3 -26
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/arena.c +312 -109
- data/third_party/upb/upb/mem/arena.h +27 -68
- data/third_party/upb/upb/mem/arena.hpp +13 -5
- data/third_party/upb/upb/mem/internal/arena.h +78 -57
- data/third_party/upb/upb/message/accessors.c +17 -45
- data/third_party/upb/upb/message/accessors.h +209 -314
- data/third_party/upb/upb/message/array.c +78 -83
- data/third_party/upb/upb/message/array.h +26 -30
- data/third_party/upb/upb/message/compat.c +39 -0
- data/third_party/upb/upb/message/compat.h +41 -0
- data/third_party/upb/upb/message/copy.c +325 -0
- data/third_party/upb/upb/message/copy.h +56 -0
- data/third_party/upb/upb/message/internal/accessors.h +738 -176
- data/third_party/upb/upb/message/internal/array.h +86 -79
- 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 +63 -0
- data/third_party/upb/upb/message/internal/extension.h +14 -17
- data/third_party/upb/upb/message/internal/map.h +43 -41
- data/third_party/upb/upb/message/internal/map_entry.h +14 -39
- data/third_party/upb/upb/message/internal/map_sorter.h +19 -39
- data/third_party/upb/upb/message/internal/message.c +75 -0
- data/third_party/upb/upb/message/internal/message.h +36 -41
- data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
- data/third_party/upb/upb/message/internal/types.h +46 -11
- data/third_party/upb/upb/message/map.c +28 -26
- data/third_party/upb/upb/message/map.h +16 -40
- data/third_party/upb/upb/message/map_gencode_util.h +3 -26
- data/third_party/upb/upb/message/map_sorter.c +22 -34
- 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 +106 -103
- data/third_party/upb/upb/message/message.h +19 -8
- data/third_party/upb/upb/message/tagged_ptr.h +15 -36
- data/third_party/upb/upb/message/value.h +29 -5
- data/third_party/upb/upb/mini_descriptor/build_enum.c +23 -14
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +145 -109
- data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
- data/third_party/upb/upb/mini_descriptor/link.c +47 -33
- data/third_party/upb/upb/mini_descriptor/link.h +1 -1
- data/third_party/upb/upb/mini_table/enum.h +4 -8
- data/third_party/upb/upb/mini_table/extension.h +29 -0
- data/third_party/upb/upb/mini_table/extension_registry.c +27 -2
- data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
- data/third_party/upb/upb/mini_table/field.h +28 -68
- data/third_party/upb/upb/mini_table/file.h +31 -0
- data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
- data/third_party/upb/upb/mini_table/internal/extension.h +43 -3
- data/third_party/upb/upb/mini_table/internal/field.h +137 -28
- data/third_party/upb/upb/mini_table/internal/file.h +47 -10
- data/third_party/upb/upb/mini_table/internal/message.c +37 -9
- data/third_party/upb/upb/mini_table/internal/message.h +138 -23
- data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
- data/third_party/upb/upb/mini_table/internal/sub.h +44 -4
- data/third_party/upb/upb/mini_table/message.c +18 -19
- data/third_party/upb/upb/mini_table/message.h +35 -25
- data/third_party/upb/upb/mini_table/sub.h +32 -1
- data/third_party/upb/upb/port/def.inc +125 -11
- data/third_party/upb/upb/port/undef.inc +11 -1
- data/third_party/upb/upb/reflection/common.h +1 -11
- data/third_party/upb/upb/reflection/def.hpp +42 -3
- data/third_party/upb/upb/reflection/def_pool.c +81 -2
- data/third_party/upb/upb/reflection/def_pool.h +10 -2
- data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
- data/third_party/upb/upb/reflection/enum_def.c +46 -19
- data/third_party/upb/upb/reflection/enum_def.h +2 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +38 -14
- data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
- data/third_party/upb/upb/reflection/extension_range.c +13 -5
- data/third_party/upb/upb/reflection/extension_range.h +2 -0
- data/third_party/upb/upb/reflection/field_def.c +214 -141
- data/third_party/upb/upb/reflection/field_def.h +14 -1
- data/third_party/upb/upb/reflection/file_def.c +124 -9
- data/third_party/upb/upb/reflection/file_def.h +6 -0
- data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
- data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
- data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
- data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
- data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
- data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
- data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
- data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
- data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
- data/third_party/upb/upb/reflection/message.c +52 -20
- data/third_party/upb/upb/reflection/message.h +7 -7
- data/third_party/upb/upb/reflection/message_def.c +68 -34
- data/third_party/upb/upb/reflection/message_def.h +2 -0
- data/third_party/upb/upb/reflection/method_def.c +20 -9
- data/third_party/upb/upb/reflection/method_def.h +10 -7
- data/third_party/upb/upb/reflection/oneof_def.c +20 -11
- data/third_party/upb/upb/reflection/oneof_def.h +3 -1
- data/third_party/upb/upb/reflection/service_def.c +25 -13
- data/third_party/upb/upb/reflection/service_def.h +8 -5
- data/third_party/upb/upb/text/encode.c +65 -311
- 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 +353 -269
- data/third_party/upb/upb/wire/decode.h +25 -2
- data/third_party/upb/upb/wire/encode.c +160 -105
- data/third_party/upb/upb/wire/encode.h +16 -4
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +1000 -0
- data/third_party/upb/upb/wire/internal/decode_fast.h +148 -0
- data/third_party/upb/upb/wire/internal/decoder.h +127 -0
- data/third_party/upb/upb/wire/internal/reader.h +61 -0
- data/third_party/upb/upb/wire/reader.c +10 -8
- data/third_party/upb/upb/wire/reader.h +20 -53
- data/third_party/utf8_range/utf8_range.c +467 -0
- data/third_party/utf8_range/utf8_range.h +9 -8
- metadata +541 -399
- data/src/core/client_channel/backend_metric.cc +0 -95
- data/src/core/client_channel/backend_metric.h +0 -47
- data/src/core/client_channel/channel_connectivity.cc +0 -265
- data/src/core/client_channel/client_channel_channelz.cc +0 -93
- data/src/core/client_channel/client_channel_channelz.h +0 -85
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/client_channel/http_proxy_mapper.cc +0 -305
- data/src/core/client_channel/http_proxy_mapper.h +0 -53
- data/src/core/client_channel/service_config_channel_arg_filter.cc +0 -136
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
- data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
- data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +0 -83
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +0 -170
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +0 -33
- data/src/core/ext/gcp/metadata_query.cc +0 -136
- 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 -44
- 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/xds/certificate_provider_store.cc +0 -155
- data/src/core/ext/xds/certificate_provider_store.h +0 -133
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +0 -138
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +0 -82
- data/src/core/ext/xds/upb_utils.h +0 -45
- data/src/core/ext/xds/xds_api.cc +0 -572
- data/src/core/ext/xds/xds_api.h +0 -189
- data/src/core/ext/xds/xds_audit_logger_registry.cc +0 -122
- data/src/core/ext/xds/xds_audit_logger_registry.h +0 -68
- data/src/core/ext/xds/xds_bootstrap.cc +0 -38
- data/src/core/ext/xds/xds_bootstrap.h +0 -90
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +0 -365
- data/src/core/ext/xds/xds_bootstrap_grpc.h +0 -182
- data/src/core/ext/xds/xds_certificate_provider.cc +0 -217
- data/src/core/ext/xds/xds_certificate_provider.h +0 -116
- data/src/core/ext/xds/xds_channel_args.h +0 -32
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +0 -107
- data/src/core/ext/xds/xds_channel_stack_modifier.h +0 -63
- data/src/core/ext/xds/xds_client.cc +0 -2123
- data/src/core/ext/xds/xds_client.h +0 -358
- data/src/core/ext/xds/xds_client_grpc.cc +0 -281
- data/src/core/ext/xds/xds_client_grpc.h +0 -96
- data/src/core/ext/xds/xds_client_stats.cc +0 -173
- data/src/core/ext/xds/xds_client_stats.h +0 -251
- data/src/core/ext/xds/xds_cluster.cc +0 -795
- data/src/core/ext/xds/xds_cluster.h +0 -142
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +0 -140
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +0 -97
- data/src/core/ext/xds/xds_common_types.cc +0 -509
- data/src/core/ext/xds/xds_common_types.h +0 -108
- data/src/core/ext/xds/xds_endpoint.cc +0 -516
- data/src/core/ext/xds/xds_endpoint.h +0 -150
- data/src/core/ext/xds/xds_health_status.cc +0 -75
- data/src/core/ext/xds/xds_health_status.h +0 -91
- data/src/core/ext/xds/xds_http_fault_filter.cc +0 -238
- data/src/core/ext/xds/xds_http_fault_filter.h +0 -58
- data/src/core/ext/xds/xds_http_filters.cc +0 -117
- data/src/core/ext/xds/xds_http_filters.h +0 -182
- data/src/core/ext/xds/xds_http_rbac_filter.cc +0 -588
- data/src/core/ext/xds/xds_http_rbac_filter.h +0 -58
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +0 -218
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +0 -58
- data/src/core/ext/xds/xds_lb_policy_registry.cc +0 -371
- data/src/core/ext/xds/xds_lb_policy_registry.h +0 -71
- data/src/core/ext/xds/xds_listener.cc +0 -1142
- data/src/core/ext/xds/xds_listener.h +0 -236
- data/src/core/ext/xds/xds_resource_type.h +0 -98
- data/src/core/ext/xds/xds_resource_type_impl.h +0 -88
- data/src/core/ext/xds/xds_route_config.cc +0 -1198
- data/src/core/ext/xds/xds_route_config.h +0 -253
- data/src/core/ext/xds/xds_routing.cc +0 -264
- data/src/core/ext/xds/xds_routing.h +0 -106
- data/src/core/ext/xds/xds_server_config_fetcher.cc +0 -1392
- data/src/core/ext/xds/xds_transport.h +0 -89
- data/src/core/ext/xds/xds_transport_grpc.cc +0 -365
- data/src/core/ext/xds/xds_transport_grpc.h +0 -139
- 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 -365
- data/src/core/lib/channel/call_tracer.h +0 -225
- 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/channel_trace.cc +0 -187
- data/src/core/lib/channel/channel_trace.h +0 -138
- data/src/core/lib/channel/channelz.cc +0 -610
- data/src/core/lib/channel/channelz.h +0 -381
- data/src/core/lib/channel/channelz_registry.cc +0 -281
- data/src/core/lib/channel/channelz_registry.h +0 -102
- data/src/core/lib/channel/context.h +0 -77
- data/src/core/lib/channel/server_call_tracer_filter.cc +0 -111
- data/src/core/lib/channel/tcp_tracer.h +0 -140
- data/src/core/lib/config/config_vars.cc +0 -152
- data/src/core/lib/config/config_vars.h +0 -127
- data/src/core/lib/config/config_vars_non_generated.cc +0 -49
- data/src/core/lib/config/core_configuration.cc +0 -111
- 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 -509
- data/src/core/lib/debug/stats_data.h +0 -403
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -49
- data/src/core/lib/gpr/alloc.cc +0 -71
- 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 -140
- data/src/core/lib/gpr/log_internal.h +0 -55
- 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 -159
- data/src/core/lib/gpr/posix/time.cc +0 -182
- data/src/core/lib/gpr/posix/tmpfile.cc +0 -71
- 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 -124
- data/src/core/lib/gpr/sync_abseil.cc +0 -110
- data/src/core/lib/gpr/time.cc +0 -269
- 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 -122
- data/src/core/lib/gpr/windows/time.cc +0 -105
- data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
- data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
- 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 -257
- 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 -43
- 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 -356
- 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 -242
- data/src/core/lib/gprpp/fork.h +0 -98
- data/src/core/lib/gprpp/host_port.cc +0 -114
- 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 -76
- 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 -53
- data/src/core/lib/gprpp/mpscq.cc +0 -108
- data/src/core/lib/gprpp/mpscq.h +0 -99
- 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 -150
- 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 -35
- data/src/core/lib/gprpp/per_cpu.h +0 -104
- 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 -54
- data/src/core/lib/gprpp/posix/thd.cc +0 -247
- data/src/core/lib/gprpp/ref_counted.h +0 -391
- data/src/core/lib/gprpp/ref_counted_ptr.h +0 -444
- data/src/core/lib/gprpp/ref_counted_string.cc +0 -44
- data/src/core/lib/gprpp/ref_counted_string.h +0 -161
- data/src/core/lib/gprpp/single_set_ptr.h +0 -87
- 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 -379
- 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 -81
- data/src/core/lib/gprpp/time_util.h +0 -42
- 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/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 -50
- data/src/core/lib/gprpp/windows/thd.cc +0 -182
- data/src/core/lib/gprpp/work_serializer.cc +0 -558
- data/src/core/lib/gprpp/work_serializer.h +0 -107
- data/src/core/lib/gprpp/xxhash_inline.h +0 -29
- data/src/core/lib/handshaker/proxy_mapper.h +0 -53
- data/src/core/lib/handshaker/proxy_mapper_registry.cc +0 -71
- data/src/core/lib/handshaker/proxy_mapper_registry.h +0 -75
- data/src/core/lib/http/format_request.cc +0 -137
- data/src/core/lib/http/format_request.h +0 -38
- data/src/core/lib/http/httpcli.cc +0 -392
- data/src/core/lib/http/httpcli.h +0 -268
- data/src/core/lib/http/httpcli_security_connector.cc +0 -213
- data/src/core/lib/http/httpcli_ssl_credentials.h +0 -39
- data/src/core/lib/http/parser.cc +0 -451
- data/src/core/lib/http/parser.h +0 -130
- 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 -30
- 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 -216
- 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/security/transport/legacy_server_auth_filter.cc +0 -244
- data/src/core/lib/security/transport/secure_endpoint.cc +0 -565
- data/src/core/lib/security/transport/secure_endpoint.h +0 -43
- data/src/core/lib/security/transport/security_handshaker.cc +0 -673
- data/src/core/lib/security/transport/security_handshaker.h +0 -45
- data/src/core/lib/security/transport/tsi_error.cc +0 -31
- data/src/core/lib/security/transport/tsi_error.h +0 -30
- data/src/core/lib/slice/b64.cc +0 -239
- data/src/core/lib/slice/b64.h +0 -52
- 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 -53
- data/src/core/lib/surface/builtins.cc +0 -37
- data/src/core/lib/surface/builtins.h +0 -26
- data/src/core/lib/surface/call_trace.cc +0 -163
- data/src/core/lib/surface/call_trace.h +0 -30
- data/src/core/lib/surface/channel_ping.cc +0 -69
- data/src/core/lib/surface/server.cc +0 -2045
- data/src/core/lib/surface/server.h +0 -551
- 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 -179
- data/src/core/lib/transport/batch_builder.h +0 -478
- data/src/core/lib/transport/call_factory.cc +0 -41
- data/src/core/lib/transport/call_factory.h +0 -56
- data/src/core/lib/transport/call_size_estimator.cc +0 -41
- data/src/core/lib/transport/call_size_estimator.h +0 -52
- data/src/core/lib/transport/handshaker.cc +0 -229
- data/src/core/lib/transport/handshaker.h +0 -165
- data/src/core/lib/transport/handshaker_factory.h +0 -74
- data/src/core/lib/transport/handshaker_registry.cc +0 -61
- data/src/core/lib/transport/handshaker_registry.h +0 -69
- data/src/core/lib/transport/http_connect_handshaker.cc +0 -400
- data/src/core/lib/transport/http_connect_handshaker.h +0 -42
- data/src/core/lib/transport/tcp_connect_handshaker.cc +0 -244
- data/src/core/lib/transport/tcp_connect_handshaker.h +0 -39
- data/src/core/lib/uri/uri_parser.cc +0 -372
- data/src/core/lib/uri/uri_parser.h +0 -101
- data/src/core/load_balancing/subchannel_list.h +0 -455
- data/src/core/resolver/binder/binder_resolver.cc +0 -147
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- data/third_party/boringssl-with-bazel/err_data.c +0 -1512
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +0 -267
- 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_extra.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +0 -222
- 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 -1070
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -355
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -553
- 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/scalar.c +0 -169
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
- 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 -67
- 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/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 -1337
- 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 -331
- 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/fipsmodule/tls/kdf.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +0 -79
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +0 -136
- data/third_party/upb/upb/message/types.h +0 -15
- data/third_party/upb/upb/wire/decode_fast.c +0 -996
- data/third_party/upb/upb/wire/decode_fast.h +0 -147
- data/third_party/upb/upb/wire/internal/decode.h +0 -143
- data/third_party/upb/upb/wire/internal/swap.h +0 -45
- data/third_party/utf8_range/naive.c +0 -92
- data/third_party/utf8_range/range2-neon.c +0 -157
- data/third_party/utf8_range/range2-sse.c +0 -170
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -3,10 +3,11 @@
|
|
3
3
|
* envoy/admin/v3/config_dump_shared.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_ADMIN_V3_CONFIG_DUMP_SHARED_PROTO_UPB_H__UPB_H_
|
10
|
+
#define ENVOY_ADMIN_V3_CONFIG_DUMP_SHARED_PROTO_UPB_H__UPB_H_
|
10
11
|
|
11
12
|
#include "upb/generated_code_support.h"
|
12
13
|
|
@@ -24,25 +25,25 @@
|
|
24
25
|
extern "C" {
|
25
26
|
#endif
|
26
27
|
|
27
|
-
typedef struct envoy_admin_v3_UpdateFailureState envoy_admin_v3_UpdateFailureState;
|
28
|
-
typedef struct envoy_admin_v3_ListenersConfigDump envoy_admin_v3_ListenersConfigDump;
|
29
|
-
typedef struct envoy_admin_v3_ListenersConfigDump_StaticListener envoy_admin_v3_ListenersConfigDump_StaticListener;
|
30
|
-
typedef struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState envoy_admin_v3_ListenersConfigDump_DynamicListenerState;
|
31
|
-
typedef struct envoy_admin_v3_ListenersConfigDump_DynamicListener envoy_admin_v3_ListenersConfigDump_DynamicListener;
|
32
|
-
typedef struct envoy_admin_v3_ClustersConfigDump envoy_admin_v3_ClustersConfigDump;
|
33
|
-
typedef struct envoy_admin_v3_ClustersConfigDump_StaticCluster envoy_admin_v3_ClustersConfigDump_StaticCluster;
|
34
|
-
typedef struct envoy_admin_v3_ClustersConfigDump_DynamicCluster envoy_admin_v3_ClustersConfigDump_DynamicCluster;
|
35
|
-
typedef struct envoy_admin_v3_RoutesConfigDump envoy_admin_v3_RoutesConfigDump;
|
36
|
-
typedef struct envoy_admin_v3_RoutesConfigDump_StaticRouteConfig envoy_admin_v3_RoutesConfigDump_StaticRouteConfig;
|
37
|
-
typedef struct envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig;
|
38
|
-
typedef struct envoy_admin_v3_ScopedRoutesConfigDump envoy_admin_v3_ScopedRoutesConfigDump;
|
39
|
-
typedef struct envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs;
|
40
|
-
typedef struct envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs;
|
41
|
-
typedef struct envoy_admin_v3_EndpointsConfigDump envoy_admin_v3_EndpointsConfigDump;
|
42
|
-
typedef struct envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig;
|
43
|
-
typedef struct envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig;
|
44
|
-
typedef struct envoy_admin_v3_EcdsConfigDump envoy_admin_v3_EcdsConfigDump;
|
45
|
-
typedef struct envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig;
|
28
|
+
typedef struct envoy_admin_v3_UpdateFailureState { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_UpdateFailureState;
|
29
|
+
typedef struct envoy_admin_v3_ListenersConfigDump { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ListenersConfigDump;
|
30
|
+
typedef struct envoy_admin_v3_ListenersConfigDump_StaticListener { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ListenersConfigDump_StaticListener;
|
31
|
+
typedef struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ListenersConfigDump_DynamicListenerState;
|
32
|
+
typedef struct envoy_admin_v3_ListenersConfigDump_DynamicListener { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ListenersConfigDump_DynamicListener;
|
33
|
+
typedef struct envoy_admin_v3_ClustersConfigDump { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ClustersConfigDump;
|
34
|
+
typedef struct envoy_admin_v3_ClustersConfigDump_StaticCluster { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ClustersConfigDump_StaticCluster;
|
35
|
+
typedef struct envoy_admin_v3_ClustersConfigDump_DynamicCluster { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ClustersConfigDump_DynamicCluster;
|
36
|
+
typedef struct envoy_admin_v3_RoutesConfigDump { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_RoutesConfigDump;
|
37
|
+
typedef struct envoy_admin_v3_RoutesConfigDump_StaticRouteConfig { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_RoutesConfigDump_StaticRouteConfig;
|
38
|
+
typedef struct envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig;
|
39
|
+
typedef struct envoy_admin_v3_ScopedRoutesConfigDump { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ScopedRoutesConfigDump;
|
40
|
+
typedef struct envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs;
|
41
|
+
typedef struct envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs;
|
42
|
+
typedef struct envoy_admin_v3_EndpointsConfigDump { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_EndpointsConfigDump;
|
43
|
+
typedef struct envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig;
|
44
|
+
typedef struct envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig;
|
45
|
+
typedef struct envoy_admin_v3_EcdsConfigDump { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_EcdsConfigDump;
|
46
|
+
typedef struct envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig { upb_Message UPB_PRIVATE(base); } envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig;
|
46
47
|
struct google_protobuf_Any;
|
47
48
|
struct google_protobuf_Timestamp;
|
48
49
|
|
@@ -64,7 +65,8 @@ UPB_INLINE envoy_admin_v3_UpdateFailureState* envoy_admin_v3_UpdateFailureState_
|
|
64
65
|
UPB_INLINE envoy_admin_v3_UpdateFailureState* envoy_admin_v3_UpdateFailureState_parse(const char* buf, size_t size, upb_Arena* arena) {
|
65
66
|
envoy_admin_v3_UpdateFailureState* ret = envoy_admin_v3_UpdateFailureState_new(arena);
|
66
67
|
if (!ret) return NULL;
|
67
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__UpdateFailureState_msg_init, NULL, 0, arena) !=
|
68
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__UpdateFailureState_msg_init, NULL, 0, arena) !=
|
69
|
+
kUpb_DecodeStatus_Ok) {
|
68
70
|
return NULL;
|
69
71
|
}
|
70
72
|
return ret;
|
@@ -74,79 +76,86 @@ UPB_INLINE envoy_admin_v3_UpdateFailureState* envoy_admin_v3_UpdateFailureState_
|
|
74
76
|
int options, upb_Arena* arena) {
|
75
77
|
envoy_admin_v3_UpdateFailureState* ret = envoy_admin_v3_UpdateFailureState_new(arena);
|
76
78
|
if (!ret) return NULL;
|
77
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__UpdateFailureState_msg_init, extreg, options,
|
78
|
-
|
79
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__UpdateFailureState_msg_init, extreg, options,
|
80
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
79
81
|
return NULL;
|
80
82
|
}
|
81
83
|
return ret;
|
82
84
|
}
|
83
85
|
UPB_INLINE char* envoy_admin_v3_UpdateFailureState_serialize(const envoy_admin_v3_UpdateFailureState* msg, upb_Arena* arena, size_t* len) {
|
84
86
|
char* ptr;
|
85
|
-
(void)upb_Encode(msg, &envoy__admin__v3__UpdateFailureState_msg_init, 0, arena, &ptr, len);
|
87
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__UpdateFailureState_msg_init, 0, arena, &ptr, len);
|
86
88
|
return ptr;
|
87
89
|
}
|
88
90
|
UPB_INLINE char* envoy_admin_v3_UpdateFailureState_serialize_ex(const envoy_admin_v3_UpdateFailureState* msg, int options,
|
89
91
|
upb_Arena* arena, size_t* len) {
|
90
92
|
char* ptr;
|
91
|
-
(void)upb_Encode(msg, &envoy__admin__v3__UpdateFailureState_msg_init, options, arena, &ptr, len);
|
93
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__UpdateFailureState_msg_init, options, arena, &ptr, len);
|
92
94
|
return ptr;
|
93
95
|
}
|
94
96
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_clear_failed_configuration(envoy_admin_v3_UpdateFailureState* msg) {
|
95
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
96
|
-
|
97
|
+
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)};
|
98
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
97
99
|
}
|
98
100
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_UpdateFailureState_failed_configuration(const envoy_admin_v3_UpdateFailureState* msg) {
|
99
101
|
const struct google_protobuf_Any* default_val = NULL;
|
100
102
|
const struct google_protobuf_Any* ret;
|
101
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
102
|
-
|
103
|
+
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)};
|
104
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
105
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
106
|
+
&default_val, &ret);
|
103
107
|
return ret;
|
104
108
|
}
|
105
109
|
UPB_INLINE bool envoy_admin_v3_UpdateFailureState_has_failed_configuration(const envoy_admin_v3_UpdateFailureState* msg) {
|
106
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
107
|
-
return
|
110
|
+
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)};
|
111
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
108
112
|
}
|
109
113
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_clear_last_update_attempt(envoy_admin_v3_UpdateFailureState* msg) {
|
110
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
111
|
-
|
114
|
+
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)};
|
115
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
112
116
|
}
|
113
117
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_UpdateFailureState_last_update_attempt(const envoy_admin_v3_UpdateFailureState* msg) {
|
114
118
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
115
119
|
const struct google_protobuf_Timestamp* ret;
|
116
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
117
|
-
|
120
|
+
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)};
|
121
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
122
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
123
|
+
&default_val, &ret);
|
118
124
|
return ret;
|
119
125
|
}
|
120
126
|
UPB_INLINE bool envoy_admin_v3_UpdateFailureState_has_last_update_attempt(const envoy_admin_v3_UpdateFailureState* msg) {
|
121
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
122
|
-
return
|
127
|
+
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)};
|
128
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
123
129
|
}
|
124
130
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_clear_details(envoy_admin_v3_UpdateFailureState* msg) {
|
125
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
126
|
-
|
131
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
132
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
127
133
|
}
|
128
134
|
UPB_INLINE upb_StringView envoy_admin_v3_UpdateFailureState_details(const envoy_admin_v3_UpdateFailureState* msg) {
|
129
135
|
upb_StringView default_val = upb_StringView_FromString("");
|
130
136
|
upb_StringView ret;
|
131
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
132
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
137
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
138
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
139
|
+
&default_val, &ret);
|
133
140
|
return ret;
|
134
141
|
}
|
135
142
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_clear_version_info(envoy_admin_v3_UpdateFailureState* msg) {
|
136
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
137
|
-
|
143
|
+
const upb_MiniTableField field = {4, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
144
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
138
145
|
}
|
139
146
|
UPB_INLINE upb_StringView envoy_admin_v3_UpdateFailureState_version_info(const envoy_admin_v3_UpdateFailureState* msg) {
|
140
147
|
upb_StringView default_val = upb_StringView_FromString("");
|
141
148
|
upb_StringView ret;
|
142
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
143
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
149
|
+
const upb_MiniTableField field = {4, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
150
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
151
|
+
&default_val, &ret);
|
144
152
|
return ret;
|
145
153
|
}
|
146
154
|
|
147
155
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_set_failed_configuration(envoy_admin_v3_UpdateFailureState *msg, struct google_protobuf_Any* value) {
|
148
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
149
|
-
|
156
|
+
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)};
|
157
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
158
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
150
159
|
}
|
151
160
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_UpdateFailureState_mutable_failed_configuration(envoy_admin_v3_UpdateFailureState* msg, upb_Arena* arena) {
|
152
161
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_UpdateFailureState_failed_configuration(msg);
|
@@ -157,8 +166,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_UpdateFailureState_mutable
|
|
157
166
|
return sub;
|
158
167
|
}
|
159
168
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_set_last_update_attempt(envoy_admin_v3_UpdateFailureState *msg, struct google_protobuf_Timestamp* value) {
|
160
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
161
|
-
|
169
|
+
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)};
|
170
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
171
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
162
172
|
}
|
163
173
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_UpdateFailureState_mutable_last_update_attempt(envoy_admin_v3_UpdateFailureState* msg, upb_Arena* arena) {
|
164
174
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_UpdateFailureState_last_update_attempt(msg);
|
@@ -169,12 +179,12 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_UpdateFailureState_m
|
|
169
179
|
return sub;
|
170
180
|
}
|
171
181
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_set_details(envoy_admin_v3_UpdateFailureState *msg, upb_StringView value) {
|
172
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
173
|
-
|
182
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
183
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
174
184
|
}
|
175
185
|
UPB_INLINE void envoy_admin_v3_UpdateFailureState_set_version_info(envoy_admin_v3_UpdateFailureState *msg, upb_StringView value) {
|
176
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
177
|
-
|
186
|
+
const upb_MiniTableField field = {4, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
187
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
178
188
|
}
|
179
189
|
|
180
190
|
/* envoy.admin.v3.ListenersConfigDump */
|
@@ -185,7 +195,8 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump* envoy_admin_v3_ListenersConfigDum
|
|
185
195
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump* envoy_admin_v3_ListenersConfigDump_parse(const char* buf, size_t size, upb_Arena* arena) {
|
186
196
|
envoy_admin_v3_ListenersConfigDump* ret = envoy_admin_v3_ListenersConfigDump_new(arena);
|
187
197
|
if (!ret) return NULL;
|
188
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump_msg_init, NULL, 0, arena) !=
|
198
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump_msg_init, NULL, 0, arena) !=
|
199
|
+
kUpb_DecodeStatus_Ok) {
|
189
200
|
return NULL;
|
190
201
|
}
|
191
202
|
return ret;
|
@@ -195,163 +206,172 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump* envoy_admin_v3_ListenersConfigDum
|
|
195
206
|
int options, upb_Arena* arena) {
|
196
207
|
envoy_admin_v3_ListenersConfigDump* ret = envoy_admin_v3_ListenersConfigDump_new(arena);
|
197
208
|
if (!ret) return NULL;
|
198
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump_msg_init, extreg, options,
|
199
|
-
|
209
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump_msg_init, extreg, options,
|
210
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
200
211
|
return NULL;
|
201
212
|
}
|
202
213
|
return ret;
|
203
214
|
}
|
204
215
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_serialize(const envoy_admin_v3_ListenersConfigDump* msg, upb_Arena* arena, size_t* len) {
|
205
216
|
char* ptr;
|
206
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump_msg_init, 0, arena, &ptr, len);
|
217
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump_msg_init, 0, arena, &ptr, len);
|
207
218
|
return ptr;
|
208
219
|
}
|
209
220
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_serialize_ex(const envoy_admin_v3_ListenersConfigDump* msg, int options,
|
210
221
|
upb_Arena* arena, size_t* len) {
|
211
222
|
char* ptr;
|
212
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump_msg_init, options, arena, &ptr, len);
|
223
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump_msg_init, options, arena, &ptr, len);
|
213
224
|
return ptr;
|
214
225
|
}
|
215
226
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_clear_version_info(envoy_admin_v3_ListenersConfigDump* msg) {
|
216
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
217
|
-
|
227
|
+
const upb_MiniTableField field = {1, UPB_SIZE(16, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
228
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
218
229
|
}
|
219
230
|
UPB_INLINE upb_StringView envoy_admin_v3_ListenersConfigDump_version_info(const envoy_admin_v3_ListenersConfigDump* msg) {
|
220
231
|
upb_StringView default_val = upb_StringView_FromString("");
|
221
232
|
upb_StringView ret;
|
222
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
223
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
233
|
+
const upb_MiniTableField field = {1, UPB_SIZE(16, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
234
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
235
|
+
&default_val, &ret);
|
224
236
|
return ret;
|
225
237
|
}
|
226
238
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_clear_static_listeners(envoy_admin_v3_ListenersConfigDump* msg) {
|
227
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
228
|
-
|
239
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
240
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
229
241
|
}
|
230
242
|
UPB_INLINE const envoy_admin_v3_ListenersConfigDump_StaticListener* const* envoy_admin_v3_ListenersConfigDump_static_listeners(const envoy_admin_v3_ListenersConfigDump* msg, size_t* size) {
|
231
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
232
|
-
|
243
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
244
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init);
|
245
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
233
246
|
if (arr) {
|
234
|
-
if (size) *size = arr->size;
|
235
|
-
return (const envoy_admin_v3_ListenersConfigDump_StaticListener* const*)
|
247
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
248
|
+
return (const envoy_admin_v3_ListenersConfigDump_StaticListener* const*)upb_Array_DataPtr(arr);
|
236
249
|
} else {
|
237
250
|
if (size) *size = 0;
|
238
251
|
return NULL;
|
239
252
|
}
|
240
253
|
}
|
241
254
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ListenersConfigDump_static_listeners_upb_array(const envoy_admin_v3_ListenersConfigDump* msg, size_t* size) {
|
242
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
243
|
-
|
255
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
256
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init);
|
257
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
244
258
|
if (size) {
|
245
|
-
*size = arr ? arr->size : 0;
|
259
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
246
260
|
}
|
247
261
|
return arr;
|
248
262
|
}
|
249
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ListenersConfigDump_static_listeners_mutable_upb_array(
|
250
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
251
|
-
|
252
|
-
|
263
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ListenersConfigDump_static_listeners_mutable_upb_array(envoy_admin_v3_ListenersConfigDump* msg, size_t* size, upb_Arena* arena) {
|
264
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
265
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init);
|
266
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
267
|
+
&field, arena);
|
253
268
|
if (size) {
|
254
|
-
*size = arr ? arr->size : 0;
|
269
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
255
270
|
}
|
256
271
|
return arr;
|
257
272
|
}
|
258
|
-
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_has_static_listeners(const envoy_admin_v3_ListenersConfigDump* msg) {
|
259
|
-
size_t size;
|
260
|
-
envoy_admin_v3_ListenersConfigDump_static_listeners(msg, &size);
|
261
|
-
return size != 0;
|
262
|
-
}
|
263
273
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_clear_dynamic_listeners(envoy_admin_v3_ListenersConfigDump* msg) {
|
264
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
265
|
-
|
274
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
275
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
266
276
|
}
|
267
277
|
UPB_INLINE const envoy_admin_v3_ListenersConfigDump_DynamicListener* const* envoy_admin_v3_ListenersConfigDump_dynamic_listeners(const envoy_admin_v3_ListenersConfigDump* msg, size_t* size) {
|
268
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
269
|
-
|
278
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
279
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init);
|
280
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
270
281
|
if (arr) {
|
271
|
-
if (size) *size = arr->size;
|
272
|
-
return (const envoy_admin_v3_ListenersConfigDump_DynamicListener* const*)
|
282
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
283
|
+
return (const envoy_admin_v3_ListenersConfigDump_DynamicListener* const*)upb_Array_DataPtr(arr);
|
273
284
|
} else {
|
274
285
|
if (size) *size = 0;
|
275
286
|
return NULL;
|
276
287
|
}
|
277
288
|
}
|
278
289
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ListenersConfigDump_dynamic_listeners_upb_array(const envoy_admin_v3_ListenersConfigDump* msg, size_t* size) {
|
279
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
280
|
-
|
290
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
291
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init);
|
292
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
281
293
|
if (size) {
|
282
|
-
*size = arr ? arr->size : 0;
|
294
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
283
295
|
}
|
284
296
|
return arr;
|
285
297
|
}
|
286
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ListenersConfigDump_dynamic_listeners_mutable_upb_array(
|
287
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
288
|
-
|
289
|
-
|
298
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ListenersConfigDump_dynamic_listeners_mutable_upb_array(envoy_admin_v3_ListenersConfigDump* msg, size_t* size, upb_Arena* arena) {
|
299
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
300
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init);
|
301
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
302
|
+
&field, arena);
|
290
303
|
if (size) {
|
291
|
-
*size = arr ? arr->size : 0;
|
304
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
292
305
|
}
|
293
306
|
return arr;
|
294
307
|
}
|
295
|
-
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_has_dynamic_listeners(const envoy_admin_v3_ListenersConfigDump* msg) {
|
296
|
-
size_t size;
|
297
|
-
envoy_admin_v3_ListenersConfigDump_dynamic_listeners(msg, &size);
|
298
|
-
return size != 0;
|
299
|
-
}
|
300
308
|
|
301
309
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_set_version_info(envoy_admin_v3_ListenersConfigDump *msg, upb_StringView value) {
|
302
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
303
|
-
|
310
|
+
const upb_MiniTableField field = {1, UPB_SIZE(16, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
311
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
304
312
|
}
|
305
313
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump_StaticListener** envoy_admin_v3_ListenersConfigDump_mutable_static_listeners(envoy_admin_v3_ListenersConfigDump* msg, size_t* size) {
|
306
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
307
|
-
|
314
|
+
upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
315
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init);
|
316
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
308
317
|
if (arr) {
|
309
|
-
if (size) *size = arr->size;
|
310
|
-
return (envoy_admin_v3_ListenersConfigDump_StaticListener**)
|
318
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
319
|
+
return (envoy_admin_v3_ListenersConfigDump_StaticListener**)upb_Array_MutableDataPtr(arr);
|
311
320
|
} else {
|
312
321
|
if (size) *size = 0;
|
313
322
|
return NULL;
|
314
323
|
}
|
315
324
|
}
|
316
325
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump_StaticListener** envoy_admin_v3_ListenersConfigDump_resize_static_listeners(envoy_admin_v3_ListenersConfigDump* msg, size_t size, upb_Arena* arena) {
|
317
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
318
|
-
return (envoy_admin_v3_ListenersConfigDump_StaticListener**)upb_Message_ResizeArrayUninitialized(msg,
|
326
|
+
upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
327
|
+
return (envoy_admin_v3_ListenersConfigDump_StaticListener**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
328
|
+
&field, size, arena);
|
319
329
|
}
|
320
330
|
UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_StaticListener* envoy_admin_v3_ListenersConfigDump_add_static_listeners(envoy_admin_v3_ListenersConfigDump* msg, upb_Arena* arena) {
|
321
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
322
|
-
|
323
|
-
|
331
|
+
upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
332
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init);
|
333
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
334
|
+
UPB_UPCAST(msg), &field, arena);
|
335
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
336
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
324
337
|
return NULL;
|
325
338
|
}
|
326
339
|
struct envoy_admin_v3_ListenersConfigDump_StaticListener* sub = (struct envoy_admin_v3_ListenersConfigDump_StaticListener*)_upb_Message_New(&envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, arena);
|
327
340
|
if (!arr || !sub) return NULL;
|
328
|
-
_upb_Array_Set
|
341
|
+
UPB_PRIVATE(_upb_Array_Set)
|
342
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
329
343
|
return sub;
|
330
344
|
}
|
331
345
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListener** envoy_admin_v3_ListenersConfigDump_mutable_dynamic_listeners(envoy_admin_v3_ListenersConfigDump* msg, size_t* size) {
|
332
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
333
|
-
|
346
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
347
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init);
|
348
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
334
349
|
if (arr) {
|
335
|
-
if (size) *size = arr->size;
|
336
|
-
return (envoy_admin_v3_ListenersConfigDump_DynamicListener**)
|
350
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
351
|
+
return (envoy_admin_v3_ListenersConfigDump_DynamicListener**)upb_Array_MutableDataPtr(arr);
|
337
352
|
} else {
|
338
353
|
if (size) *size = 0;
|
339
354
|
return NULL;
|
340
355
|
}
|
341
356
|
}
|
342
357
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListener** envoy_admin_v3_ListenersConfigDump_resize_dynamic_listeners(envoy_admin_v3_ListenersConfigDump* msg, size_t size, upb_Arena* arena) {
|
343
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
344
|
-
return (envoy_admin_v3_ListenersConfigDump_DynamicListener**)upb_Message_ResizeArrayUninitialized(msg,
|
358
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
359
|
+
return (envoy_admin_v3_ListenersConfigDump_DynamicListener**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
360
|
+
&field, size, arena);
|
345
361
|
}
|
346
362
|
UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_DynamicListener* envoy_admin_v3_ListenersConfigDump_add_dynamic_listeners(envoy_admin_v3_ListenersConfigDump* msg, upb_Arena* arena) {
|
347
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
348
|
-
|
349
|
-
|
363
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
364
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init);
|
365
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
366
|
+
UPB_UPCAST(msg), &field, arena);
|
367
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
368
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
350
369
|
return NULL;
|
351
370
|
}
|
352
371
|
struct envoy_admin_v3_ListenersConfigDump_DynamicListener* sub = (struct envoy_admin_v3_ListenersConfigDump_DynamicListener*)_upb_Message_New(&envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, arena);
|
353
372
|
if (!arr || !sub) return NULL;
|
354
|
-
_upb_Array_Set
|
373
|
+
UPB_PRIVATE(_upb_Array_Set)
|
374
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
355
375
|
return sub;
|
356
376
|
}
|
357
377
|
|
@@ -363,7 +383,8 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump_StaticListener* envoy_admin_v3_Lis
|
|
363
383
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump_StaticListener* envoy_admin_v3_ListenersConfigDump_StaticListener_parse(const char* buf, size_t size, upb_Arena* arena) {
|
364
384
|
envoy_admin_v3_ListenersConfigDump_StaticListener* ret = envoy_admin_v3_ListenersConfigDump_StaticListener_new(arena);
|
365
385
|
if (!ret) return NULL;
|
366
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, NULL, 0, arena) !=
|
386
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, NULL, 0, arena) !=
|
387
|
+
kUpb_DecodeStatus_Ok) {
|
367
388
|
return NULL;
|
368
389
|
}
|
369
390
|
return ret;
|
@@ -373,57 +394,62 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump_StaticListener* envoy_admin_v3_Lis
|
|
373
394
|
int options, upb_Arena* arena) {
|
374
395
|
envoy_admin_v3_ListenersConfigDump_StaticListener* ret = envoy_admin_v3_ListenersConfigDump_StaticListener_new(arena);
|
375
396
|
if (!ret) return NULL;
|
376
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, extreg, options,
|
377
|
-
|
397
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, extreg, options,
|
398
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
378
399
|
return NULL;
|
379
400
|
}
|
380
401
|
return ret;
|
381
402
|
}
|
382
403
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_StaticListener_serialize(const envoy_admin_v3_ListenersConfigDump_StaticListener* msg, upb_Arena* arena, size_t* len) {
|
383
404
|
char* ptr;
|
384
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, 0, arena, &ptr, len);
|
405
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, 0, arena, &ptr, len);
|
385
406
|
return ptr;
|
386
407
|
}
|
387
408
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_StaticListener_serialize_ex(const envoy_admin_v3_ListenersConfigDump_StaticListener* msg, int options,
|
388
409
|
upb_Arena* arena, size_t* len) {
|
389
410
|
char* ptr;
|
390
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, options, arena, &ptr, len);
|
411
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump__StaticListener_msg_init, options, arena, &ptr, len);
|
391
412
|
return ptr;
|
392
413
|
}
|
393
414
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_StaticListener_clear_listener(envoy_admin_v3_ListenersConfigDump_StaticListener* msg) {
|
394
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
395
|
-
|
415
|
+
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)};
|
416
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
396
417
|
}
|
397
418
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_ListenersConfigDump_StaticListener_listener(const envoy_admin_v3_ListenersConfigDump_StaticListener* msg) {
|
398
419
|
const struct google_protobuf_Any* default_val = NULL;
|
399
420
|
const struct google_protobuf_Any* ret;
|
400
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
401
|
-
|
421
|
+
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)};
|
422
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
423
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
424
|
+
&default_val, &ret);
|
402
425
|
return ret;
|
403
426
|
}
|
404
427
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_StaticListener_has_listener(const envoy_admin_v3_ListenersConfigDump_StaticListener* msg) {
|
405
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
406
|
-
return
|
428
|
+
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)};
|
429
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
407
430
|
}
|
408
431
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_StaticListener_clear_last_updated(envoy_admin_v3_ListenersConfigDump_StaticListener* msg) {
|
409
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
410
|
-
|
432
|
+
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)};
|
433
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
411
434
|
}
|
412
435
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_ListenersConfigDump_StaticListener_last_updated(const envoy_admin_v3_ListenersConfigDump_StaticListener* msg) {
|
413
436
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
414
437
|
const struct google_protobuf_Timestamp* ret;
|
415
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
416
|
-
|
438
|
+
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)};
|
439
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
440
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
441
|
+
&default_val, &ret);
|
417
442
|
return ret;
|
418
443
|
}
|
419
444
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_StaticListener_has_last_updated(const envoy_admin_v3_ListenersConfigDump_StaticListener* msg) {
|
420
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
421
|
-
return
|
445
|
+
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)};
|
446
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
422
447
|
}
|
423
448
|
|
424
449
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_StaticListener_set_listener(envoy_admin_v3_ListenersConfigDump_StaticListener *msg, struct google_protobuf_Any* value) {
|
425
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
426
|
-
|
450
|
+
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)};
|
451
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
452
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
427
453
|
}
|
428
454
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ListenersConfigDump_StaticListener_mutable_listener(envoy_admin_v3_ListenersConfigDump_StaticListener* msg, upb_Arena* arena) {
|
429
455
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_ListenersConfigDump_StaticListener_listener(msg);
|
@@ -434,8 +460,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ListenersConfigDump_Static
|
|
434
460
|
return sub;
|
435
461
|
}
|
436
462
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_StaticListener_set_last_updated(envoy_admin_v3_ListenersConfigDump_StaticListener *msg, struct google_protobuf_Timestamp* value) {
|
437
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
438
|
-
|
463
|
+
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)};
|
464
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
465
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
439
466
|
}
|
440
467
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ListenersConfigDump_StaticListener_mutable_last_updated(envoy_admin_v3_ListenersConfigDump_StaticListener* msg, upb_Arena* arena) {
|
441
468
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_ListenersConfigDump_StaticListener_last_updated(msg);
|
@@ -454,7 +481,8 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_
|
|
454
481
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_v3_ListenersConfigDump_DynamicListenerState_parse(const char* buf, size_t size, upb_Arena* arena) {
|
455
482
|
envoy_admin_v3_ListenersConfigDump_DynamicListenerState* ret = envoy_admin_v3_ListenersConfigDump_DynamicListenerState_new(arena);
|
456
483
|
if (!ret) return NULL;
|
457
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, NULL, 0, arena) !=
|
484
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, NULL, 0, arena) !=
|
485
|
+
kUpb_DecodeStatus_Ok) {
|
458
486
|
return NULL;
|
459
487
|
}
|
460
488
|
return ret;
|
@@ -464,72 +492,78 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_
|
|
464
492
|
int options, upb_Arena* arena) {
|
465
493
|
envoy_admin_v3_ListenersConfigDump_DynamicListenerState* ret = envoy_admin_v3_ListenersConfigDump_DynamicListenerState_new(arena);
|
466
494
|
if (!ret) return NULL;
|
467
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, extreg, options,
|
468
|
-
|
495
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, extreg, options,
|
496
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
469
497
|
return NULL;
|
470
498
|
}
|
471
499
|
return ret;
|
472
500
|
}
|
473
501
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_DynamicListenerState_serialize(const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg, upb_Arena* arena, size_t* len) {
|
474
502
|
char* ptr;
|
475
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, 0, arena, &ptr, len);
|
503
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, 0, arena, &ptr, len);
|
476
504
|
return ptr;
|
477
505
|
}
|
478
506
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_DynamicListenerState_serialize_ex(const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg, int options,
|
479
507
|
upb_Arena* arena, size_t* len) {
|
480
508
|
char* ptr;
|
481
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, options, arena, &ptr, len);
|
509
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init, options, arena, &ptr, len);
|
482
510
|
return ptr;
|
483
511
|
}
|
484
512
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListenerState_clear_version_info(envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
485
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
486
|
-
|
513
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
514
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
487
515
|
}
|
488
516
|
UPB_INLINE upb_StringView envoy_admin_v3_ListenersConfigDump_DynamicListenerState_version_info(const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
489
517
|
upb_StringView default_val = upb_StringView_FromString("");
|
490
518
|
upb_StringView ret;
|
491
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
492
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
519
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
520
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
521
|
+
&default_val, &ret);
|
493
522
|
return ret;
|
494
523
|
}
|
495
524
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListenerState_clear_listener(envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
496
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
497
|
-
|
525
|
+
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)};
|
526
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
498
527
|
}
|
499
528
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_ListenersConfigDump_DynamicListenerState_listener(const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
500
529
|
const struct google_protobuf_Any* default_val = NULL;
|
501
530
|
const struct google_protobuf_Any* ret;
|
502
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
503
|
-
|
531
|
+
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)};
|
532
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
533
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
534
|
+
&default_val, &ret);
|
504
535
|
return ret;
|
505
536
|
}
|
506
537
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_DynamicListenerState_has_listener(const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
507
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
508
|
-
return
|
538
|
+
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)};
|
539
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
509
540
|
}
|
510
541
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListenerState_clear_last_updated(envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
511
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
512
|
-
|
542
|
+
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)};
|
543
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
513
544
|
}
|
514
545
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_ListenersConfigDump_DynamicListenerState_last_updated(const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
515
546
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
516
547
|
const struct google_protobuf_Timestamp* ret;
|
517
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
518
|
-
|
548
|
+
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)};
|
549
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
550
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
551
|
+
&default_val, &ret);
|
519
552
|
return ret;
|
520
553
|
}
|
521
554
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_DynamicListenerState_has_last_updated(const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg) {
|
522
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
523
|
-
return
|
555
|
+
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)};
|
556
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
524
557
|
}
|
525
558
|
|
526
559
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListenerState_set_version_info(envoy_admin_v3_ListenersConfigDump_DynamicListenerState *msg, upb_StringView value) {
|
527
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
528
|
-
|
560
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
561
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
529
562
|
}
|
530
563
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListenerState_set_listener(envoy_admin_v3_ListenersConfigDump_DynamicListenerState *msg, struct google_protobuf_Any* value) {
|
531
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
532
|
-
|
564
|
+
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)};
|
565
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
566
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
533
567
|
}
|
534
568
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ListenersConfigDump_DynamicListenerState_mutable_listener(envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg, upb_Arena* arena) {
|
535
569
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_ListenersConfigDump_DynamicListenerState_listener(msg);
|
@@ -540,8 +574,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ListenersConfigDump_Dynami
|
|
540
574
|
return sub;
|
541
575
|
}
|
542
576
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListenerState_set_last_updated(envoy_admin_v3_ListenersConfigDump_DynamicListenerState *msg, struct google_protobuf_Timestamp* value) {
|
543
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
544
|
-
|
577
|
+
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)};
|
578
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
579
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
545
580
|
}
|
546
581
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ListenersConfigDump_DynamicListenerState_mutable_last_updated(envoy_admin_v3_ListenersConfigDump_DynamicListenerState* msg, upb_Arena* arena) {
|
547
582
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_ListenersConfigDump_DynamicListenerState_last_updated(msg);
|
@@ -560,7 +595,8 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListener* envoy_admin_v3_Li
|
|
560
595
|
UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListener* envoy_admin_v3_ListenersConfigDump_DynamicListener_parse(const char* buf, size_t size, upb_Arena* arena) {
|
561
596
|
envoy_admin_v3_ListenersConfigDump_DynamicListener* ret = envoy_admin_v3_ListenersConfigDump_DynamicListener_new(arena);
|
562
597
|
if (!ret) return NULL;
|
563
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, NULL, 0, arena) !=
|
598
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, NULL, 0, arena) !=
|
599
|
+
kUpb_DecodeStatus_Ok) {
|
564
600
|
return NULL;
|
565
601
|
}
|
566
602
|
return ret;
|
@@ -570,113 +606,124 @@ UPB_INLINE envoy_admin_v3_ListenersConfigDump_DynamicListener* envoy_admin_v3_Li
|
|
570
606
|
int options, upb_Arena* arena) {
|
571
607
|
envoy_admin_v3_ListenersConfigDump_DynamicListener* ret = envoy_admin_v3_ListenersConfigDump_DynamicListener_new(arena);
|
572
608
|
if (!ret) return NULL;
|
573
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, extreg, options,
|
574
|
-
|
609
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, extreg, options,
|
610
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
575
611
|
return NULL;
|
576
612
|
}
|
577
613
|
return ret;
|
578
614
|
}
|
579
615
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_DynamicListener_serialize(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg, upb_Arena* arena, size_t* len) {
|
580
616
|
char* ptr;
|
581
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, 0, arena, &ptr, len);
|
617
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, 0, arena, &ptr, len);
|
582
618
|
return ptr;
|
583
619
|
}
|
584
620
|
UPB_INLINE char* envoy_admin_v3_ListenersConfigDump_DynamicListener_serialize_ex(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg, int options,
|
585
621
|
upb_Arena* arena, size_t* len) {
|
586
622
|
char* ptr;
|
587
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, options, arena, &ptr, len);
|
623
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ListenersConfigDump__DynamicListener_msg_init, options, arena, &ptr, len);
|
588
624
|
return ptr;
|
589
625
|
}
|
590
626
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_clear_name(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
591
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
592
|
-
|
627
|
+
const upb_MiniTableField field = {1, UPB_SIZE(32, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
628
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
593
629
|
}
|
594
630
|
UPB_INLINE upb_StringView envoy_admin_v3_ListenersConfigDump_DynamicListener_name(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
595
631
|
upb_StringView default_val = upb_StringView_FromString("");
|
596
632
|
upb_StringView ret;
|
597
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
598
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
633
|
+
const upb_MiniTableField field = {1, UPB_SIZE(32, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
634
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
635
|
+
&default_val, &ret);
|
599
636
|
return ret;
|
600
637
|
}
|
601
638
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_clear_active_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
602
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
603
|
-
|
639
|
+
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)};
|
640
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
604
641
|
}
|
605
642
|
UPB_INLINE const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_v3_ListenersConfigDump_DynamicListener_active_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
606
643
|
const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* default_val = NULL;
|
607
644
|
const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* ret;
|
608
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
609
|
-
|
645
|
+
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)};
|
646
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init);
|
647
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
648
|
+
&default_val, &ret);
|
610
649
|
return ret;
|
611
650
|
}
|
612
651
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_DynamicListener_has_active_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
613
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
614
|
-
return
|
652
|
+
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)};
|
653
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
615
654
|
}
|
616
655
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_clear_warming_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
617
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
618
|
-
|
656
|
+
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)};
|
657
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
619
658
|
}
|
620
659
|
UPB_INLINE const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_v3_ListenersConfigDump_DynamicListener_warming_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
621
660
|
const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* default_val = NULL;
|
622
661
|
const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* ret;
|
623
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
624
|
-
|
662
|
+
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)};
|
663
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init);
|
664
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
665
|
+
&default_val, &ret);
|
625
666
|
return ret;
|
626
667
|
}
|
627
668
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_DynamicListener_has_warming_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
628
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
629
|
-
return
|
669
|
+
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)};
|
670
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
630
671
|
}
|
631
672
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_clear_draining_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
632
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
633
|
-
|
673
|
+
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)};
|
674
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
634
675
|
}
|
635
676
|
UPB_INLINE const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_v3_ListenersConfigDump_DynamicListener_draining_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
636
677
|
const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* default_val = NULL;
|
637
678
|
const envoy_admin_v3_ListenersConfigDump_DynamicListenerState* ret;
|
638
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
639
|
-
|
679
|
+
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)};
|
680
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init);
|
681
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
682
|
+
&default_val, &ret);
|
640
683
|
return ret;
|
641
684
|
}
|
642
685
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_DynamicListener_has_draining_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
643
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
644
|
-
return
|
686
|
+
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)};
|
687
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
645
688
|
}
|
646
689
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_clear_error_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
647
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
648
|
-
|
690
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
691
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
649
692
|
}
|
650
693
|
UPB_INLINE const envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ListenersConfigDump_DynamicListener_error_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
651
694
|
const envoy_admin_v3_UpdateFailureState* default_val = NULL;
|
652
695
|
const envoy_admin_v3_UpdateFailureState* ret;
|
653
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
654
|
-
|
696
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
697
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
698
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
699
|
+
&default_val, &ret);
|
655
700
|
return ret;
|
656
701
|
}
|
657
702
|
UPB_INLINE bool envoy_admin_v3_ListenersConfigDump_DynamicListener_has_error_state(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
658
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
659
|
-
return
|
703
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
704
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
660
705
|
}
|
661
706
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_clear_client_status(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
662
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
663
|
-
|
707
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
708
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
664
709
|
}
|
665
710
|
UPB_INLINE int32_t envoy_admin_v3_ListenersConfigDump_DynamicListener_client_status(const envoy_admin_v3_ListenersConfigDump_DynamicListener* msg) {
|
666
711
|
int32_t default_val = 0;
|
667
712
|
int32_t ret;
|
668
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
669
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
713
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
714
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
715
|
+
&default_val, &ret);
|
670
716
|
return ret;
|
671
717
|
}
|
672
718
|
|
673
719
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_set_name(envoy_admin_v3_ListenersConfigDump_DynamicListener *msg, upb_StringView value) {
|
674
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
675
|
-
|
720
|
+
const upb_MiniTableField field = {1, UPB_SIZE(32, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
721
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
676
722
|
}
|
677
723
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_set_active_state(envoy_admin_v3_ListenersConfigDump_DynamicListener *msg, envoy_admin_v3_ListenersConfigDump_DynamicListenerState* value) {
|
678
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
679
|
-
|
724
|
+
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)};
|
725
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init);
|
726
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
680
727
|
}
|
681
728
|
UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_v3_ListenersConfigDump_DynamicListener_mutable_active_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg, upb_Arena* arena) {
|
682
729
|
struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* sub = (struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState*)envoy_admin_v3_ListenersConfigDump_DynamicListener_active_state(msg);
|
@@ -687,8 +734,9 @@ UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy
|
|
687
734
|
return sub;
|
688
735
|
}
|
689
736
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_set_warming_state(envoy_admin_v3_ListenersConfigDump_DynamicListener *msg, envoy_admin_v3_ListenersConfigDump_DynamicListenerState* value) {
|
690
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
691
|
-
|
737
|
+
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)};
|
738
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init);
|
739
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
692
740
|
}
|
693
741
|
UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_v3_ListenersConfigDump_DynamicListener_mutable_warming_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg, upb_Arena* arena) {
|
694
742
|
struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* sub = (struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState*)envoy_admin_v3_ListenersConfigDump_DynamicListener_warming_state(msg);
|
@@ -699,8 +747,9 @@ UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy
|
|
699
747
|
return sub;
|
700
748
|
}
|
701
749
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_set_draining_state(envoy_admin_v3_ListenersConfigDump_DynamicListener *msg, envoy_admin_v3_ListenersConfigDump_DynamicListenerState* value) {
|
702
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
703
|
-
|
750
|
+
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)};
|
751
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ListenersConfigDump__DynamicListenerState_msg_init);
|
752
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
704
753
|
}
|
705
754
|
UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy_admin_v3_ListenersConfigDump_DynamicListener_mutable_draining_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg, upb_Arena* arena) {
|
706
755
|
struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* sub = (struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState*)envoy_admin_v3_ListenersConfigDump_DynamicListener_draining_state(msg);
|
@@ -711,8 +760,9 @@ UPB_INLINE struct envoy_admin_v3_ListenersConfigDump_DynamicListenerState* envoy
|
|
711
760
|
return sub;
|
712
761
|
}
|
713
762
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_set_error_state(envoy_admin_v3_ListenersConfigDump_DynamicListener *msg, envoy_admin_v3_UpdateFailureState* value) {
|
714
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
715
|
-
|
763
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
764
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
765
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
716
766
|
}
|
717
767
|
UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ListenersConfigDump_DynamicListener_mutable_error_state(envoy_admin_v3_ListenersConfigDump_DynamicListener* msg, upb_Arena* arena) {
|
718
768
|
struct envoy_admin_v3_UpdateFailureState* sub = (struct envoy_admin_v3_UpdateFailureState*)envoy_admin_v3_ListenersConfigDump_DynamicListener_error_state(msg);
|
@@ -723,8 +773,8 @@ UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ListenersCon
|
|
723
773
|
return sub;
|
724
774
|
}
|
725
775
|
UPB_INLINE void envoy_admin_v3_ListenersConfigDump_DynamicListener_set_client_status(envoy_admin_v3_ListenersConfigDump_DynamicListener *msg, int32_t value) {
|
726
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
727
|
-
|
776
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
777
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
728
778
|
}
|
729
779
|
|
730
780
|
/* envoy.admin.v3.ClustersConfigDump */
|
@@ -735,7 +785,8 @@ UPB_INLINE envoy_admin_v3_ClustersConfigDump* envoy_admin_v3_ClustersConfigDump_
|
|
735
785
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump* envoy_admin_v3_ClustersConfigDump_parse(const char* buf, size_t size, upb_Arena* arena) {
|
736
786
|
envoy_admin_v3_ClustersConfigDump* ret = envoy_admin_v3_ClustersConfigDump_new(arena);
|
737
787
|
if (!ret) return NULL;
|
738
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ClustersConfigDump_msg_init, NULL, 0, arena) !=
|
788
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ClustersConfigDump_msg_init, NULL, 0, arena) !=
|
789
|
+
kUpb_DecodeStatus_Ok) {
|
739
790
|
return NULL;
|
740
791
|
}
|
741
792
|
return ret;
|
@@ -745,226 +796,239 @@ UPB_INLINE envoy_admin_v3_ClustersConfigDump* envoy_admin_v3_ClustersConfigDump_
|
|
745
796
|
int options, upb_Arena* arena) {
|
746
797
|
envoy_admin_v3_ClustersConfigDump* ret = envoy_admin_v3_ClustersConfigDump_new(arena);
|
747
798
|
if (!ret) return NULL;
|
748
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ClustersConfigDump_msg_init, extreg, options,
|
749
|
-
|
799
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ClustersConfigDump_msg_init, extreg, options,
|
800
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
750
801
|
return NULL;
|
751
802
|
}
|
752
803
|
return ret;
|
753
804
|
}
|
754
805
|
UPB_INLINE char* envoy_admin_v3_ClustersConfigDump_serialize(const envoy_admin_v3_ClustersConfigDump* msg, upb_Arena* arena, size_t* len) {
|
755
806
|
char* ptr;
|
756
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ClustersConfigDump_msg_init, 0, arena, &ptr, len);
|
807
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ClustersConfigDump_msg_init, 0, arena, &ptr, len);
|
757
808
|
return ptr;
|
758
809
|
}
|
759
810
|
UPB_INLINE char* envoy_admin_v3_ClustersConfigDump_serialize_ex(const envoy_admin_v3_ClustersConfigDump* msg, int options,
|
760
811
|
upb_Arena* arena, size_t* len) {
|
761
812
|
char* ptr;
|
762
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ClustersConfigDump_msg_init, options, arena, &ptr, len);
|
813
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ClustersConfigDump_msg_init, options, arena, &ptr, len);
|
763
814
|
return ptr;
|
764
815
|
}
|
765
816
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_clear_version_info(envoy_admin_v3_ClustersConfigDump* msg) {
|
766
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
767
|
-
|
817
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
818
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
768
819
|
}
|
769
820
|
UPB_INLINE upb_StringView envoy_admin_v3_ClustersConfigDump_version_info(const envoy_admin_v3_ClustersConfigDump* msg) {
|
770
821
|
upb_StringView default_val = upb_StringView_FromString("");
|
771
822
|
upb_StringView ret;
|
772
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
773
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
823
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
824
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
825
|
+
&default_val, &ret);
|
774
826
|
return ret;
|
775
827
|
}
|
776
828
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_clear_static_clusters(envoy_admin_v3_ClustersConfigDump* msg) {
|
777
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
778
|
-
|
829
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
830
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
779
831
|
}
|
780
832
|
UPB_INLINE const envoy_admin_v3_ClustersConfigDump_StaticCluster* const* envoy_admin_v3_ClustersConfigDump_static_clusters(const envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
781
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
782
|
-
|
833
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
834
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init);
|
835
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
783
836
|
if (arr) {
|
784
|
-
if (size) *size = arr->size;
|
785
|
-
return (const envoy_admin_v3_ClustersConfigDump_StaticCluster* const*)
|
837
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
838
|
+
return (const envoy_admin_v3_ClustersConfigDump_StaticCluster* const*)upb_Array_DataPtr(arr);
|
786
839
|
} else {
|
787
840
|
if (size) *size = 0;
|
788
841
|
return NULL;
|
789
842
|
}
|
790
843
|
}
|
791
844
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ClustersConfigDump_static_clusters_upb_array(const envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
792
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
793
|
-
|
845
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
846
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init);
|
847
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
794
848
|
if (size) {
|
795
|
-
*size = arr ? arr->size : 0;
|
849
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
796
850
|
}
|
797
851
|
return arr;
|
798
852
|
}
|
799
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ClustersConfigDump_static_clusters_mutable_upb_array(
|
800
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
801
|
-
|
802
|
-
|
853
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ClustersConfigDump_static_clusters_mutable_upb_array(envoy_admin_v3_ClustersConfigDump* msg, size_t* size, upb_Arena* arena) {
|
854
|
+
const upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
855
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init);
|
856
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
857
|
+
&field, arena);
|
803
858
|
if (size) {
|
804
|
-
*size = arr ? arr->size : 0;
|
859
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
805
860
|
}
|
806
861
|
return arr;
|
807
862
|
}
|
808
|
-
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_has_static_clusters(const envoy_admin_v3_ClustersConfigDump* msg) {
|
809
|
-
size_t size;
|
810
|
-
envoy_admin_v3_ClustersConfigDump_static_clusters(msg, &size);
|
811
|
-
return size != 0;
|
812
|
-
}
|
813
863
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_clear_dynamic_active_clusters(envoy_admin_v3_ClustersConfigDump* msg) {
|
814
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
815
|
-
|
864
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
865
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
816
866
|
}
|
817
867
|
UPB_INLINE const envoy_admin_v3_ClustersConfigDump_DynamicCluster* const* envoy_admin_v3_ClustersConfigDump_dynamic_active_clusters(const envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
818
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
819
|
-
|
868
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
869
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
870
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
820
871
|
if (arr) {
|
821
|
-
if (size) *size = arr->size;
|
822
|
-
return (const envoy_admin_v3_ClustersConfigDump_DynamicCluster* const*)
|
872
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
873
|
+
return (const envoy_admin_v3_ClustersConfigDump_DynamicCluster* const*)upb_Array_DataPtr(arr);
|
823
874
|
} else {
|
824
875
|
if (size) *size = 0;
|
825
876
|
return NULL;
|
826
877
|
}
|
827
878
|
}
|
828
879
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ClustersConfigDump_dynamic_active_clusters_upb_array(const envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
829
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
830
|
-
|
880
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
881
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
882
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
831
883
|
if (size) {
|
832
|
-
*size = arr ? arr->size : 0;
|
884
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
833
885
|
}
|
834
886
|
return arr;
|
835
887
|
}
|
836
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ClustersConfigDump_dynamic_active_clusters_mutable_upb_array(
|
837
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
838
|
-
|
839
|
-
|
888
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ClustersConfigDump_dynamic_active_clusters_mutable_upb_array(envoy_admin_v3_ClustersConfigDump* msg, size_t* size, upb_Arena* arena) {
|
889
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
890
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
891
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
892
|
+
&field, arena);
|
840
893
|
if (size) {
|
841
|
-
*size = arr ? arr->size : 0;
|
894
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
842
895
|
}
|
843
896
|
return arr;
|
844
897
|
}
|
845
|
-
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_has_dynamic_active_clusters(const envoy_admin_v3_ClustersConfigDump* msg) {
|
846
|
-
size_t size;
|
847
|
-
envoy_admin_v3_ClustersConfigDump_dynamic_active_clusters(msg, &size);
|
848
|
-
return size != 0;
|
849
|
-
}
|
850
898
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_clear_dynamic_warming_clusters(envoy_admin_v3_ClustersConfigDump* msg) {
|
851
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
852
|
-
|
899
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
900
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
853
901
|
}
|
854
902
|
UPB_INLINE const envoy_admin_v3_ClustersConfigDump_DynamicCluster* const* envoy_admin_v3_ClustersConfigDump_dynamic_warming_clusters(const envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
855
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
856
|
-
|
903
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
904
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
905
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
857
906
|
if (arr) {
|
858
|
-
if (size) *size = arr->size;
|
859
|
-
return (const envoy_admin_v3_ClustersConfigDump_DynamicCluster* const*)
|
907
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
908
|
+
return (const envoy_admin_v3_ClustersConfigDump_DynamicCluster* const*)upb_Array_DataPtr(arr);
|
860
909
|
} else {
|
861
910
|
if (size) *size = 0;
|
862
911
|
return NULL;
|
863
912
|
}
|
864
913
|
}
|
865
914
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ClustersConfigDump_dynamic_warming_clusters_upb_array(const envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
866
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
867
|
-
|
915
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
916
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
917
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
868
918
|
if (size) {
|
869
|
-
*size = arr ? arr->size : 0;
|
919
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
870
920
|
}
|
871
921
|
return arr;
|
872
922
|
}
|
873
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ClustersConfigDump_dynamic_warming_clusters_mutable_upb_array(
|
874
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
875
|
-
|
876
|
-
|
923
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ClustersConfigDump_dynamic_warming_clusters_mutable_upb_array(envoy_admin_v3_ClustersConfigDump* msg, size_t* size, upb_Arena* arena) {
|
924
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
925
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
926
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
927
|
+
&field, arena);
|
877
928
|
if (size) {
|
878
|
-
*size = arr ? arr->size : 0;
|
929
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
879
930
|
}
|
880
931
|
return arr;
|
881
932
|
}
|
882
|
-
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_has_dynamic_warming_clusters(const envoy_admin_v3_ClustersConfigDump* msg) {
|
883
|
-
size_t size;
|
884
|
-
envoy_admin_v3_ClustersConfigDump_dynamic_warming_clusters(msg, &size);
|
885
|
-
return size != 0;
|
886
|
-
}
|
887
933
|
|
888
934
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_set_version_info(envoy_admin_v3_ClustersConfigDump *msg, upb_StringView value) {
|
889
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
890
|
-
|
935
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
936
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
891
937
|
}
|
892
938
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_StaticCluster** envoy_admin_v3_ClustersConfigDump_mutable_static_clusters(envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
893
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
894
|
-
|
939
|
+
upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
940
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init);
|
941
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
895
942
|
if (arr) {
|
896
|
-
if (size) *size = arr->size;
|
897
|
-
return (envoy_admin_v3_ClustersConfigDump_StaticCluster**)
|
943
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
944
|
+
return (envoy_admin_v3_ClustersConfigDump_StaticCluster**)upb_Array_MutableDataPtr(arr);
|
898
945
|
} else {
|
899
946
|
if (size) *size = 0;
|
900
947
|
return NULL;
|
901
948
|
}
|
902
949
|
}
|
903
950
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_StaticCluster** envoy_admin_v3_ClustersConfigDump_resize_static_clusters(envoy_admin_v3_ClustersConfigDump* msg, size_t size, upb_Arena* arena) {
|
904
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
905
|
-
return (envoy_admin_v3_ClustersConfigDump_StaticCluster**)upb_Message_ResizeArrayUninitialized(msg,
|
951
|
+
upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
952
|
+
return (envoy_admin_v3_ClustersConfigDump_StaticCluster**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
953
|
+
&field, size, arena);
|
906
954
|
}
|
907
955
|
UPB_INLINE struct envoy_admin_v3_ClustersConfigDump_StaticCluster* envoy_admin_v3_ClustersConfigDump_add_static_clusters(envoy_admin_v3_ClustersConfigDump* msg, upb_Arena* arena) {
|
908
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
909
|
-
|
910
|
-
|
956
|
+
upb_MiniTableField field = {2, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
957
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init);
|
958
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
959
|
+
UPB_UPCAST(msg), &field, arena);
|
960
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
961
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
911
962
|
return NULL;
|
912
963
|
}
|
913
964
|
struct envoy_admin_v3_ClustersConfigDump_StaticCluster* sub = (struct envoy_admin_v3_ClustersConfigDump_StaticCluster*)_upb_Message_New(&envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, arena);
|
914
965
|
if (!arr || !sub) return NULL;
|
915
|
-
_upb_Array_Set
|
966
|
+
UPB_PRIVATE(_upb_Array_Set)
|
967
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
916
968
|
return sub;
|
917
969
|
}
|
918
970
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_DynamicCluster** envoy_admin_v3_ClustersConfigDump_mutable_dynamic_active_clusters(envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
919
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
920
|
-
|
971
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
972
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
973
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
921
974
|
if (arr) {
|
922
|
-
if (size) *size = arr->size;
|
923
|
-
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)
|
975
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
976
|
+
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)upb_Array_MutableDataPtr(arr);
|
924
977
|
} else {
|
925
978
|
if (size) *size = 0;
|
926
979
|
return NULL;
|
927
980
|
}
|
928
981
|
}
|
929
982
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_DynamicCluster** envoy_admin_v3_ClustersConfigDump_resize_dynamic_active_clusters(envoy_admin_v3_ClustersConfigDump* msg, size_t size, upb_Arena* arena) {
|
930
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
931
|
-
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)upb_Message_ResizeArrayUninitialized(msg,
|
983
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
984
|
+
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
985
|
+
&field, size, arena);
|
932
986
|
}
|
933
987
|
UPB_INLINE struct envoy_admin_v3_ClustersConfigDump_DynamicCluster* envoy_admin_v3_ClustersConfigDump_add_dynamic_active_clusters(envoy_admin_v3_ClustersConfigDump* msg, upb_Arena* arena) {
|
934
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
935
|
-
|
936
|
-
|
988
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 32), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
989
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
990
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
991
|
+
UPB_UPCAST(msg), &field, arena);
|
992
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
993
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
937
994
|
return NULL;
|
938
995
|
}
|
939
996
|
struct envoy_admin_v3_ClustersConfigDump_DynamicCluster* sub = (struct envoy_admin_v3_ClustersConfigDump_DynamicCluster*)_upb_Message_New(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, arena);
|
940
997
|
if (!arr || !sub) return NULL;
|
941
|
-
_upb_Array_Set
|
998
|
+
UPB_PRIVATE(_upb_Array_Set)
|
999
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
942
1000
|
return sub;
|
943
1001
|
}
|
944
1002
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_DynamicCluster** envoy_admin_v3_ClustersConfigDump_mutable_dynamic_warming_clusters(envoy_admin_v3_ClustersConfigDump* msg, size_t* size) {
|
945
|
-
upb_MiniTableField field = {4, UPB_SIZE(
|
946
|
-
|
1003
|
+
upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1004
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
1005
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
947
1006
|
if (arr) {
|
948
|
-
if (size) *size = arr->size;
|
949
|
-
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)
|
1007
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1008
|
+
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)upb_Array_MutableDataPtr(arr);
|
950
1009
|
} else {
|
951
1010
|
if (size) *size = 0;
|
952
1011
|
return NULL;
|
953
1012
|
}
|
954
1013
|
}
|
955
1014
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_DynamicCluster** envoy_admin_v3_ClustersConfigDump_resize_dynamic_warming_clusters(envoy_admin_v3_ClustersConfigDump* msg, size_t size, upb_Arena* arena) {
|
956
|
-
upb_MiniTableField field = {4, UPB_SIZE(
|
957
|
-
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)upb_Message_ResizeArrayUninitialized(msg,
|
1015
|
+
upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1016
|
+
return (envoy_admin_v3_ClustersConfigDump_DynamicCluster**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1017
|
+
&field, size, arena);
|
958
1018
|
}
|
959
1019
|
UPB_INLINE struct envoy_admin_v3_ClustersConfigDump_DynamicCluster* envoy_admin_v3_ClustersConfigDump_add_dynamic_warming_clusters(envoy_admin_v3_ClustersConfigDump* msg, upb_Arena* arena) {
|
960
|
-
upb_MiniTableField field = {4, UPB_SIZE(
|
961
|
-
|
962
|
-
|
1020
|
+
upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1021
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init);
|
1022
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1023
|
+
UPB_UPCAST(msg), &field, arena);
|
1024
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
1025
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
963
1026
|
return NULL;
|
964
1027
|
}
|
965
1028
|
struct envoy_admin_v3_ClustersConfigDump_DynamicCluster* sub = (struct envoy_admin_v3_ClustersConfigDump_DynamicCluster*)_upb_Message_New(&envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, arena);
|
966
1029
|
if (!arr || !sub) return NULL;
|
967
|
-
_upb_Array_Set
|
1030
|
+
UPB_PRIVATE(_upb_Array_Set)
|
1031
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
968
1032
|
return sub;
|
969
1033
|
}
|
970
1034
|
|
@@ -976,7 +1040,8 @@ UPB_INLINE envoy_admin_v3_ClustersConfigDump_StaticCluster* envoy_admin_v3_Clust
|
|
976
1040
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_StaticCluster* envoy_admin_v3_ClustersConfigDump_StaticCluster_parse(const char* buf, size_t size, upb_Arena* arena) {
|
977
1041
|
envoy_admin_v3_ClustersConfigDump_StaticCluster* ret = envoy_admin_v3_ClustersConfigDump_StaticCluster_new(arena);
|
978
1042
|
if (!ret) return NULL;
|
979
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, NULL, 0, arena) !=
|
1043
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, NULL, 0, arena) !=
|
1044
|
+
kUpb_DecodeStatus_Ok) {
|
980
1045
|
return NULL;
|
981
1046
|
}
|
982
1047
|
return ret;
|
@@ -986,57 +1051,62 @@ UPB_INLINE envoy_admin_v3_ClustersConfigDump_StaticCluster* envoy_admin_v3_Clust
|
|
986
1051
|
int options, upb_Arena* arena) {
|
987
1052
|
envoy_admin_v3_ClustersConfigDump_StaticCluster* ret = envoy_admin_v3_ClustersConfigDump_StaticCluster_new(arena);
|
988
1053
|
if (!ret) return NULL;
|
989
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, extreg, options,
|
990
|
-
|
1054
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, extreg, options,
|
1055
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
991
1056
|
return NULL;
|
992
1057
|
}
|
993
1058
|
return ret;
|
994
1059
|
}
|
995
1060
|
UPB_INLINE char* envoy_admin_v3_ClustersConfigDump_StaticCluster_serialize(const envoy_admin_v3_ClustersConfigDump_StaticCluster* msg, upb_Arena* arena, size_t* len) {
|
996
1061
|
char* ptr;
|
997
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, 0, arena, &ptr, len);
|
1062
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, 0, arena, &ptr, len);
|
998
1063
|
return ptr;
|
999
1064
|
}
|
1000
1065
|
UPB_INLINE char* envoy_admin_v3_ClustersConfigDump_StaticCluster_serialize_ex(const envoy_admin_v3_ClustersConfigDump_StaticCluster* msg, int options,
|
1001
1066
|
upb_Arena* arena, size_t* len) {
|
1002
1067
|
char* ptr;
|
1003
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, options, arena, &ptr, len);
|
1068
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ClustersConfigDump__StaticCluster_msg_init, options, arena, &ptr, len);
|
1004
1069
|
return ptr;
|
1005
1070
|
}
|
1006
1071
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_StaticCluster_clear_cluster(envoy_admin_v3_ClustersConfigDump_StaticCluster* msg) {
|
1007
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1008
|
-
|
1072
|
+
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)};
|
1073
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1009
1074
|
}
|
1010
1075
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_ClustersConfigDump_StaticCluster_cluster(const envoy_admin_v3_ClustersConfigDump_StaticCluster* msg) {
|
1011
1076
|
const struct google_protobuf_Any* default_val = NULL;
|
1012
1077
|
const struct google_protobuf_Any* ret;
|
1013
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1014
|
-
|
1078
|
+
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)};
|
1079
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1080
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1081
|
+
&default_val, &ret);
|
1015
1082
|
return ret;
|
1016
1083
|
}
|
1017
1084
|
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_StaticCluster_has_cluster(const envoy_admin_v3_ClustersConfigDump_StaticCluster* msg) {
|
1018
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1019
|
-
return
|
1085
|
+
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)};
|
1086
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1020
1087
|
}
|
1021
1088
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_StaticCluster_clear_last_updated(envoy_admin_v3_ClustersConfigDump_StaticCluster* msg) {
|
1022
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1023
|
-
|
1089
|
+
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)};
|
1090
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1024
1091
|
}
|
1025
1092
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_ClustersConfigDump_StaticCluster_last_updated(const envoy_admin_v3_ClustersConfigDump_StaticCluster* msg) {
|
1026
1093
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
1027
1094
|
const struct google_protobuf_Timestamp* ret;
|
1028
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1029
|
-
|
1095
|
+
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)};
|
1096
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1097
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1098
|
+
&default_val, &ret);
|
1030
1099
|
return ret;
|
1031
1100
|
}
|
1032
1101
|
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_StaticCluster_has_last_updated(const envoy_admin_v3_ClustersConfigDump_StaticCluster* msg) {
|
1033
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1034
|
-
return
|
1102
|
+
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)};
|
1103
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1035
1104
|
}
|
1036
1105
|
|
1037
1106
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_StaticCluster_set_cluster(envoy_admin_v3_ClustersConfigDump_StaticCluster *msg, struct google_protobuf_Any* value) {
|
1038
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1039
|
-
|
1107
|
+
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)};
|
1108
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1109
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1040
1110
|
}
|
1041
1111
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ClustersConfigDump_StaticCluster_mutable_cluster(envoy_admin_v3_ClustersConfigDump_StaticCluster* msg, upb_Arena* arena) {
|
1042
1112
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_ClustersConfigDump_StaticCluster_cluster(msg);
|
@@ -1047,8 +1117,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ClustersConfigDump_StaticC
|
|
1047
1117
|
return sub;
|
1048
1118
|
}
|
1049
1119
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_StaticCluster_set_last_updated(envoy_admin_v3_ClustersConfigDump_StaticCluster *msg, struct google_protobuf_Timestamp* value) {
|
1050
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1051
|
-
|
1120
|
+
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)};
|
1121
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1122
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1052
1123
|
}
|
1053
1124
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ClustersConfigDump_StaticCluster_mutable_last_updated(envoy_admin_v3_ClustersConfigDump_StaticCluster* msg, upb_Arena* arena) {
|
1054
1125
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_ClustersConfigDump_StaticCluster_last_updated(msg);
|
@@ -1067,7 +1138,8 @@ UPB_INLINE envoy_admin_v3_ClustersConfigDump_DynamicCluster* envoy_admin_v3_Clus
|
|
1067
1138
|
UPB_INLINE envoy_admin_v3_ClustersConfigDump_DynamicCluster* envoy_admin_v3_ClustersConfigDump_DynamicCluster_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1068
1139
|
envoy_admin_v3_ClustersConfigDump_DynamicCluster* ret = envoy_admin_v3_ClustersConfigDump_DynamicCluster_new(arena);
|
1069
1140
|
if (!ret) return NULL;
|
1070
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, NULL, 0, arena) !=
|
1141
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, NULL, 0, arena) !=
|
1142
|
+
kUpb_DecodeStatus_Ok) {
|
1071
1143
|
return NULL;
|
1072
1144
|
}
|
1073
1145
|
return ret;
|
@@ -1077,98 +1149,107 @@ UPB_INLINE envoy_admin_v3_ClustersConfigDump_DynamicCluster* envoy_admin_v3_Clus
|
|
1077
1149
|
int options, upb_Arena* arena) {
|
1078
1150
|
envoy_admin_v3_ClustersConfigDump_DynamicCluster* ret = envoy_admin_v3_ClustersConfigDump_DynamicCluster_new(arena);
|
1079
1151
|
if (!ret) return NULL;
|
1080
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, extreg, options,
|
1081
|
-
|
1152
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, extreg, options,
|
1153
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1082
1154
|
return NULL;
|
1083
1155
|
}
|
1084
1156
|
return ret;
|
1085
1157
|
}
|
1086
1158
|
UPB_INLINE char* envoy_admin_v3_ClustersConfigDump_DynamicCluster_serialize(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg, upb_Arena* arena, size_t* len) {
|
1087
1159
|
char* ptr;
|
1088
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, 0, arena, &ptr, len);
|
1160
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, 0, arena, &ptr, len);
|
1089
1161
|
return ptr;
|
1090
1162
|
}
|
1091
1163
|
UPB_INLINE char* envoy_admin_v3_ClustersConfigDump_DynamicCluster_serialize_ex(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg, int options,
|
1092
1164
|
upb_Arena* arena, size_t* len) {
|
1093
1165
|
char* ptr;
|
1094
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, options, arena, &ptr, len);
|
1166
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ClustersConfigDump__DynamicCluster_msg_init, options, arena, &ptr, len);
|
1095
1167
|
return ptr;
|
1096
1168
|
}
|
1097
1169
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_clear_version_info(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1098
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1099
|
-
|
1170
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1171
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1100
1172
|
}
|
1101
1173
|
UPB_INLINE upb_StringView envoy_admin_v3_ClustersConfigDump_DynamicCluster_version_info(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1102
1174
|
upb_StringView default_val = upb_StringView_FromString("");
|
1103
1175
|
upb_StringView ret;
|
1104
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1105
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1176
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1177
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1178
|
+
&default_val, &ret);
|
1106
1179
|
return ret;
|
1107
1180
|
}
|
1108
1181
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_clear_cluster(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1109
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1110
|
-
|
1182
|
+
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)};
|
1183
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1111
1184
|
}
|
1112
1185
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_ClustersConfigDump_DynamicCluster_cluster(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1113
1186
|
const struct google_protobuf_Any* default_val = NULL;
|
1114
1187
|
const struct google_protobuf_Any* ret;
|
1115
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1116
|
-
|
1188
|
+
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)};
|
1189
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1190
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1191
|
+
&default_val, &ret);
|
1117
1192
|
return ret;
|
1118
1193
|
}
|
1119
1194
|
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_DynamicCluster_has_cluster(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1120
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1121
|
-
return
|
1195
|
+
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)};
|
1196
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1122
1197
|
}
|
1123
1198
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_clear_last_updated(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1124
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1125
|
-
|
1199
|
+
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)};
|
1200
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1126
1201
|
}
|
1127
1202
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_ClustersConfigDump_DynamicCluster_last_updated(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1128
1203
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
1129
1204
|
const struct google_protobuf_Timestamp* ret;
|
1130
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1131
|
-
|
1205
|
+
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)};
|
1206
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1207
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1208
|
+
&default_val, &ret);
|
1132
1209
|
return ret;
|
1133
1210
|
}
|
1134
1211
|
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_DynamicCluster_has_last_updated(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1135
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1136
|
-
return
|
1212
|
+
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)};
|
1213
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1137
1214
|
}
|
1138
1215
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_clear_error_state(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1139
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1140
|
-
|
1216
|
+
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)};
|
1217
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1141
1218
|
}
|
1142
1219
|
UPB_INLINE const envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ClustersConfigDump_DynamicCluster_error_state(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1143
1220
|
const envoy_admin_v3_UpdateFailureState* default_val = NULL;
|
1144
1221
|
const envoy_admin_v3_UpdateFailureState* ret;
|
1145
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1146
|
-
|
1222
|
+
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)};
|
1223
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
1224
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1225
|
+
&default_val, &ret);
|
1147
1226
|
return ret;
|
1148
1227
|
}
|
1149
1228
|
UPB_INLINE bool envoy_admin_v3_ClustersConfigDump_DynamicCluster_has_error_state(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1150
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1151
|
-
return
|
1229
|
+
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)};
|
1230
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1152
1231
|
}
|
1153
1232
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_clear_client_status(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1154
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1155
|
-
|
1233
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1234
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1156
1235
|
}
|
1157
1236
|
UPB_INLINE int32_t envoy_admin_v3_ClustersConfigDump_DynamicCluster_client_status(const envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg) {
|
1158
1237
|
int32_t default_val = 0;
|
1159
1238
|
int32_t ret;
|
1160
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1161
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1239
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1240
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1241
|
+
&default_val, &ret);
|
1162
1242
|
return ret;
|
1163
1243
|
}
|
1164
1244
|
|
1165
1245
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_set_version_info(envoy_admin_v3_ClustersConfigDump_DynamicCluster *msg, upb_StringView value) {
|
1166
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1167
|
-
|
1246
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1247
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1168
1248
|
}
|
1169
1249
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_set_cluster(envoy_admin_v3_ClustersConfigDump_DynamicCluster *msg, struct google_protobuf_Any* value) {
|
1170
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1171
|
-
|
1250
|
+
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)};
|
1251
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1252
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1172
1253
|
}
|
1173
1254
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ClustersConfigDump_DynamicCluster_mutable_cluster(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg, upb_Arena* arena) {
|
1174
1255
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_ClustersConfigDump_DynamicCluster_cluster(msg);
|
@@ -1179,8 +1260,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ClustersConfigDump_Dynamic
|
|
1179
1260
|
return sub;
|
1180
1261
|
}
|
1181
1262
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_set_last_updated(envoy_admin_v3_ClustersConfigDump_DynamicCluster *msg, struct google_protobuf_Timestamp* value) {
|
1182
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1183
|
-
|
1263
|
+
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)};
|
1264
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1265
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1184
1266
|
}
|
1185
1267
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ClustersConfigDump_DynamicCluster_mutable_last_updated(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg, upb_Arena* arena) {
|
1186
1268
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_ClustersConfigDump_DynamicCluster_last_updated(msg);
|
@@ -1191,8 +1273,9 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ClustersConfigDump_D
|
|
1191
1273
|
return sub;
|
1192
1274
|
}
|
1193
1275
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_set_error_state(envoy_admin_v3_ClustersConfigDump_DynamicCluster *msg, envoy_admin_v3_UpdateFailureState* value) {
|
1194
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1195
|
-
|
1276
|
+
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)};
|
1277
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
1278
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1196
1279
|
}
|
1197
1280
|
UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ClustersConfigDump_DynamicCluster_mutable_error_state(envoy_admin_v3_ClustersConfigDump_DynamicCluster* msg, upb_Arena* arena) {
|
1198
1281
|
struct envoy_admin_v3_UpdateFailureState* sub = (struct envoy_admin_v3_UpdateFailureState*)envoy_admin_v3_ClustersConfigDump_DynamicCluster_error_state(msg);
|
@@ -1203,8 +1286,8 @@ UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ClustersConf
|
|
1203
1286
|
return sub;
|
1204
1287
|
}
|
1205
1288
|
UPB_INLINE void envoy_admin_v3_ClustersConfigDump_DynamicCluster_set_client_status(envoy_admin_v3_ClustersConfigDump_DynamicCluster *msg, int32_t value) {
|
1206
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1207
|
-
|
1289
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1290
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1208
1291
|
}
|
1209
1292
|
|
1210
1293
|
/* envoy.admin.v3.RoutesConfigDump */
|
@@ -1215,7 +1298,8 @@ UPB_INLINE envoy_admin_v3_RoutesConfigDump* envoy_admin_v3_RoutesConfigDump_new(
|
|
1215
1298
|
UPB_INLINE envoy_admin_v3_RoutesConfigDump* envoy_admin_v3_RoutesConfigDump_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1216
1299
|
envoy_admin_v3_RoutesConfigDump* ret = envoy_admin_v3_RoutesConfigDump_new(arena);
|
1217
1300
|
if (!ret) return NULL;
|
1218
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__RoutesConfigDump_msg_init, NULL, 0, arena) !=
|
1301
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__RoutesConfigDump_msg_init, NULL, 0, arena) !=
|
1302
|
+
kUpb_DecodeStatus_Ok) {
|
1219
1303
|
return NULL;
|
1220
1304
|
}
|
1221
1305
|
return ret;
|
@@ -1225,148 +1309,156 @@ UPB_INLINE envoy_admin_v3_RoutesConfigDump* envoy_admin_v3_RoutesConfigDump_pars
|
|
1225
1309
|
int options, upb_Arena* arena) {
|
1226
1310
|
envoy_admin_v3_RoutesConfigDump* ret = envoy_admin_v3_RoutesConfigDump_new(arena);
|
1227
1311
|
if (!ret) return NULL;
|
1228
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__RoutesConfigDump_msg_init, extreg, options,
|
1229
|
-
|
1312
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__RoutesConfigDump_msg_init, extreg, options,
|
1313
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1230
1314
|
return NULL;
|
1231
1315
|
}
|
1232
1316
|
return ret;
|
1233
1317
|
}
|
1234
1318
|
UPB_INLINE char* envoy_admin_v3_RoutesConfigDump_serialize(const envoy_admin_v3_RoutesConfigDump* msg, upb_Arena* arena, size_t* len) {
|
1235
1319
|
char* ptr;
|
1236
|
-
(void)upb_Encode(msg, &envoy__admin__v3__RoutesConfigDump_msg_init, 0, arena, &ptr, len);
|
1320
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__RoutesConfigDump_msg_init, 0, arena, &ptr, len);
|
1237
1321
|
return ptr;
|
1238
1322
|
}
|
1239
1323
|
UPB_INLINE char* envoy_admin_v3_RoutesConfigDump_serialize_ex(const envoy_admin_v3_RoutesConfigDump* msg, int options,
|
1240
1324
|
upb_Arena* arena, size_t* len) {
|
1241
1325
|
char* ptr;
|
1242
|
-
(void)upb_Encode(msg, &envoy__admin__v3__RoutesConfigDump_msg_init, options, arena, &ptr, len);
|
1326
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__RoutesConfigDump_msg_init, options, arena, &ptr, len);
|
1243
1327
|
return ptr;
|
1244
1328
|
}
|
1245
1329
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_clear_static_route_configs(envoy_admin_v3_RoutesConfigDump* msg) {
|
1246
|
-
const upb_MiniTableField field = {2,
|
1247
|
-
|
1330
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1331
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1248
1332
|
}
|
1249
1333
|
UPB_INLINE const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* const* envoy_admin_v3_RoutesConfigDump_static_route_configs(const envoy_admin_v3_RoutesConfigDump* msg, size_t* size) {
|
1250
|
-
const upb_MiniTableField field = {2,
|
1251
|
-
|
1334
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1335
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init);
|
1336
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1252
1337
|
if (arr) {
|
1253
|
-
if (size) *size = arr->size;
|
1254
|
-
return (const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* const*)
|
1338
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1339
|
+
return (const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* const*)upb_Array_DataPtr(arr);
|
1255
1340
|
} else {
|
1256
1341
|
if (size) *size = 0;
|
1257
1342
|
return NULL;
|
1258
1343
|
}
|
1259
1344
|
}
|
1260
1345
|
UPB_INLINE const upb_Array* _envoy_admin_v3_RoutesConfigDump_static_route_configs_upb_array(const envoy_admin_v3_RoutesConfigDump* msg, size_t* size) {
|
1261
|
-
const upb_MiniTableField field = {2,
|
1262
|
-
|
1346
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1347
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init);
|
1348
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1263
1349
|
if (size) {
|
1264
|
-
*size = arr ? arr->size : 0;
|
1350
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1265
1351
|
}
|
1266
1352
|
return arr;
|
1267
1353
|
}
|
1268
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_RoutesConfigDump_static_route_configs_mutable_upb_array(
|
1269
|
-
const upb_MiniTableField field = {2,
|
1270
|
-
|
1271
|
-
|
1354
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_RoutesConfigDump_static_route_configs_mutable_upb_array(envoy_admin_v3_RoutesConfigDump* msg, size_t* size, upb_Arena* arena) {
|
1355
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1356
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init);
|
1357
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
1358
|
+
&field, arena);
|
1272
1359
|
if (size) {
|
1273
|
-
*size = arr ? arr->size : 0;
|
1360
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1274
1361
|
}
|
1275
1362
|
return arr;
|
1276
1363
|
}
|
1277
|
-
UPB_INLINE bool envoy_admin_v3_RoutesConfigDump_has_static_route_configs(const envoy_admin_v3_RoutesConfigDump* msg) {
|
1278
|
-
size_t size;
|
1279
|
-
envoy_admin_v3_RoutesConfigDump_static_route_configs(msg, &size);
|
1280
|
-
return size != 0;
|
1281
|
-
}
|
1282
1364
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_clear_dynamic_route_configs(envoy_admin_v3_RoutesConfigDump* msg) {
|
1283
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1284
|
-
|
1365
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1366
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1285
1367
|
}
|
1286
1368
|
UPB_INLINE const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* const* envoy_admin_v3_RoutesConfigDump_dynamic_route_configs(const envoy_admin_v3_RoutesConfigDump* msg, size_t* size) {
|
1287
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1288
|
-
|
1369
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1370
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init);
|
1371
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1289
1372
|
if (arr) {
|
1290
|
-
if (size) *size = arr->size;
|
1291
|
-
return (const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* const*)
|
1373
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1374
|
+
return (const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* const*)upb_Array_DataPtr(arr);
|
1292
1375
|
} else {
|
1293
1376
|
if (size) *size = 0;
|
1294
1377
|
return NULL;
|
1295
1378
|
}
|
1296
1379
|
}
|
1297
1380
|
UPB_INLINE const upb_Array* _envoy_admin_v3_RoutesConfigDump_dynamic_route_configs_upb_array(const envoy_admin_v3_RoutesConfigDump* msg, size_t* size) {
|
1298
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1299
|
-
|
1381
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1382
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init);
|
1383
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1300
1384
|
if (size) {
|
1301
|
-
*size = arr ? arr->size : 0;
|
1385
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1302
1386
|
}
|
1303
1387
|
return arr;
|
1304
1388
|
}
|
1305
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_RoutesConfigDump_dynamic_route_configs_mutable_upb_array(
|
1306
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1307
|
-
|
1308
|
-
|
1389
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_RoutesConfigDump_dynamic_route_configs_mutable_upb_array(envoy_admin_v3_RoutesConfigDump* msg, size_t* size, upb_Arena* arena) {
|
1390
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1391
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init);
|
1392
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
1393
|
+
&field, arena);
|
1309
1394
|
if (size) {
|
1310
|
-
*size = arr ? arr->size : 0;
|
1395
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1311
1396
|
}
|
1312
1397
|
return arr;
|
1313
1398
|
}
|
1314
|
-
UPB_INLINE bool envoy_admin_v3_RoutesConfigDump_has_dynamic_route_configs(const envoy_admin_v3_RoutesConfigDump* msg) {
|
1315
|
-
size_t size;
|
1316
|
-
envoy_admin_v3_RoutesConfigDump_dynamic_route_configs(msg, &size);
|
1317
|
-
return size != 0;
|
1318
|
-
}
|
1319
1399
|
|
1320
1400
|
UPB_INLINE envoy_admin_v3_RoutesConfigDump_StaticRouteConfig** envoy_admin_v3_RoutesConfigDump_mutable_static_route_configs(envoy_admin_v3_RoutesConfigDump* msg, size_t* size) {
|
1321
|
-
upb_MiniTableField field = {2,
|
1322
|
-
|
1401
|
+
upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1402
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init);
|
1403
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
1323
1404
|
if (arr) {
|
1324
|
-
if (size) *size = arr->size;
|
1325
|
-
return (envoy_admin_v3_RoutesConfigDump_StaticRouteConfig**)
|
1405
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1406
|
+
return (envoy_admin_v3_RoutesConfigDump_StaticRouteConfig**)upb_Array_MutableDataPtr(arr);
|
1326
1407
|
} else {
|
1327
1408
|
if (size) *size = 0;
|
1328
1409
|
return NULL;
|
1329
1410
|
}
|
1330
1411
|
}
|
1331
1412
|
UPB_INLINE envoy_admin_v3_RoutesConfigDump_StaticRouteConfig** envoy_admin_v3_RoutesConfigDump_resize_static_route_configs(envoy_admin_v3_RoutesConfigDump* msg, size_t size, upb_Arena* arena) {
|
1332
|
-
upb_MiniTableField field = {2,
|
1333
|
-
return (envoy_admin_v3_RoutesConfigDump_StaticRouteConfig**)upb_Message_ResizeArrayUninitialized(msg,
|
1413
|
+
upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1414
|
+
return (envoy_admin_v3_RoutesConfigDump_StaticRouteConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1415
|
+
&field, size, arena);
|
1334
1416
|
}
|
1335
1417
|
UPB_INLINE struct envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* envoy_admin_v3_RoutesConfigDump_add_static_route_configs(envoy_admin_v3_RoutesConfigDump* msg, upb_Arena* arena) {
|
1336
|
-
upb_MiniTableField field = {2,
|
1337
|
-
|
1338
|
-
|
1418
|
+
upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1419
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init);
|
1420
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1421
|
+
UPB_UPCAST(msg), &field, arena);
|
1422
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
1423
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
1339
1424
|
return NULL;
|
1340
1425
|
}
|
1341
1426
|
struct envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* sub = (struct envoy_admin_v3_RoutesConfigDump_StaticRouteConfig*)_upb_Message_New(&envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, arena);
|
1342
1427
|
if (!arr || !sub) return NULL;
|
1343
|
-
_upb_Array_Set
|
1428
|
+
UPB_PRIVATE(_upb_Array_Set)
|
1429
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
1344
1430
|
return sub;
|
1345
1431
|
}
|
1346
1432
|
UPB_INLINE envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig** envoy_admin_v3_RoutesConfigDump_mutable_dynamic_route_configs(envoy_admin_v3_RoutesConfigDump* msg, size_t* size) {
|
1347
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
1348
|
-
|
1433
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1434
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init);
|
1435
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
1349
1436
|
if (arr) {
|
1350
|
-
if (size) *size = arr->size;
|
1351
|
-
return (envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig**)
|
1437
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1438
|
+
return (envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig**)upb_Array_MutableDataPtr(arr);
|
1352
1439
|
} else {
|
1353
1440
|
if (size) *size = 0;
|
1354
1441
|
return NULL;
|
1355
1442
|
}
|
1356
1443
|
}
|
1357
1444
|
UPB_INLINE envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig** envoy_admin_v3_RoutesConfigDump_resize_dynamic_route_configs(envoy_admin_v3_RoutesConfigDump* msg, size_t size, upb_Arena* arena) {
|
1358
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
1359
|
-
return (envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig**)upb_Message_ResizeArrayUninitialized(msg,
|
1445
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1446
|
+
return (envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1447
|
+
&field, size, arena);
|
1360
1448
|
}
|
1361
1449
|
UPB_INLINE struct envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* envoy_admin_v3_RoutesConfigDump_add_dynamic_route_configs(envoy_admin_v3_RoutesConfigDump* msg, upb_Arena* arena) {
|
1362
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
1363
|
-
|
1364
|
-
|
1450
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1451
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init);
|
1452
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1453
|
+
UPB_UPCAST(msg), &field, arena);
|
1454
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
1455
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
1365
1456
|
return NULL;
|
1366
1457
|
}
|
1367
1458
|
struct envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* sub = (struct envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig*)_upb_Message_New(&envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, arena);
|
1368
1459
|
if (!arr || !sub) return NULL;
|
1369
|
-
_upb_Array_Set
|
1460
|
+
UPB_PRIVATE(_upb_Array_Set)
|
1461
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
1370
1462
|
return sub;
|
1371
1463
|
}
|
1372
1464
|
|
@@ -1378,7 +1470,8 @@ UPB_INLINE envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* envoy_admin_v3_Rou
|
|
1378
1470
|
UPB_INLINE envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1379
1471
|
envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* ret = envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_new(arena);
|
1380
1472
|
if (!ret) return NULL;
|
1381
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, NULL, 0, arena) !=
|
1473
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, NULL, 0, arena) !=
|
1474
|
+
kUpb_DecodeStatus_Ok) {
|
1382
1475
|
return NULL;
|
1383
1476
|
}
|
1384
1477
|
return ret;
|
@@ -1388,57 +1481,62 @@ UPB_INLINE envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* envoy_admin_v3_Rou
|
|
1388
1481
|
int options, upb_Arena* arena) {
|
1389
1482
|
envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* ret = envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_new(arena);
|
1390
1483
|
if (!ret) return NULL;
|
1391
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, extreg, options,
|
1392
|
-
|
1484
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, extreg, options,
|
1485
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1393
1486
|
return NULL;
|
1394
1487
|
}
|
1395
1488
|
return ret;
|
1396
1489
|
}
|
1397
1490
|
UPB_INLINE char* envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_serialize(const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg, upb_Arena* arena, size_t* len) {
|
1398
1491
|
char* ptr;
|
1399
|
-
(void)upb_Encode(msg, &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, 0, arena, &ptr, len);
|
1492
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, 0, arena, &ptr, len);
|
1400
1493
|
return ptr;
|
1401
1494
|
}
|
1402
1495
|
UPB_INLINE char* envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_serialize_ex(const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg, int options,
|
1403
1496
|
upb_Arena* arena, size_t* len) {
|
1404
1497
|
char* ptr;
|
1405
|
-
(void)upb_Encode(msg, &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, options, arena, &ptr, len);
|
1498
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__RoutesConfigDump__StaticRouteConfig_msg_init, options, arena, &ptr, len);
|
1406
1499
|
return ptr;
|
1407
1500
|
}
|
1408
1501
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_clear_route_config(envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg) {
|
1409
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1410
|
-
|
1502
|
+
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)};
|
1503
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1411
1504
|
}
|
1412
1505
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_route_config(const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg) {
|
1413
1506
|
const struct google_protobuf_Any* default_val = NULL;
|
1414
1507
|
const struct google_protobuf_Any* ret;
|
1415
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1416
|
-
|
1508
|
+
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)};
|
1509
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1510
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1511
|
+
&default_val, &ret);
|
1417
1512
|
return ret;
|
1418
1513
|
}
|
1419
1514
|
UPB_INLINE bool envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_has_route_config(const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg) {
|
1420
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1421
|
-
return
|
1515
|
+
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)};
|
1516
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1422
1517
|
}
|
1423
1518
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_clear_last_updated(envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg) {
|
1424
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1425
|
-
|
1519
|
+
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)};
|
1520
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1426
1521
|
}
|
1427
1522
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_last_updated(const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg) {
|
1428
1523
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
1429
1524
|
const struct google_protobuf_Timestamp* ret;
|
1430
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1431
|
-
|
1525
|
+
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)};
|
1526
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1527
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1528
|
+
&default_val, &ret);
|
1432
1529
|
return ret;
|
1433
1530
|
}
|
1434
1531
|
UPB_INLINE bool envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_has_last_updated(const envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg) {
|
1435
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1436
|
-
return
|
1532
|
+
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)};
|
1533
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1437
1534
|
}
|
1438
1535
|
|
1439
1536
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_set_route_config(envoy_admin_v3_RoutesConfigDump_StaticRouteConfig *msg, struct google_protobuf_Any* value) {
|
1440
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1441
|
-
|
1537
|
+
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)};
|
1538
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1539
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1442
1540
|
}
|
1443
1541
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_mutable_route_config(envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg, upb_Arena* arena) {
|
1444
1542
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_route_config(msg);
|
@@ -1449,8 +1547,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_RoutesConfigDump_StaticRou
|
|
1449
1547
|
return sub;
|
1450
1548
|
}
|
1451
1549
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_set_last_updated(envoy_admin_v3_RoutesConfigDump_StaticRouteConfig *msg, struct google_protobuf_Timestamp* value) {
|
1452
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1453
|
-
|
1550
|
+
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)};
|
1551
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1552
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1454
1553
|
}
|
1455
1554
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_mutable_last_updated(envoy_admin_v3_RoutesConfigDump_StaticRouteConfig* msg, upb_Arena* arena) {
|
1456
1555
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_RoutesConfigDump_StaticRouteConfig_last_updated(msg);
|
@@ -1469,7 +1568,8 @@ UPB_INLINE envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* envoy_admin_v3_Ro
|
|
1469
1568
|
UPB_INLINE envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1470
1569
|
envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* ret = envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_new(arena);
|
1471
1570
|
if (!ret) return NULL;
|
1472
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, NULL, 0, arena) !=
|
1571
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, NULL, 0, arena) !=
|
1572
|
+
kUpb_DecodeStatus_Ok) {
|
1473
1573
|
return NULL;
|
1474
1574
|
}
|
1475
1575
|
return ret;
|
@@ -1479,98 +1579,107 @@ UPB_INLINE envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* envoy_admin_v3_Ro
|
|
1479
1579
|
int options, upb_Arena* arena) {
|
1480
1580
|
envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* ret = envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_new(arena);
|
1481
1581
|
if (!ret) return NULL;
|
1482
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, extreg, options,
|
1483
|
-
|
1582
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, extreg, options,
|
1583
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1484
1584
|
return NULL;
|
1485
1585
|
}
|
1486
1586
|
return ret;
|
1487
1587
|
}
|
1488
1588
|
UPB_INLINE char* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_serialize(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg, upb_Arena* arena, size_t* len) {
|
1489
1589
|
char* ptr;
|
1490
|
-
(void)upb_Encode(msg, &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, 0, arena, &ptr, len);
|
1590
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, 0, arena, &ptr, len);
|
1491
1591
|
return ptr;
|
1492
1592
|
}
|
1493
1593
|
UPB_INLINE char* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_serialize_ex(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg, int options,
|
1494
1594
|
upb_Arena* arena, size_t* len) {
|
1495
1595
|
char* ptr;
|
1496
|
-
(void)upb_Encode(msg, &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, options, arena, &ptr, len);
|
1596
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__RoutesConfigDump__DynamicRouteConfig_msg_init, options, arena, &ptr, len);
|
1497
1597
|
return ptr;
|
1498
1598
|
}
|
1499
1599
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_clear_version_info(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1500
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1501
|
-
|
1600
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1601
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1502
1602
|
}
|
1503
1603
|
UPB_INLINE upb_StringView envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_version_info(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1504
1604
|
upb_StringView default_val = upb_StringView_FromString("");
|
1505
1605
|
upb_StringView ret;
|
1506
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1507
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1606
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1607
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1608
|
+
&default_val, &ret);
|
1508
1609
|
return ret;
|
1509
1610
|
}
|
1510
1611
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_clear_route_config(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1511
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1512
|
-
|
1612
|
+
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)};
|
1613
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1513
1614
|
}
|
1514
1615
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_route_config(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1515
1616
|
const struct google_protobuf_Any* default_val = NULL;
|
1516
1617
|
const struct google_protobuf_Any* ret;
|
1517
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1518
|
-
|
1618
|
+
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)};
|
1619
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1620
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1621
|
+
&default_val, &ret);
|
1519
1622
|
return ret;
|
1520
1623
|
}
|
1521
1624
|
UPB_INLINE bool envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_has_route_config(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1522
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1523
|
-
return
|
1625
|
+
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)};
|
1626
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1524
1627
|
}
|
1525
1628
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_clear_last_updated(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1526
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1527
|
-
|
1629
|
+
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)};
|
1630
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1528
1631
|
}
|
1529
1632
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_last_updated(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1530
1633
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
1531
1634
|
const struct google_protobuf_Timestamp* ret;
|
1532
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1533
|
-
|
1635
|
+
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)};
|
1636
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1637
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1638
|
+
&default_val, &ret);
|
1534
1639
|
return ret;
|
1535
1640
|
}
|
1536
1641
|
UPB_INLINE bool envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_has_last_updated(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1537
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1538
|
-
return
|
1642
|
+
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)};
|
1643
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1539
1644
|
}
|
1540
1645
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_clear_error_state(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1541
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1542
|
-
|
1646
|
+
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)};
|
1647
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1543
1648
|
}
|
1544
1649
|
UPB_INLINE const envoy_admin_v3_UpdateFailureState* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_error_state(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1545
1650
|
const envoy_admin_v3_UpdateFailureState* default_val = NULL;
|
1546
1651
|
const envoy_admin_v3_UpdateFailureState* ret;
|
1547
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1548
|
-
|
1652
|
+
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)};
|
1653
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
1654
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1655
|
+
&default_val, &ret);
|
1549
1656
|
return ret;
|
1550
1657
|
}
|
1551
1658
|
UPB_INLINE bool envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_has_error_state(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1552
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1553
|
-
return
|
1659
|
+
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)};
|
1660
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1554
1661
|
}
|
1555
1662
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_clear_client_status(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1556
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1557
|
-
|
1663
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1664
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1558
1665
|
}
|
1559
1666
|
UPB_INLINE int32_t envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_client_status(const envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg) {
|
1560
1667
|
int32_t default_val = 0;
|
1561
1668
|
int32_t ret;
|
1562
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1563
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1669
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1670
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1671
|
+
&default_val, &ret);
|
1564
1672
|
return ret;
|
1565
1673
|
}
|
1566
1674
|
|
1567
1675
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_set_version_info(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig *msg, upb_StringView value) {
|
1568
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1569
|
-
|
1676
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1677
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1570
1678
|
}
|
1571
1679
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_set_route_config(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig *msg, struct google_protobuf_Any* value) {
|
1572
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1573
|
-
|
1680
|
+
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)};
|
1681
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1682
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1574
1683
|
}
|
1575
1684
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_mutable_route_config(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg, upb_Arena* arena) {
|
1576
1685
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_route_config(msg);
|
@@ -1581,8 +1690,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_RoutesConfigDump_DynamicRo
|
|
1581
1690
|
return sub;
|
1582
1691
|
}
|
1583
1692
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_set_last_updated(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig *msg, struct google_protobuf_Timestamp* value) {
|
1584
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1585
|
-
|
1693
|
+
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)};
|
1694
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1695
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1586
1696
|
}
|
1587
1697
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_mutable_last_updated(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg, upb_Arena* arena) {
|
1588
1698
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_last_updated(msg);
|
@@ -1593,8 +1703,9 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_RoutesConfigDump_Dyn
|
|
1593
1703
|
return sub;
|
1594
1704
|
}
|
1595
1705
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_set_error_state(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig *msg, envoy_admin_v3_UpdateFailureState* value) {
|
1596
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1597
|
-
|
1706
|
+
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)};
|
1707
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
1708
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1598
1709
|
}
|
1599
1710
|
UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_mutable_error_state(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig* msg, upb_Arena* arena) {
|
1600
1711
|
struct envoy_admin_v3_UpdateFailureState* sub = (struct envoy_admin_v3_UpdateFailureState*)envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_error_state(msg);
|
@@ -1605,8 +1716,8 @@ UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_RoutesConfig
|
|
1605
1716
|
return sub;
|
1606
1717
|
}
|
1607
1718
|
UPB_INLINE void envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig_set_client_status(envoy_admin_v3_RoutesConfigDump_DynamicRouteConfig *msg, int32_t value) {
|
1608
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1609
|
-
|
1719
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1720
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1610
1721
|
}
|
1611
1722
|
|
1612
1723
|
/* envoy.admin.v3.ScopedRoutesConfigDump */
|
@@ -1617,7 +1728,8 @@ UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump* envoy_admin_v3_ScopedRoutesCon
|
|
1617
1728
|
UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump* envoy_admin_v3_ScopedRoutesConfigDump_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1618
1729
|
envoy_admin_v3_ScopedRoutesConfigDump* ret = envoy_admin_v3_ScopedRoutesConfigDump_new(arena);
|
1619
1730
|
if (!ret) return NULL;
|
1620
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, NULL, 0, arena) !=
|
1731
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, NULL, 0, arena) !=
|
1732
|
+
kUpb_DecodeStatus_Ok) {
|
1621
1733
|
return NULL;
|
1622
1734
|
}
|
1623
1735
|
return ret;
|
@@ -1627,148 +1739,156 @@ UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump* envoy_admin_v3_ScopedRoutesCon
|
|
1627
1739
|
int options, upb_Arena* arena) {
|
1628
1740
|
envoy_admin_v3_ScopedRoutesConfigDump* ret = envoy_admin_v3_ScopedRoutesConfigDump_new(arena);
|
1629
1741
|
if (!ret) return NULL;
|
1630
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, extreg, options,
|
1631
|
-
|
1742
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, extreg, options,
|
1743
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1632
1744
|
return NULL;
|
1633
1745
|
}
|
1634
1746
|
return ret;
|
1635
1747
|
}
|
1636
1748
|
UPB_INLINE char* envoy_admin_v3_ScopedRoutesConfigDump_serialize(const envoy_admin_v3_ScopedRoutesConfigDump* msg, upb_Arena* arena, size_t* len) {
|
1637
1749
|
char* ptr;
|
1638
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, 0, arena, &ptr, len);
|
1750
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, 0, arena, &ptr, len);
|
1639
1751
|
return ptr;
|
1640
1752
|
}
|
1641
1753
|
UPB_INLINE char* envoy_admin_v3_ScopedRoutesConfigDump_serialize_ex(const envoy_admin_v3_ScopedRoutesConfigDump* msg, int options,
|
1642
1754
|
upb_Arena* arena, size_t* len) {
|
1643
1755
|
char* ptr;
|
1644
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, options, arena, &ptr, len);
|
1756
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ScopedRoutesConfigDump_msg_init, options, arena, &ptr, len);
|
1645
1757
|
return ptr;
|
1646
1758
|
}
|
1647
1759
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_clear_inline_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg) {
|
1648
|
-
const upb_MiniTableField field = {1,
|
1649
|
-
|
1760
|
+
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)};
|
1761
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1650
1762
|
}
|
1651
1763
|
UPB_INLINE const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* const* envoy_admin_v3_ScopedRoutesConfigDump_inline_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size) {
|
1652
|
-
const upb_MiniTableField field = {1,
|
1653
|
-
|
1764
|
+
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)};
|
1765
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init);
|
1766
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1654
1767
|
if (arr) {
|
1655
|
-
if (size) *size = arr->size;
|
1656
|
-
return (const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* const*)
|
1768
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1769
|
+
return (const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* const*)upb_Array_DataPtr(arr);
|
1657
1770
|
} else {
|
1658
1771
|
if (size) *size = 0;
|
1659
1772
|
return NULL;
|
1660
1773
|
}
|
1661
1774
|
}
|
1662
1775
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_inline_scoped_route_configs_upb_array(const envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size) {
|
1663
|
-
const upb_MiniTableField field = {1,
|
1664
|
-
|
1776
|
+
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)};
|
1777
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init);
|
1778
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1665
1779
|
if (size) {
|
1666
|
-
*size = arr ? arr->size : 0;
|
1780
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1667
1781
|
}
|
1668
1782
|
return arr;
|
1669
1783
|
}
|
1670
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_inline_scoped_route_configs_mutable_upb_array(
|
1671
|
-
const upb_MiniTableField field = {1,
|
1672
|
-
|
1673
|
-
|
1784
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_inline_scoped_route_configs_mutable_upb_array(envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size, upb_Arena* arena) {
|
1785
|
+
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)};
|
1786
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init);
|
1787
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
1788
|
+
&field, arena);
|
1674
1789
|
if (size) {
|
1675
|
-
*size = arr ? arr->size : 0;
|
1790
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1676
1791
|
}
|
1677
1792
|
return arr;
|
1678
1793
|
}
|
1679
|
-
UPB_INLINE bool envoy_admin_v3_ScopedRoutesConfigDump_has_inline_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump* msg) {
|
1680
|
-
size_t size;
|
1681
|
-
envoy_admin_v3_ScopedRoutesConfigDump_inline_scoped_route_configs(msg, &size);
|
1682
|
-
return size != 0;
|
1683
|
-
}
|
1684
1794
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_clear_dynamic_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg) {
|
1685
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1686
|
-
|
1795
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1796
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1687
1797
|
}
|
1688
1798
|
UPB_INLINE const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* const* envoy_admin_v3_ScopedRoutesConfigDump_dynamic_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size) {
|
1689
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1690
|
-
|
1799
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1800
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init);
|
1801
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1691
1802
|
if (arr) {
|
1692
|
-
if (size) *size = arr->size;
|
1693
|
-
return (const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* const*)
|
1803
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1804
|
+
return (const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* const*)upb_Array_DataPtr(arr);
|
1694
1805
|
} else {
|
1695
1806
|
if (size) *size = 0;
|
1696
1807
|
return NULL;
|
1697
1808
|
}
|
1698
1809
|
}
|
1699
1810
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_dynamic_scoped_route_configs_upb_array(const envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size) {
|
1700
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1701
|
-
|
1811
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1812
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init);
|
1813
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1702
1814
|
if (size) {
|
1703
|
-
*size = arr ? arr->size : 0;
|
1815
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1704
1816
|
}
|
1705
1817
|
return arr;
|
1706
1818
|
}
|
1707
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_dynamic_scoped_route_configs_mutable_upb_array(
|
1708
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1709
|
-
|
1710
|
-
|
1819
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_dynamic_scoped_route_configs_mutable_upb_array(envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size, upb_Arena* arena) {
|
1820
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1821
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init);
|
1822
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
1823
|
+
&field, arena);
|
1711
1824
|
if (size) {
|
1712
|
-
*size = arr ? arr->size : 0;
|
1825
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1713
1826
|
}
|
1714
1827
|
return arr;
|
1715
1828
|
}
|
1716
|
-
UPB_INLINE bool envoy_admin_v3_ScopedRoutesConfigDump_has_dynamic_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump* msg) {
|
1717
|
-
size_t size;
|
1718
|
-
envoy_admin_v3_ScopedRoutesConfigDump_dynamic_scoped_route_configs(msg, &size);
|
1719
|
-
return size != 0;
|
1720
|
-
}
|
1721
1829
|
|
1722
1830
|
UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs** envoy_admin_v3_ScopedRoutesConfigDump_mutable_inline_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size) {
|
1723
|
-
upb_MiniTableField field = {1,
|
1724
|
-
|
1831
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1832
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init);
|
1833
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
1725
1834
|
if (arr) {
|
1726
|
-
if (size) *size = arr->size;
|
1727
|
-
return (envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs**)
|
1835
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1836
|
+
return (envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs**)upb_Array_MutableDataPtr(arr);
|
1728
1837
|
} else {
|
1729
1838
|
if (size) *size = 0;
|
1730
1839
|
return NULL;
|
1731
1840
|
}
|
1732
1841
|
}
|
1733
1842
|
UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs** envoy_admin_v3_ScopedRoutesConfigDump_resize_inline_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t size, upb_Arena* arena) {
|
1734
|
-
upb_MiniTableField field = {1,
|
1735
|
-
return (envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs**)upb_Message_ResizeArrayUninitialized(msg,
|
1843
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1844
|
+
return (envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1845
|
+
&field, size, arena);
|
1736
1846
|
}
|
1737
1847
|
UPB_INLINE struct envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* envoy_admin_v3_ScopedRoutesConfigDump_add_inline_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg, upb_Arena* arena) {
|
1738
|
-
upb_MiniTableField field = {1,
|
1739
|
-
|
1740
|
-
|
1848
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1849
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init);
|
1850
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1851
|
+
UPB_UPCAST(msg), &field, arena);
|
1852
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
1853
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
1741
1854
|
return NULL;
|
1742
1855
|
}
|
1743
1856
|
struct envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* sub = (struct envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs*)_upb_Message_New(&envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, arena);
|
1744
1857
|
if (!arr || !sub) return NULL;
|
1745
|
-
_upb_Array_Set
|
1858
|
+
UPB_PRIVATE(_upb_Array_Set)
|
1859
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
1746
1860
|
return sub;
|
1747
1861
|
}
|
1748
1862
|
UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs** envoy_admin_v3_ScopedRoutesConfigDump_mutable_dynamic_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t* size) {
|
1749
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
1750
|
-
|
1863
|
+
upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1864
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init);
|
1865
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
1751
1866
|
if (arr) {
|
1752
|
-
if (size) *size = arr->size;
|
1753
|
-
return (envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs**)
|
1867
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1868
|
+
return (envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs**)upb_Array_MutableDataPtr(arr);
|
1754
1869
|
} else {
|
1755
1870
|
if (size) *size = 0;
|
1756
1871
|
return NULL;
|
1757
1872
|
}
|
1758
1873
|
}
|
1759
1874
|
UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs** envoy_admin_v3_ScopedRoutesConfigDump_resize_dynamic_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg, size_t size, upb_Arena* arena) {
|
1760
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
1761
|
-
return (envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs**)upb_Message_ResizeArrayUninitialized(msg,
|
1875
|
+
upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1876
|
+
return (envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1877
|
+
&field, size, arena);
|
1762
1878
|
}
|
1763
1879
|
UPB_INLINE struct envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* envoy_admin_v3_ScopedRoutesConfigDump_add_dynamic_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump* msg, upb_Arena* arena) {
|
1764
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
1765
|
-
|
1766
|
-
|
1880
|
+
upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1881
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init);
|
1882
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1883
|
+
UPB_UPCAST(msg), &field, arena);
|
1884
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
1885
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
1767
1886
|
return NULL;
|
1768
1887
|
}
|
1769
1888
|
struct envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* sub = (struct envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs*)_upb_Message_New(&envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, arena);
|
1770
1889
|
if (!arr || !sub) return NULL;
|
1771
|
-
_upb_Array_Set
|
1890
|
+
UPB_PRIVATE(_upb_Array_Set)
|
1891
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
1772
1892
|
return sub;
|
1773
1893
|
}
|
1774
1894
|
|
@@ -1780,7 +1900,8 @@ UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* envoy
|
|
1780
1900
|
UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1781
1901
|
envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* ret = envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_new(arena);
|
1782
1902
|
if (!ret) return NULL;
|
1783
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, NULL, 0, arena) !=
|
1903
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, NULL, 0, arena) !=
|
1904
|
+
kUpb_DecodeStatus_Ok) {
|
1784
1905
|
return NULL;
|
1785
1906
|
}
|
1786
1907
|
return ret;
|
@@ -1790,120 +1911,128 @@ UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* envoy
|
|
1790
1911
|
int options, upb_Arena* arena) {
|
1791
1912
|
envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* ret = envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_new(arena);
|
1792
1913
|
if (!ret) return NULL;
|
1793
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, extreg, options,
|
1794
|
-
|
1914
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, extreg, options,
|
1915
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1795
1916
|
return NULL;
|
1796
1917
|
}
|
1797
1918
|
return ret;
|
1798
1919
|
}
|
1799
1920
|
UPB_INLINE char* envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_serialize(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, upb_Arena* arena, size_t* len) {
|
1800
1921
|
char* ptr;
|
1801
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, 0, arena, &ptr, len);
|
1922
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, 0, arena, &ptr, len);
|
1802
1923
|
return ptr;
|
1803
1924
|
}
|
1804
1925
|
UPB_INLINE char* envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_serialize_ex(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, int options,
|
1805
1926
|
upb_Arena* arena, size_t* len) {
|
1806
1927
|
char* ptr;
|
1807
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, options, arena, &ptr, len);
|
1928
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ScopedRoutesConfigDump__InlineScopedRouteConfigs_msg_init, options, arena, &ptr, len);
|
1808
1929
|
return ptr;
|
1809
1930
|
}
|
1810
1931
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_clear_name(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg) {
|
1811
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1812
|
-
|
1932
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1933
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1813
1934
|
}
|
1814
1935
|
UPB_INLINE upb_StringView envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_name(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg) {
|
1815
1936
|
upb_StringView default_val = upb_StringView_FromString("");
|
1816
1937
|
upb_StringView ret;
|
1817
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1818
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1938
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1939
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1940
|
+
&default_val, &ret);
|
1819
1941
|
return ret;
|
1820
1942
|
}
|
1821
1943
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_clear_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg) {
|
1822
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1823
|
-
|
1944
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1945
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1824
1946
|
}
|
1825
1947
|
UPB_INLINE const struct google_protobuf_Any* const* envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, size_t* size) {
|
1826
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1827
|
-
|
1948
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1949
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1950
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1828
1951
|
if (arr) {
|
1829
|
-
if (size) *size = arr->size;
|
1830
|
-
return (const struct google_protobuf_Any* const*)
|
1952
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
1953
|
+
return (const struct google_protobuf_Any* const*)upb_Array_DataPtr(arr);
|
1831
1954
|
} else {
|
1832
1955
|
if (size) *size = 0;
|
1833
1956
|
return NULL;
|
1834
1957
|
}
|
1835
1958
|
}
|
1836
1959
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_scoped_route_configs_upb_array(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, size_t* size) {
|
1837
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1838
|
-
|
1960
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1961
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1962
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1839
1963
|
if (size) {
|
1840
|
-
*size = arr ? arr->size : 0;
|
1964
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1841
1965
|
}
|
1842
1966
|
return arr;
|
1843
1967
|
}
|
1844
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_scoped_route_configs_mutable_upb_array(
|
1845
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1846
|
-
|
1847
|
-
|
1968
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_scoped_route_configs_mutable_upb_array(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, size_t* size, upb_Arena* arena) {
|
1969
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1970
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1971
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
1972
|
+
&field, arena);
|
1848
1973
|
if (size) {
|
1849
|
-
*size = arr ? arr->size : 0;
|
1974
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1850
1975
|
}
|
1851
1976
|
return arr;
|
1852
1977
|
}
|
1853
|
-
UPB_INLINE bool envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_has_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg) {
|
1854
|
-
size_t size;
|
1855
|
-
envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_scoped_route_configs(msg, &size);
|
1856
|
-
return size != 0;
|
1857
|
-
}
|
1858
1978
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_clear_last_updated(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg) {
|
1859
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1860
|
-
|
1979
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1980
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1861
1981
|
}
|
1862
1982
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_last_updated(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg) {
|
1863
1983
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
1864
1984
|
const struct google_protobuf_Timestamp* ret;
|
1865
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1866
|
-
|
1985
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1986
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1987
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1988
|
+
&default_val, &ret);
|
1867
1989
|
return ret;
|
1868
1990
|
}
|
1869
1991
|
UPB_INLINE bool envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_has_last_updated(const envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg) {
|
1870
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1871
|
-
return
|
1992
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1993
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1872
1994
|
}
|
1873
1995
|
|
1874
1996
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_set_name(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs *msg, upb_StringView value) {
|
1875
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1876
|
-
|
1997
|
+
const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1998
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1877
1999
|
}
|
1878
2000
|
UPB_INLINE struct google_protobuf_Any** envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_mutable_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, size_t* size) {
|
1879
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
1880
|
-
|
2001
|
+
upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2002
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2003
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
1881
2004
|
if (arr) {
|
1882
|
-
if (size) *size = arr->size;
|
1883
|
-
return (struct google_protobuf_Any**)
|
2005
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2006
|
+
return (struct google_protobuf_Any**)upb_Array_MutableDataPtr(arr);
|
1884
2007
|
} else {
|
1885
2008
|
if (size) *size = 0;
|
1886
2009
|
return NULL;
|
1887
2010
|
}
|
1888
2011
|
}
|
1889
2012
|
UPB_INLINE struct google_protobuf_Any** envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_resize_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, size_t size, upb_Arena* arena) {
|
1890
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
1891
|
-
return (struct google_protobuf_Any**)upb_Message_ResizeArrayUninitialized(msg,
|
2013
|
+
upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2014
|
+
return (struct google_protobuf_Any**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2015
|
+
&field, size, arena);
|
1892
2016
|
}
|
1893
2017
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_add_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, upb_Arena* arena) {
|
1894
|
-
upb_MiniTableField field = {2, UPB_SIZE(
|
1895
|
-
|
1896
|
-
|
2018
|
+
upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2019
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2020
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2021
|
+
UPB_UPCAST(msg), &field, arena);
|
2022
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
2023
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
1897
2024
|
return NULL;
|
1898
2025
|
}
|
1899
2026
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)_upb_Message_New(&google__protobuf__Any_msg_init, arena);
|
1900
2027
|
if (!arr || !sub) return NULL;
|
1901
|
-
_upb_Array_Set
|
2028
|
+
UPB_PRIVATE(_upb_Array_Set)
|
2029
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
1902
2030
|
return sub;
|
1903
2031
|
}
|
1904
2032
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_set_last_updated(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs *msg, struct google_protobuf_Timestamp* value) {
|
1905
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1906
|
-
|
2033
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2034
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2035
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1907
2036
|
}
|
1908
2037
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_mutable_last_updated(envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs* msg, upb_Arena* arena) {
|
1909
2038
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_ScopedRoutesConfigDump_InlineScopedRouteConfigs_last_updated(msg);
|
@@ -1922,7 +2051,8 @@ UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* envo
|
|
1922
2051
|
UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1923
2052
|
envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* ret = envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_new(arena);
|
1924
2053
|
if (!ret) return NULL;
|
1925
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, NULL, 0, arena) !=
|
2054
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, NULL, 0, arena) !=
|
2055
|
+
kUpb_DecodeStatus_Ok) {
|
1926
2056
|
return NULL;
|
1927
2057
|
}
|
1928
2058
|
return ret;
|
@@ -1932,161 +2062,173 @@ UPB_INLINE envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* envo
|
|
1932
2062
|
int options, upb_Arena* arena) {
|
1933
2063
|
envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* ret = envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_new(arena);
|
1934
2064
|
if (!ret) return NULL;
|
1935
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, extreg, options,
|
1936
|
-
|
2065
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, extreg, options,
|
2066
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1937
2067
|
return NULL;
|
1938
2068
|
}
|
1939
2069
|
return ret;
|
1940
2070
|
}
|
1941
2071
|
UPB_INLINE char* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_serialize(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, upb_Arena* arena, size_t* len) {
|
1942
2072
|
char* ptr;
|
1943
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, 0, arena, &ptr, len);
|
2073
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, 0, arena, &ptr, len);
|
1944
2074
|
return ptr;
|
1945
2075
|
}
|
1946
2076
|
UPB_INLINE char* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_serialize_ex(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, int options,
|
1947
2077
|
upb_Arena* arena, size_t* len) {
|
1948
2078
|
char* ptr;
|
1949
|
-
(void)upb_Encode(msg, &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, options, arena, &ptr, len);
|
2079
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__ScopedRoutesConfigDump__DynamicScopedRouteConfigs_msg_init, options, arena, &ptr, len);
|
1950
2080
|
return ptr;
|
1951
2081
|
}
|
1952
2082
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_clear_name(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
1953
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1954
|
-
|
2083
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2084
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1955
2085
|
}
|
1956
2086
|
UPB_INLINE upb_StringView envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_name(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
1957
2087
|
upb_StringView default_val = upb_StringView_FromString("");
|
1958
2088
|
upb_StringView ret;
|
1959
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
1960
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2089
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2090
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2091
|
+
&default_val, &ret);
|
1961
2092
|
return ret;
|
1962
2093
|
}
|
1963
2094
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_clear_version_info(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
1964
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1965
|
-
|
2095
|
+
const upb_MiniTableField field = {2, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2096
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1966
2097
|
}
|
1967
2098
|
UPB_INLINE upb_StringView envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_version_info(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
1968
2099
|
upb_StringView default_val = upb_StringView_FromString("");
|
1969
2100
|
upb_StringView ret;
|
1970
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1971
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2101
|
+
const upb_MiniTableField field = {2, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2102
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2103
|
+
&default_val, &ret);
|
1972
2104
|
return ret;
|
1973
2105
|
}
|
1974
2106
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_clear_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
1975
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1976
|
-
|
2107
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2108
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1977
2109
|
}
|
1978
2110
|
UPB_INLINE const struct google_protobuf_Any* const* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, size_t* size) {
|
1979
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1980
|
-
|
2111
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2112
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2113
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1981
2114
|
if (arr) {
|
1982
|
-
if (size) *size = arr->size;
|
1983
|
-
return (const struct google_protobuf_Any* const*)
|
2115
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2116
|
+
return (const struct google_protobuf_Any* const*)upb_Array_DataPtr(arr);
|
1984
2117
|
} else {
|
1985
2118
|
if (size) *size = 0;
|
1986
2119
|
return NULL;
|
1987
2120
|
}
|
1988
2121
|
}
|
1989
2122
|
UPB_INLINE const upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_scoped_route_configs_upb_array(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, size_t* size) {
|
1990
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1991
|
-
|
2123
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2124
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2125
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1992
2126
|
if (size) {
|
1993
|
-
*size = arr ? arr->size : 0;
|
2127
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1994
2128
|
}
|
1995
2129
|
return arr;
|
1996
2130
|
}
|
1997
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_scoped_route_configs_mutable_upb_array(
|
1998
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1999
|
-
|
2000
|
-
|
2131
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_scoped_route_configs_mutable_upb_array(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, size_t* size, upb_Arena* arena) {
|
2132
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2133
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2134
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2135
|
+
&field, arena);
|
2001
2136
|
if (size) {
|
2002
|
-
*size = arr ? arr->size : 0;
|
2137
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
2003
2138
|
}
|
2004
2139
|
return arr;
|
2005
2140
|
}
|
2006
|
-
UPB_INLINE bool envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_has_scoped_route_configs(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2007
|
-
size_t size;
|
2008
|
-
envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_scoped_route_configs(msg, &size);
|
2009
|
-
return size != 0;
|
2010
|
-
}
|
2011
2141
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_clear_last_updated(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2012
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2013
|
-
|
2142
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2143
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2014
2144
|
}
|
2015
2145
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_last_updated(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2016
2146
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
2017
2147
|
const struct google_protobuf_Timestamp* ret;
|
2018
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2019
|
-
|
2148
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2149
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2150
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2151
|
+
&default_val, &ret);
|
2020
2152
|
return ret;
|
2021
2153
|
}
|
2022
2154
|
UPB_INLINE bool envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_has_last_updated(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2023
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2024
|
-
return
|
2155
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2156
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2025
2157
|
}
|
2026
2158
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_clear_error_state(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2027
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2028
|
-
|
2159
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2160
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2029
2161
|
}
|
2030
2162
|
UPB_INLINE const envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_error_state(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2031
2163
|
const envoy_admin_v3_UpdateFailureState* default_val = NULL;
|
2032
2164
|
const envoy_admin_v3_UpdateFailureState* ret;
|
2033
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2034
|
-
|
2165
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2166
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
2167
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2168
|
+
&default_val, &ret);
|
2035
2169
|
return ret;
|
2036
2170
|
}
|
2037
2171
|
UPB_INLINE bool envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_has_error_state(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2038
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2039
|
-
return
|
2172
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2173
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2040
2174
|
}
|
2041
2175
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_clear_client_status(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2042
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2043
|
-
|
2176
|
+
const upb_MiniTableField field = {6, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2177
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2044
2178
|
}
|
2045
2179
|
UPB_INLINE int32_t envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_client_status(const envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg) {
|
2046
2180
|
int32_t default_val = 0;
|
2047
2181
|
int32_t ret;
|
2048
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2049
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2182
|
+
const upb_MiniTableField field = {6, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2183
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2184
|
+
&default_val, &ret);
|
2050
2185
|
return ret;
|
2051
2186
|
}
|
2052
2187
|
|
2053
2188
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_set_name(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs *msg, upb_StringView value) {
|
2054
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2055
|
-
|
2189
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2190
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2056
2191
|
}
|
2057
2192
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_set_version_info(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs *msg, upb_StringView value) {
|
2058
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2059
|
-
|
2193
|
+
const upb_MiniTableField field = {2, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2194
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2060
2195
|
}
|
2061
2196
|
UPB_INLINE struct google_protobuf_Any** envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_mutable_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, size_t* size) {
|
2062
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
2063
|
-
|
2197
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2198
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2199
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2064
2200
|
if (arr) {
|
2065
|
-
if (size) *size = arr->size;
|
2066
|
-
return (struct google_protobuf_Any**)
|
2201
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2202
|
+
return (struct google_protobuf_Any**)upb_Array_MutableDataPtr(arr);
|
2067
2203
|
} else {
|
2068
2204
|
if (size) *size = 0;
|
2069
2205
|
return NULL;
|
2070
2206
|
}
|
2071
2207
|
}
|
2072
2208
|
UPB_INLINE struct google_protobuf_Any** envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_resize_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, size_t size, upb_Arena* arena) {
|
2073
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
2074
|
-
return (struct google_protobuf_Any**)upb_Message_ResizeArrayUninitialized(msg,
|
2209
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2210
|
+
return (struct google_protobuf_Any**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2211
|
+
&field, size, arena);
|
2075
2212
|
}
|
2076
2213
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_add_scoped_route_configs(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, upb_Arena* arena) {
|
2077
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
2078
|
-
|
2079
|
-
|
2214
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2215
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2216
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2217
|
+
UPB_UPCAST(msg), &field, arena);
|
2218
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
2219
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
2080
2220
|
return NULL;
|
2081
2221
|
}
|
2082
2222
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)_upb_Message_New(&google__protobuf__Any_msg_init, arena);
|
2083
2223
|
if (!arr || !sub) return NULL;
|
2084
|
-
_upb_Array_Set
|
2224
|
+
UPB_PRIVATE(_upb_Array_Set)
|
2225
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
2085
2226
|
return sub;
|
2086
2227
|
}
|
2087
2228
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_set_last_updated(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs *msg, struct google_protobuf_Timestamp* value) {
|
2088
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2089
|
-
|
2229
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2230
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2231
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2090
2232
|
}
|
2091
2233
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_mutable_last_updated(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, upb_Arena* arena) {
|
2092
2234
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_last_updated(msg);
|
@@ -2097,8 +2239,9 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_ScopedRoutesConfigDu
|
|
2097
2239
|
return sub;
|
2098
2240
|
}
|
2099
2241
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_set_error_state(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs *msg, envoy_admin_v3_UpdateFailureState* value) {
|
2100
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2101
|
-
|
2242
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2243
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
2244
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2102
2245
|
}
|
2103
2246
|
UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_mutable_error_state(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs* msg, upb_Arena* arena) {
|
2104
2247
|
struct envoy_admin_v3_UpdateFailureState* sub = (struct envoy_admin_v3_UpdateFailureState*)envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_error_state(msg);
|
@@ -2109,8 +2252,8 @@ UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_ScopedRoutes
|
|
2109
2252
|
return sub;
|
2110
2253
|
}
|
2111
2254
|
UPB_INLINE void envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs_set_client_status(envoy_admin_v3_ScopedRoutesConfigDump_DynamicScopedRouteConfigs *msg, int32_t value) {
|
2112
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2113
|
-
|
2255
|
+
const upb_MiniTableField field = {6, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2256
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2114
2257
|
}
|
2115
2258
|
|
2116
2259
|
/* envoy.admin.v3.EndpointsConfigDump */
|
@@ -2121,7 +2264,8 @@ UPB_INLINE envoy_admin_v3_EndpointsConfigDump* envoy_admin_v3_EndpointsConfigDum
|
|
2121
2264
|
UPB_INLINE envoy_admin_v3_EndpointsConfigDump* envoy_admin_v3_EndpointsConfigDump_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2122
2265
|
envoy_admin_v3_EndpointsConfigDump* ret = envoy_admin_v3_EndpointsConfigDump_new(arena);
|
2123
2266
|
if (!ret) return NULL;
|
2124
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EndpointsConfigDump_msg_init, NULL, 0, arena) !=
|
2267
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EndpointsConfigDump_msg_init, NULL, 0, arena) !=
|
2268
|
+
kUpb_DecodeStatus_Ok) {
|
2125
2269
|
return NULL;
|
2126
2270
|
}
|
2127
2271
|
return ret;
|
@@ -2131,148 +2275,156 @@ UPB_INLINE envoy_admin_v3_EndpointsConfigDump* envoy_admin_v3_EndpointsConfigDum
|
|
2131
2275
|
int options, upb_Arena* arena) {
|
2132
2276
|
envoy_admin_v3_EndpointsConfigDump* ret = envoy_admin_v3_EndpointsConfigDump_new(arena);
|
2133
2277
|
if (!ret) return NULL;
|
2134
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EndpointsConfigDump_msg_init, extreg, options,
|
2135
|
-
|
2278
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EndpointsConfigDump_msg_init, extreg, options,
|
2279
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2136
2280
|
return NULL;
|
2137
2281
|
}
|
2138
2282
|
return ret;
|
2139
2283
|
}
|
2140
2284
|
UPB_INLINE char* envoy_admin_v3_EndpointsConfigDump_serialize(const envoy_admin_v3_EndpointsConfigDump* msg, upb_Arena* arena, size_t* len) {
|
2141
2285
|
char* ptr;
|
2142
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EndpointsConfigDump_msg_init, 0, arena, &ptr, len);
|
2286
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EndpointsConfigDump_msg_init, 0, arena, &ptr, len);
|
2143
2287
|
return ptr;
|
2144
2288
|
}
|
2145
2289
|
UPB_INLINE char* envoy_admin_v3_EndpointsConfigDump_serialize_ex(const envoy_admin_v3_EndpointsConfigDump* msg, int options,
|
2146
2290
|
upb_Arena* arena, size_t* len) {
|
2147
2291
|
char* ptr;
|
2148
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EndpointsConfigDump_msg_init, options, arena, &ptr, len);
|
2292
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EndpointsConfigDump_msg_init, options, arena, &ptr, len);
|
2149
2293
|
return ptr;
|
2150
2294
|
}
|
2151
2295
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_clear_static_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg) {
|
2152
|
-
const upb_MiniTableField field = {2,
|
2153
|
-
|
2296
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2297
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2154
2298
|
}
|
2155
2299
|
UPB_INLINE const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* const* envoy_admin_v3_EndpointsConfigDump_static_endpoint_configs(const envoy_admin_v3_EndpointsConfigDump* msg, size_t* size) {
|
2156
|
-
const upb_MiniTableField field = {2,
|
2157
|
-
|
2300
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2301
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init);
|
2302
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2158
2303
|
if (arr) {
|
2159
|
-
if (size) *size = arr->size;
|
2160
|
-
return (const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* const*)
|
2304
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2305
|
+
return (const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* const*)upb_Array_DataPtr(arr);
|
2161
2306
|
} else {
|
2162
2307
|
if (size) *size = 0;
|
2163
2308
|
return NULL;
|
2164
2309
|
}
|
2165
2310
|
}
|
2166
2311
|
UPB_INLINE const upb_Array* _envoy_admin_v3_EndpointsConfigDump_static_endpoint_configs_upb_array(const envoy_admin_v3_EndpointsConfigDump* msg, size_t* size) {
|
2167
|
-
const upb_MiniTableField field = {2,
|
2168
|
-
|
2312
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2313
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init);
|
2314
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2169
2315
|
if (size) {
|
2170
|
-
*size = arr ? arr->size : 0;
|
2316
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
2171
2317
|
}
|
2172
2318
|
return arr;
|
2173
2319
|
}
|
2174
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_EndpointsConfigDump_static_endpoint_configs_mutable_upb_array(
|
2175
|
-
const upb_MiniTableField field = {2,
|
2176
|
-
|
2177
|
-
|
2320
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_EndpointsConfigDump_static_endpoint_configs_mutable_upb_array(envoy_admin_v3_EndpointsConfigDump* msg, size_t* size, upb_Arena* arena) {
|
2321
|
+
const upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2322
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init);
|
2323
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2324
|
+
&field, arena);
|
2178
2325
|
if (size) {
|
2179
|
-
*size = arr ? arr->size : 0;
|
2326
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
2180
2327
|
}
|
2181
2328
|
return arr;
|
2182
2329
|
}
|
2183
|
-
UPB_INLINE bool envoy_admin_v3_EndpointsConfigDump_has_static_endpoint_configs(const envoy_admin_v3_EndpointsConfigDump* msg) {
|
2184
|
-
size_t size;
|
2185
|
-
envoy_admin_v3_EndpointsConfigDump_static_endpoint_configs(msg, &size);
|
2186
|
-
return size != 0;
|
2187
|
-
}
|
2188
2330
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_clear_dynamic_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg) {
|
2189
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2190
|
-
|
2331
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2332
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2191
2333
|
}
|
2192
2334
|
UPB_INLINE const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* const* envoy_admin_v3_EndpointsConfigDump_dynamic_endpoint_configs(const envoy_admin_v3_EndpointsConfigDump* msg, size_t* size) {
|
2193
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2194
|
-
|
2335
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2336
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init);
|
2337
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2195
2338
|
if (arr) {
|
2196
|
-
if (size) *size = arr->size;
|
2197
|
-
return (const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* const*)
|
2339
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2340
|
+
return (const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* const*)upb_Array_DataPtr(arr);
|
2198
2341
|
} else {
|
2199
2342
|
if (size) *size = 0;
|
2200
2343
|
return NULL;
|
2201
2344
|
}
|
2202
2345
|
}
|
2203
2346
|
UPB_INLINE const upb_Array* _envoy_admin_v3_EndpointsConfigDump_dynamic_endpoint_configs_upb_array(const envoy_admin_v3_EndpointsConfigDump* msg, size_t* size) {
|
2204
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2205
|
-
|
2347
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2348
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init);
|
2349
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2206
2350
|
if (size) {
|
2207
|
-
*size = arr ? arr->size : 0;
|
2351
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
2208
2352
|
}
|
2209
2353
|
return arr;
|
2210
2354
|
}
|
2211
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_EndpointsConfigDump_dynamic_endpoint_configs_mutable_upb_array(
|
2212
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2213
|
-
|
2214
|
-
|
2355
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_EndpointsConfigDump_dynamic_endpoint_configs_mutable_upb_array(envoy_admin_v3_EndpointsConfigDump* msg, size_t* size, upb_Arena* arena) {
|
2356
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2357
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init);
|
2358
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2359
|
+
&field, arena);
|
2215
2360
|
if (size) {
|
2216
|
-
*size = arr ? arr->size : 0;
|
2361
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
2217
2362
|
}
|
2218
2363
|
return arr;
|
2219
2364
|
}
|
2220
|
-
UPB_INLINE bool envoy_admin_v3_EndpointsConfigDump_has_dynamic_endpoint_configs(const envoy_admin_v3_EndpointsConfigDump* msg) {
|
2221
|
-
size_t size;
|
2222
|
-
envoy_admin_v3_EndpointsConfigDump_dynamic_endpoint_configs(msg, &size);
|
2223
|
-
return size != 0;
|
2224
|
-
}
|
2225
2365
|
|
2226
2366
|
UPB_INLINE envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig** envoy_admin_v3_EndpointsConfigDump_mutable_static_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg, size_t* size) {
|
2227
|
-
upb_MiniTableField field = {2,
|
2228
|
-
|
2367
|
+
upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2368
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init);
|
2369
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2229
2370
|
if (arr) {
|
2230
|
-
if (size) *size = arr->size;
|
2231
|
-
return (envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig**)
|
2371
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2372
|
+
return (envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig**)upb_Array_MutableDataPtr(arr);
|
2232
2373
|
} else {
|
2233
2374
|
if (size) *size = 0;
|
2234
2375
|
return NULL;
|
2235
2376
|
}
|
2236
2377
|
}
|
2237
2378
|
UPB_INLINE envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig** envoy_admin_v3_EndpointsConfigDump_resize_static_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg, size_t size, upb_Arena* arena) {
|
2238
|
-
upb_MiniTableField field = {2,
|
2239
|
-
return (envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig**)upb_Message_ResizeArrayUninitialized(msg,
|
2379
|
+
upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2380
|
+
return (envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2381
|
+
&field, size, arena);
|
2240
2382
|
}
|
2241
2383
|
UPB_INLINE struct envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* envoy_admin_v3_EndpointsConfigDump_add_static_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg, upb_Arena* arena) {
|
2242
|
-
upb_MiniTableField field = {2,
|
2243
|
-
|
2244
|
-
|
2384
|
+
upb_MiniTableField field = {2, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2385
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init);
|
2386
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2387
|
+
UPB_UPCAST(msg), &field, arena);
|
2388
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
2389
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
2245
2390
|
return NULL;
|
2246
2391
|
}
|
2247
2392
|
struct envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* sub = (struct envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig*)_upb_Message_New(&envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, arena);
|
2248
2393
|
if (!arr || !sub) return NULL;
|
2249
|
-
_upb_Array_Set
|
2394
|
+
UPB_PRIVATE(_upb_Array_Set)
|
2395
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
2250
2396
|
return sub;
|
2251
2397
|
}
|
2252
2398
|
UPB_INLINE envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig** envoy_admin_v3_EndpointsConfigDump_mutable_dynamic_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg, size_t* size) {
|
2253
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
2254
|
-
|
2399
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2400
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init);
|
2401
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2255
2402
|
if (arr) {
|
2256
|
-
if (size) *size = arr->size;
|
2257
|
-
return (envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig**)
|
2403
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2404
|
+
return (envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig**)upb_Array_MutableDataPtr(arr);
|
2258
2405
|
} else {
|
2259
2406
|
if (size) *size = 0;
|
2260
2407
|
return NULL;
|
2261
2408
|
}
|
2262
2409
|
}
|
2263
2410
|
UPB_INLINE envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig** envoy_admin_v3_EndpointsConfigDump_resize_dynamic_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg, size_t size, upb_Arena* arena) {
|
2264
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
2265
|
-
return (envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig**)upb_Message_ResizeArrayUninitialized(msg,
|
2411
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2412
|
+
return (envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2413
|
+
&field, size, arena);
|
2266
2414
|
}
|
2267
2415
|
UPB_INLINE struct envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* envoy_admin_v3_EndpointsConfigDump_add_dynamic_endpoint_configs(envoy_admin_v3_EndpointsConfigDump* msg, upb_Arena* arena) {
|
2268
|
-
upb_MiniTableField field = {3, UPB_SIZE(
|
2269
|
-
|
2270
|
-
|
2416
|
+
upb_MiniTableField field = {3, UPB_SIZE(12, 16), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2417
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init);
|
2418
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2419
|
+
UPB_UPCAST(msg), &field, arena);
|
2420
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
2421
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
2271
2422
|
return NULL;
|
2272
2423
|
}
|
2273
2424
|
struct envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* sub = (struct envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig*)_upb_Message_New(&envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, arena);
|
2274
2425
|
if (!arr || !sub) return NULL;
|
2275
|
-
_upb_Array_Set
|
2426
|
+
UPB_PRIVATE(_upb_Array_Set)
|
2427
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
2276
2428
|
return sub;
|
2277
2429
|
}
|
2278
2430
|
|
@@ -2284,7 +2436,8 @@ UPB_INLINE envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* envoy_admin_
|
|
2284
2436
|
UPB_INLINE envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2285
2437
|
envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* ret = envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_new(arena);
|
2286
2438
|
if (!ret) return NULL;
|
2287
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, NULL, 0, arena) !=
|
2439
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, NULL, 0, arena) !=
|
2440
|
+
kUpb_DecodeStatus_Ok) {
|
2288
2441
|
return NULL;
|
2289
2442
|
}
|
2290
2443
|
return ret;
|
@@ -2294,57 +2447,62 @@ UPB_INLINE envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* envoy_admin_
|
|
2294
2447
|
int options, upb_Arena* arena) {
|
2295
2448
|
envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* ret = envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_new(arena);
|
2296
2449
|
if (!ret) return NULL;
|
2297
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, extreg, options,
|
2298
|
-
|
2450
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, extreg, options,
|
2451
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2299
2452
|
return NULL;
|
2300
2453
|
}
|
2301
2454
|
return ret;
|
2302
2455
|
}
|
2303
2456
|
UPB_INLINE char* envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_serialize(const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg, upb_Arena* arena, size_t* len) {
|
2304
2457
|
char* ptr;
|
2305
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, 0, arena, &ptr, len);
|
2458
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, 0, arena, &ptr, len);
|
2306
2459
|
return ptr;
|
2307
2460
|
}
|
2308
2461
|
UPB_INLINE char* envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_serialize_ex(const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg, int options,
|
2309
2462
|
upb_Arena* arena, size_t* len) {
|
2310
2463
|
char* ptr;
|
2311
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, options, arena, &ptr, len);
|
2464
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EndpointsConfigDump__StaticEndpointConfig_msg_init, options, arena, &ptr, len);
|
2312
2465
|
return ptr;
|
2313
2466
|
}
|
2314
2467
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_clear_endpoint_config(envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg) {
|
2315
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2316
|
-
|
2468
|
+
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)};
|
2469
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2317
2470
|
}
|
2318
2471
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_endpoint_config(const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg) {
|
2319
2472
|
const struct google_protobuf_Any* default_val = NULL;
|
2320
2473
|
const struct google_protobuf_Any* ret;
|
2321
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2322
|
-
|
2474
|
+
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)};
|
2475
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2476
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2477
|
+
&default_val, &ret);
|
2323
2478
|
return ret;
|
2324
2479
|
}
|
2325
2480
|
UPB_INLINE bool envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_has_endpoint_config(const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg) {
|
2326
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2327
|
-
return
|
2481
|
+
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)};
|
2482
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2328
2483
|
}
|
2329
2484
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_clear_last_updated(envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg) {
|
2330
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2331
|
-
|
2485
|
+
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)};
|
2486
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2332
2487
|
}
|
2333
2488
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_last_updated(const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg) {
|
2334
2489
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
2335
2490
|
const struct google_protobuf_Timestamp* ret;
|
2336
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2337
|
-
|
2491
|
+
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)};
|
2492
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2493
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2494
|
+
&default_val, &ret);
|
2338
2495
|
return ret;
|
2339
2496
|
}
|
2340
2497
|
UPB_INLINE bool envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_has_last_updated(const envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg) {
|
2341
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2342
|
-
return
|
2498
|
+
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)};
|
2499
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2343
2500
|
}
|
2344
2501
|
|
2345
2502
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_set_endpoint_config(envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig *msg, struct google_protobuf_Any* value) {
|
2346
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2347
|
-
|
2503
|
+
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)};
|
2504
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2505
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2348
2506
|
}
|
2349
2507
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_mutable_endpoint_config(envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg, upb_Arena* arena) {
|
2350
2508
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_endpoint_config(msg);
|
@@ -2355,8 +2513,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_EndpointsConfigDump_Static
|
|
2355
2513
|
return sub;
|
2356
2514
|
}
|
2357
2515
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_set_last_updated(envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig *msg, struct google_protobuf_Timestamp* value) {
|
2358
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2359
|
-
|
2516
|
+
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)};
|
2517
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2518
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2360
2519
|
}
|
2361
2520
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_mutable_last_updated(envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig* msg, upb_Arena* arena) {
|
2362
2521
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_EndpointsConfigDump_StaticEndpointConfig_last_updated(msg);
|
@@ -2375,7 +2534,8 @@ UPB_INLINE envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* envoy_admin
|
|
2375
2534
|
UPB_INLINE envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2376
2535
|
envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* ret = envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_new(arena);
|
2377
2536
|
if (!ret) return NULL;
|
2378
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, NULL, 0, arena) !=
|
2537
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, NULL, 0, arena) !=
|
2538
|
+
kUpb_DecodeStatus_Ok) {
|
2379
2539
|
return NULL;
|
2380
2540
|
}
|
2381
2541
|
return ret;
|
@@ -2385,98 +2545,107 @@ UPB_INLINE envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* envoy_admin
|
|
2385
2545
|
int options, upb_Arena* arena) {
|
2386
2546
|
envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* ret = envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_new(arena);
|
2387
2547
|
if (!ret) return NULL;
|
2388
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, extreg, options,
|
2389
|
-
|
2548
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, extreg, options,
|
2549
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2390
2550
|
return NULL;
|
2391
2551
|
}
|
2392
2552
|
return ret;
|
2393
2553
|
}
|
2394
2554
|
UPB_INLINE char* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_serialize(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg, upb_Arena* arena, size_t* len) {
|
2395
2555
|
char* ptr;
|
2396
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, 0, arena, &ptr, len);
|
2556
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, 0, arena, &ptr, len);
|
2397
2557
|
return ptr;
|
2398
2558
|
}
|
2399
2559
|
UPB_INLINE char* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_serialize_ex(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg, int options,
|
2400
2560
|
upb_Arena* arena, size_t* len) {
|
2401
2561
|
char* ptr;
|
2402
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, options, arena, &ptr, len);
|
2562
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EndpointsConfigDump__DynamicEndpointConfig_msg_init, options, arena, &ptr, len);
|
2403
2563
|
return ptr;
|
2404
2564
|
}
|
2405
2565
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_clear_version_info(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2406
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2407
|
-
|
2566
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2567
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2408
2568
|
}
|
2409
2569
|
UPB_INLINE upb_StringView envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_version_info(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2410
2570
|
upb_StringView default_val = upb_StringView_FromString("");
|
2411
2571
|
upb_StringView ret;
|
2412
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2413
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2572
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2573
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2574
|
+
&default_val, &ret);
|
2414
2575
|
return ret;
|
2415
2576
|
}
|
2416
2577
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_clear_endpoint_config(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2417
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2418
|
-
|
2578
|
+
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)};
|
2579
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2419
2580
|
}
|
2420
2581
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_endpoint_config(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2421
2582
|
const struct google_protobuf_Any* default_val = NULL;
|
2422
2583
|
const struct google_protobuf_Any* ret;
|
2423
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2424
|
-
|
2584
|
+
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)};
|
2585
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2586
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2587
|
+
&default_val, &ret);
|
2425
2588
|
return ret;
|
2426
2589
|
}
|
2427
2590
|
UPB_INLINE bool envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_has_endpoint_config(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2428
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2429
|
-
return
|
2591
|
+
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)};
|
2592
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2430
2593
|
}
|
2431
2594
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_clear_last_updated(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2432
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2433
|
-
|
2595
|
+
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)};
|
2596
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2434
2597
|
}
|
2435
2598
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_last_updated(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2436
2599
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
2437
2600
|
const struct google_protobuf_Timestamp* ret;
|
2438
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2439
|
-
|
2601
|
+
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)};
|
2602
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2603
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2604
|
+
&default_val, &ret);
|
2440
2605
|
return ret;
|
2441
2606
|
}
|
2442
2607
|
UPB_INLINE bool envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_has_last_updated(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2443
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2444
|
-
return
|
2608
|
+
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)};
|
2609
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2445
2610
|
}
|
2446
2611
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_clear_error_state(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2447
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2448
|
-
|
2612
|
+
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)};
|
2613
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2449
2614
|
}
|
2450
2615
|
UPB_INLINE const envoy_admin_v3_UpdateFailureState* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_error_state(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2451
2616
|
const envoy_admin_v3_UpdateFailureState* default_val = NULL;
|
2452
2617
|
const envoy_admin_v3_UpdateFailureState* ret;
|
2453
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2454
|
-
|
2618
|
+
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)};
|
2619
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
2620
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2621
|
+
&default_val, &ret);
|
2455
2622
|
return ret;
|
2456
2623
|
}
|
2457
2624
|
UPB_INLINE bool envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_has_error_state(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2458
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2459
|
-
return
|
2625
|
+
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)};
|
2626
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2460
2627
|
}
|
2461
2628
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_clear_client_status(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2462
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2463
|
-
|
2629
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2630
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2464
2631
|
}
|
2465
2632
|
UPB_INLINE int32_t envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_client_status(const envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg) {
|
2466
2633
|
int32_t default_val = 0;
|
2467
2634
|
int32_t ret;
|
2468
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2469
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2635
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2636
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2637
|
+
&default_val, &ret);
|
2470
2638
|
return ret;
|
2471
2639
|
}
|
2472
2640
|
|
2473
2641
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_set_version_info(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig *msg, upb_StringView value) {
|
2474
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2475
|
-
|
2642
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2643
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2476
2644
|
}
|
2477
2645
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_set_endpoint_config(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig *msg, struct google_protobuf_Any* value) {
|
2478
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2479
|
-
|
2646
|
+
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)};
|
2647
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2648
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2480
2649
|
}
|
2481
2650
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_mutable_endpoint_config(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg, upb_Arena* arena) {
|
2482
2651
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_endpoint_config(msg);
|
@@ -2487,8 +2656,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_EndpointsConfigDump_Dynami
|
|
2487
2656
|
return sub;
|
2488
2657
|
}
|
2489
2658
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_set_last_updated(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig *msg, struct google_protobuf_Timestamp* value) {
|
2490
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2491
|
-
|
2659
|
+
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)};
|
2660
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2661
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2492
2662
|
}
|
2493
2663
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_mutable_last_updated(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg, upb_Arena* arena) {
|
2494
2664
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_last_updated(msg);
|
@@ -2499,8 +2669,9 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_EndpointsConfigDump_
|
|
2499
2669
|
return sub;
|
2500
2670
|
}
|
2501
2671
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_set_error_state(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig *msg, envoy_admin_v3_UpdateFailureState* value) {
|
2502
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2503
|
-
|
2672
|
+
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)};
|
2673
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
2674
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2504
2675
|
}
|
2505
2676
|
UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_mutable_error_state(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig* msg, upb_Arena* arena) {
|
2506
2677
|
struct envoy_admin_v3_UpdateFailureState* sub = (struct envoy_admin_v3_UpdateFailureState*)envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_error_state(msg);
|
@@ -2511,8 +2682,8 @@ UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_EndpointsCon
|
|
2511
2682
|
return sub;
|
2512
2683
|
}
|
2513
2684
|
UPB_INLINE void envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig_set_client_status(envoy_admin_v3_EndpointsConfigDump_DynamicEndpointConfig *msg, int32_t value) {
|
2514
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2515
|
-
|
2685
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2686
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2516
2687
|
}
|
2517
2688
|
|
2518
2689
|
/* envoy.admin.v3.EcdsConfigDump */
|
@@ -2523,7 +2694,8 @@ UPB_INLINE envoy_admin_v3_EcdsConfigDump* envoy_admin_v3_EcdsConfigDump_new(upb_
|
|
2523
2694
|
UPB_INLINE envoy_admin_v3_EcdsConfigDump* envoy_admin_v3_EcdsConfigDump_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2524
2695
|
envoy_admin_v3_EcdsConfigDump* ret = envoy_admin_v3_EcdsConfigDump_new(arena);
|
2525
2696
|
if (!ret) return NULL;
|
2526
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EcdsConfigDump_msg_init, NULL, 0, arena) !=
|
2697
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EcdsConfigDump_msg_init, NULL, 0, arena) !=
|
2698
|
+
kUpb_DecodeStatus_Ok) {
|
2527
2699
|
return NULL;
|
2528
2700
|
}
|
2529
2701
|
return ret;
|
@@ -2533,85 +2705,89 @@ UPB_INLINE envoy_admin_v3_EcdsConfigDump* envoy_admin_v3_EcdsConfigDump_parse_ex
|
|
2533
2705
|
int options, upb_Arena* arena) {
|
2534
2706
|
envoy_admin_v3_EcdsConfigDump* ret = envoy_admin_v3_EcdsConfigDump_new(arena);
|
2535
2707
|
if (!ret) return NULL;
|
2536
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EcdsConfigDump_msg_init, extreg, options,
|
2537
|
-
|
2708
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EcdsConfigDump_msg_init, extreg, options,
|
2709
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2538
2710
|
return NULL;
|
2539
2711
|
}
|
2540
2712
|
return ret;
|
2541
2713
|
}
|
2542
2714
|
UPB_INLINE char* envoy_admin_v3_EcdsConfigDump_serialize(const envoy_admin_v3_EcdsConfigDump* msg, upb_Arena* arena, size_t* len) {
|
2543
2715
|
char* ptr;
|
2544
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EcdsConfigDump_msg_init, 0, arena, &ptr, len);
|
2716
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EcdsConfigDump_msg_init, 0, arena, &ptr, len);
|
2545
2717
|
return ptr;
|
2546
2718
|
}
|
2547
2719
|
UPB_INLINE char* envoy_admin_v3_EcdsConfigDump_serialize_ex(const envoy_admin_v3_EcdsConfigDump* msg, int options,
|
2548
2720
|
upb_Arena* arena, size_t* len) {
|
2549
2721
|
char* ptr;
|
2550
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EcdsConfigDump_msg_init, options, arena, &ptr, len);
|
2722
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EcdsConfigDump_msg_init, options, arena, &ptr, len);
|
2551
2723
|
return ptr;
|
2552
2724
|
}
|
2553
2725
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_clear_ecds_filters(envoy_admin_v3_EcdsConfigDump* msg) {
|
2554
|
-
const upb_MiniTableField field = {1,
|
2555
|
-
|
2726
|
+
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)};
|
2727
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2556
2728
|
}
|
2557
2729
|
UPB_INLINE const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* const* envoy_admin_v3_EcdsConfigDump_ecds_filters(const envoy_admin_v3_EcdsConfigDump* msg, size_t* size) {
|
2558
|
-
const upb_MiniTableField field = {1,
|
2559
|
-
|
2730
|
+
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)};
|
2731
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init);
|
2732
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2560
2733
|
if (arr) {
|
2561
|
-
if (size) *size = arr->size;
|
2562
|
-
return (const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* const*)
|
2734
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2735
|
+
return (const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* const*)upb_Array_DataPtr(arr);
|
2563
2736
|
} else {
|
2564
2737
|
if (size) *size = 0;
|
2565
2738
|
return NULL;
|
2566
2739
|
}
|
2567
2740
|
}
|
2568
2741
|
UPB_INLINE const upb_Array* _envoy_admin_v3_EcdsConfigDump_ecds_filters_upb_array(const envoy_admin_v3_EcdsConfigDump* msg, size_t* size) {
|
2569
|
-
const upb_MiniTableField field = {1,
|
2570
|
-
|
2742
|
+
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)};
|
2743
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init);
|
2744
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2571
2745
|
if (size) {
|
2572
|
-
*size = arr ? arr->size : 0;
|
2746
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
2573
2747
|
}
|
2574
2748
|
return arr;
|
2575
2749
|
}
|
2576
|
-
UPB_INLINE upb_Array* _envoy_admin_v3_EcdsConfigDump_ecds_filters_mutable_upb_array(
|
2577
|
-
const upb_MiniTableField field = {1,
|
2578
|
-
|
2579
|
-
|
2750
|
+
UPB_INLINE upb_Array* _envoy_admin_v3_EcdsConfigDump_ecds_filters_mutable_upb_array(envoy_admin_v3_EcdsConfigDump* msg, size_t* size, upb_Arena* arena) {
|
2751
|
+
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)};
|
2752
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init);
|
2753
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2754
|
+
&field, arena);
|
2580
2755
|
if (size) {
|
2581
|
-
*size = arr ? arr->size : 0;
|
2756
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
2582
2757
|
}
|
2583
2758
|
return arr;
|
2584
2759
|
}
|
2585
|
-
UPB_INLINE bool envoy_admin_v3_EcdsConfigDump_has_ecds_filters(const envoy_admin_v3_EcdsConfigDump* msg) {
|
2586
|
-
size_t size;
|
2587
|
-
envoy_admin_v3_EcdsConfigDump_ecds_filters(msg, &size);
|
2588
|
-
return size != 0;
|
2589
|
-
}
|
2590
2760
|
|
2591
2761
|
UPB_INLINE envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig** envoy_admin_v3_EcdsConfigDump_mutable_ecds_filters(envoy_admin_v3_EcdsConfigDump* msg, size_t* size) {
|
2592
|
-
upb_MiniTableField field = {1,
|
2593
|
-
|
2762
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2763
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init);
|
2764
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2594
2765
|
if (arr) {
|
2595
|
-
if (size) *size = arr->size;
|
2596
|
-
return (envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig**)
|
2766
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2767
|
+
return (envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig**)upb_Array_MutableDataPtr(arr);
|
2597
2768
|
} else {
|
2598
2769
|
if (size) *size = 0;
|
2599
2770
|
return NULL;
|
2600
2771
|
}
|
2601
2772
|
}
|
2602
2773
|
UPB_INLINE envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig** envoy_admin_v3_EcdsConfigDump_resize_ecds_filters(envoy_admin_v3_EcdsConfigDump* msg, size_t size, upb_Arena* arena) {
|
2603
|
-
upb_MiniTableField field = {1,
|
2604
|
-
return (envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig**)upb_Message_ResizeArrayUninitialized(msg,
|
2774
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2775
|
+
return (envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2776
|
+
&field, size, arena);
|
2605
2777
|
}
|
2606
2778
|
UPB_INLINE struct envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* envoy_admin_v3_EcdsConfigDump_add_ecds_filters(envoy_admin_v3_EcdsConfigDump* msg, upb_Arena* arena) {
|
2607
|
-
upb_MiniTableField field = {1,
|
2608
|
-
|
2609
|
-
|
2779
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2780
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init);
|
2781
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2782
|
+
UPB_UPCAST(msg), &field, arena);
|
2783
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
2784
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
2610
2785
|
return NULL;
|
2611
2786
|
}
|
2612
2787
|
struct envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* sub = (struct envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig*)_upb_Message_New(&envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, arena);
|
2613
2788
|
if (!arr || !sub) return NULL;
|
2614
|
-
_upb_Array_Set
|
2789
|
+
UPB_PRIVATE(_upb_Array_Set)
|
2790
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
2615
2791
|
return sub;
|
2616
2792
|
}
|
2617
2793
|
|
@@ -2623,7 +2799,8 @@ UPB_INLINE envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* envoy_admin_v3_EcdsCo
|
|
2623
2799
|
UPB_INLINE envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2624
2800
|
envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* ret = envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_new(arena);
|
2625
2801
|
if (!ret) return NULL;
|
2626
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, NULL, 0, arena) !=
|
2802
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, NULL, 0, arena) !=
|
2803
|
+
kUpb_DecodeStatus_Ok) {
|
2627
2804
|
return NULL;
|
2628
2805
|
}
|
2629
2806
|
return ret;
|
@@ -2633,98 +2810,107 @@ UPB_INLINE envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* envoy_admin_v3_EcdsCo
|
|
2633
2810
|
int options, upb_Arena* arena) {
|
2634
2811
|
envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* ret = envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_new(arena);
|
2635
2812
|
if (!ret) return NULL;
|
2636
|
-
if (upb_Decode(buf, size, ret, &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, extreg, options,
|
2637
|
-
|
2813
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, extreg, options,
|
2814
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2638
2815
|
return NULL;
|
2639
2816
|
}
|
2640
2817
|
return ret;
|
2641
2818
|
}
|
2642
2819
|
UPB_INLINE char* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_serialize(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg, upb_Arena* arena, size_t* len) {
|
2643
2820
|
char* ptr;
|
2644
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, 0, arena, &ptr, len);
|
2821
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, 0, arena, &ptr, len);
|
2645
2822
|
return ptr;
|
2646
2823
|
}
|
2647
2824
|
UPB_INLINE char* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_serialize_ex(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg, int options,
|
2648
2825
|
upb_Arena* arena, size_t* len) {
|
2649
2826
|
char* ptr;
|
2650
|
-
(void)upb_Encode(msg, &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, options, arena, &ptr, len);
|
2827
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__admin__v3__EcdsConfigDump__EcdsFilterConfig_msg_init, options, arena, &ptr, len);
|
2651
2828
|
return ptr;
|
2652
2829
|
}
|
2653
2830
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_clear_version_info(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2654
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2655
|
-
|
2831
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2832
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2656
2833
|
}
|
2657
2834
|
UPB_INLINE upb_StringView envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_version_info(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2658
2835
|
upb_StringView default_val = upb_StringView_FromString("");
|
2659
2836
|
upb_StringView ret;
|
2660
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2661
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2837
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2838
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2839
|
+
&default_val, &ret);
|
2662
2840
|
return ret;
|
2663
2841
|
}
|
2664
2842
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_clear_ecds_filter(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2665
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2666
|
-
|
2843
|
+
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)};
|
2844
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2667
2845
|
}
|
2668
2846
|
UPB_INLINE const struct google_protobuf_Any* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_ecds_filter(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2669
2847
|
const struct google_protobuf_Any* default_val = NULL;
|
2670
2848
|
const struct google_protobuf_Any* ret;
|
2671
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2672
|
-
|
2849
|
+
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)};
|
2850
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2851
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2852
|
+
&default_val, &ret);
|
2673
2853
|
return ret;
|
2674
2854
|
}
|
2675
2855
|
UPB_INLINE bool envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_has_ecds_filter(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2676
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2677
|
-
return
|
2856
|
+
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)};
|
2857
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2678
2858
|
}
|
2679
2859
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_clear_last_updated(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2680
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2681
|
-
|
2860
|
+
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)};
|
2861
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2682
2862
|
}
|
2683
2863
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_last_updated(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2684
2864
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
2685
2865
|
const struct google_protobuf_Timestamp* ret;
|
2686
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2687
|
-
|
2866
|
+
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)};
|
2867
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2868
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2869
|
+
&default_val, &ret);
|
2688
2870
|
return ret;
|
2689
2871
|
}
|
2690
2872
|
UPB_INLINE bool envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_has_last_updated(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2691
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2692
|
-
return
|
2873
|
+
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)};
|
2874
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2693
2875
|
}
|
2694
2876
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_clear_error_state(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2695
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2696
|
-
|
2877
|
+
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)};
|
2878
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2697
2879
|
}
|
2698
2880
|
UPB_INLINE const envoy_admin_v3_UpdateFailureState* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_error_state(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2699
2881
|
const envoy_admin_v3_UpdateFailureState* default_val = NULL;
|
2700
2882
|
const envoy_admin_v3_UpdateFailureState* ret;
|
2701
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2702
|
-
|
2883
|
+
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)};
|
2884
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
2885
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2886
|
+
&default_val, &ret);
|
2703
2887
|
return ret;
|
2704
2888
|
}
|
2705
2889
|
UPB_INLINE bool envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_has_error_state(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2706
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2707
|
-
return
|
2890
|
+
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)};
|
2891
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2708
2892
|
}
|
2709
2893
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_clear_client_status(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2710
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2711
|
-
|
2894
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2895
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2712
2896
|
}
|
2713
2897
|
UPB_INLINE int32_t envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_client_status(const envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg) {
|
2714
2898
|
int32_t default_val = 0;
|
2715
2899
|
int32_t ret;
|
2716
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2717
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2900
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2901
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2902
|
+
&default_val, &ret);
|
2718
2903
|
return ret;
|
2719
2904
|
}
|
2720
2905
|
|
2721
2906
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_set_version_info(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig *msg, upb_StringView value) {
|
2722
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2723
|
-
|
2907
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2908
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2724
2909
|
}
|
2725
2910
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_set_ecds_filter(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig *msg, struct google_protobuf_Any* value) {
|
2726
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2727
|
-
|
2911
|
+
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)};
|
2912
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
2913
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2728
2914
|
}
|
2729
2915
|
UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_mutable_ecds_filter(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg, upb_Arena* arena) {
|
2730
2916
|
struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_ecds_filter(msg);
|
@@ -2735,8 +2921,9 @@ UPB_INLINE struct google_protobuf_Any* envoy_admin_v3_EcdsConfigDump_EcdsFilterC
|
|
2735
2921
|
return sub;
|
2736
2922
|
}
|
2737
2923
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_set_last_updated(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig *msg, struct google_protobuf_Timestamp* value) {
|
2738
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2739
|
-
|
2924
|
+
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)};
|
2925
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
2926
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2740
2927
|
}
|
2741
2928
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_mutable_last_updated(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg, upb_Arena* arena) {
|
2742
2929
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_last_updated(msg);
|
@@ -2747,8 +2934,9 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_admin_v3_EcdsConfigDump_EcdsF
|
|
2747
2934
|
return sub;
|
2748
2935
|
}
|
2749
2936
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_set_error_state(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig *msg, envoy_admin_v3_UpdateFailureState* value) {
|
2750
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2751
|
-
|
2937
|
+
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)};
|
2938
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__admin__v3__UpdateFailureState_msg_init);
|
2939
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2752
2940
|
}
|
2753
2941
|
UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_mutable_error_state(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig* msg, upb_Arena* arena) {
|
2754
2942
|
struct envoy_admin_v3_UpdateFailureState* sub = (struct envoy_admin_v3_UpdateFailureState*)envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_error_state(msg);
|
@@ -2759,8 +2947,8 @@ UPB_INLINE struct envoy_admin_v3_UpdateFailureState* envoy_admin_v3_EcdsConfigDu
|
|
2759
2947
|
return sub;
|
2760
2948
|
}
|
2761
2949
|
UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_set_client_status(envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig *msg, int32_t value) {
|
2762
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2763
|
-
|
2950
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2951
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2764
2952
|
}
|
2765
2953
|
|
2766
2954
|
#ifdef __cplusplus
|
@@ -2769,4 +2957,4 @@ UPB_INLINE void envoy_admin_v3_EcdsConfigDump_EcdsFilterConfig_set_client_status
|
|
2769
2957
|
|
2770
2958
|
#include "upb/port/undef.inc"
|
2771
2959
|
|
2772
|
-
#endif /*
|
2960
|
+
#endif /* ENVOY_ADMIN_V3_CONFIG_DUMP_SHARED_PROTO_UPB_H__UPB_H_ */
|