grpc 1.62.0 → 1.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +463 -2007
- data/include/grpc/byte_buffer.h +1 -2
- data/include/grpc/census.h +1 -2
- data/include/grpc/compression.h +1 -2
- data/include/grpc/credentials.h +1222 -0
- data/include/grpc/event_engine/endpoint_config.h +2 -2
- data/include/grpc/event_engine/event_engine.h +4 -2
- data/include/grpc/event_engine/extensible.h +2 -2
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -2
- data/include/grpc/event_engine/memory_allocator.h +1 -2
- data/include/grpc/event_engine/memory_request.h +2 -2
- data/include/grpc/event_engine/slice.h +1 -2
- data/include/grpc/event_engine/slice_buffer.h +1 -2
- data/include/grpc/grpc.h +8 -8
- data/include/grpc/grpc_audit_logging.h +1 -2
- data/include/grpc/grpc_crl_provider.h +3 -2
- data/include/grpc/grpc_cronet.h +1 -2
- data/include/grpc/grpc_posix.h +1 -2
- data/include/grpc/grpc_security.h +1 -1173
- data/include/grpc/impl/call.h +1 -2
- data/include/grpc/impl/channel_arg_names.h +4 -3
- data/include/grpc/impl/grpc_types.h +1 -2
- data/include/grpc/impl/slice_type.h +2 -2
- data/include/grpc/module.modulemap +2 -0
- data/include/grpc/slice.h +1 -2
- data/include/grpc/slice_buffer.h +1 -2
- data/include/grpc/support/alloc.h +2 -2
- data/include/grpc/support/json.h +2 -2
- data/include/grpc/support/log.h +3 -3
- data/include/grpc/support/metrics.h +51 -0
- 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 +1 -2
- data/include/grpc/support/sync_posix.h +1 -2
- data/include/grpc/support/time.h +2 -2
- data/src/core/{lib/channel → channelz}/channel_trace.cc +56 -62
- data/src/core/{lib/channel → channelz}/channel_trace.h +21 -19
- data/src/core/{lib/channel → channelz}/channelz.cc +68 -6
- data/src/core/{lib/channel → channelz}/channelz.h +54 -12
- data/src/core/{lib/channel → channelz}/channelz_registry.cc +7 -6
- data/src/core/{lib/channel → channelz}/channelz_registry.h +7 -7
- data/src/core/client_channel/client_channel_filter.cc +106 -100
- data/src/core/client_channel/client_channel_filter.h +8 -18
- data/src/core/client_channel/client_channel_internal.h +4 -3
- data/src/core/client_channel/client_channel_service_config.h +5 -4
- data/src/core/client_channel/config_selector.h +5 -4
- data/src/core/client_channel/connector.h +1 -1
- data/src/core/client_channel/dynamic_filters.cc +3 -2
- data/src/core/client_channel/dynamic_filters.h +1 -1
- data/src/core/client_channel/local_subchannel_pool.cc +5 -3
- data/src/core/client_channel/retry_filter.cc +1 -1
- data/src/core/client_channel/retry_filter.h +4 -3
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +6 -5
- data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -9
- data/src/core/client_channel/retry_service_config.h +3 -3
- data/src/core/client_channel/retry_throttle.h +3 -2
- data/src/core/client_channel/subchannel.cc +15 -14
- data/src/core/client_channel/subchannel.h +7 -8
- data/src/core/client_channel/subchannel_pool_interface.h +1 -1
- data/src/core/client_channel/subchannel_stream_client.cc +6 -8
- data/src/core/client_channel/subchannel_stream_client.h +2 -2
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +7 -52
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +2 -14
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +27 -25
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +10 -11
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +8 -9
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +4 -4
- data/src/core/ext/filters/http/client/http_client_filter.cc +5 -4
- data/src/core/ext/filters/http/client/http_client_filter.h +5 -5
- data/src/core/ext/filters/http/client_authority_filter.cc +4 -3
- data/src/core/ext/filters/http/client_authority_filter.h +5 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +15 -35
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +17 -15
- data/src/core/ext/filters/http/message_compress/compression_filter.h +10 -9
- data/src/core/ext/filters/http/server/http_server_filter.cc +3 -3
- data/src/core/ext/filters/http/server/http_server_filter.h +5 -5
- data/src/core/ext/filters/message_size/message_size_filter.cc +24 -28
- data/src/core/ext/filters/message_size/message_size_filter.h +8 -6
- data/src/core/ext/filters/rbac/rbac_filter.cc +5 -7
- data/src/core/ext/filters/rbac/rbac_filter.h +5 -5
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +2 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +12 -12
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +3 -2
- data/src/core/ext/gcp/metadata_query.cc +4 -3
- data/src/core/ext/gcp/metadata_query.h +2 -2
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -3
- data/src/core/ext/transport/chttp2/alpn/alpn.h +2 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +17 -22
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +2 -3
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +48 -11
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +3 -3
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +6 -6
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -2
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +8 -7
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +80 -128
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +25 -7
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +15 -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 +4 -4
- data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -4
- data/src/core/ext/transport/chttp2/transport/frame.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/frame.h +2 -2
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +5 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -2
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +1 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -9
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +25 -73
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +5 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +7 -7
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +2 -2
- data/src/core/ext/transport/chttp2/transport/parsing.cc +19 -24
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +1 -2
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +2 -2
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +1 -2
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +1 -2
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +2 -2
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +7 -6
- data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/varint.h +4 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -2
- data/src/core/ext/transport/chttp2/transport/writing.cc +69 -53
- data/src/core/ext/transport/inproc/inproc_transport.cc +18 -16
- data/src/core/ext/transport/inproc/inproc_transport.h +1 -2
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +16 -16
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +243 -230
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +42 -48
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +289 -265
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +62 -70
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +238 -226
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +42 -50
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +937 -882
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +182 -208
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +77 -76
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +86 -84
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +49 -42
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +28 -24
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +28 -24
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +357 -318
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +86 -86
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +23 -20
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +5 -7
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +40 -32
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +24 -20
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +517 -473
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +105 -125
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1207 -1108
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +261 -289
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +163 -152
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +29 -43
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1265 -1137
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +276 -346
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +32 -28
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +7 -9
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +212 -188
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -69
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +564 -508
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +123 -131
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +340 -309
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +69 -83
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +25 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +5 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +786 -688
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +171 -189
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +367 -343
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +72 -80
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +19 -16
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +23 -20
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +5 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +77 -76
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +539 -471
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +125 -141
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +672 -632
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +137 -137
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +44 -43
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +35 -30
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +713 -637
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +166 -208
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +65 -61
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +10 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +65 -61
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +11 -13
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +91 -83
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +17 -17
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +102 -93
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +22 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +25 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +5 -11
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +162 -145
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +32 -40
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +314 -287
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +70 -74
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +330 -309
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +66 -66
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +16 -14
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +3 -7
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +516 -478
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +110 -120
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +495 -468
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +89 -101
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +88 -78
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +19 -37
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +41 -36
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +8 -26
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +46 -40
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +307 -279
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +60 -64
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +382 -358
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +70 -70
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +540 -490
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +122 -136
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +339 -327
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +48 -70
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3407 -3145
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +700 -752
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +100 -91
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -20
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +472 -430
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +102 -116
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +28 -24
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +23 -20
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +5 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +42 -36
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +9 -13
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +58 -55
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -13
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +146 -136
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +30 -30
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +69 -65
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +16 -14
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +3 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +67 -58
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +14 -24
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +64 -56
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +14 -20
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +58 -50
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +986 -832
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +269 -281
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +35 -35
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +102 -88
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +25 -25
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +224 -204
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +46 -62
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +66 -58
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +14 -24
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +160 -153
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +28 -30
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +51 -44
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +12 -12
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1349 -1230
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +293 -309
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +16 -14
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +3 -7
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +61 -54
- 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 +13 -23
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +124 -108
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +29 -37
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +14 -12
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +66 -58
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +20 -20
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +16 -14
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +3 -7
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +518 -493
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +82 -108
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +92 -80
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +23 -29
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +497 -457
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +110 -124
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +58 -55
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +9 -11
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +206 -185
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +48 -64
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +7 -6
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +766 -710
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +140 -150
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +102 -98
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +17 -17
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +310 -288
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +67 -67
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +30 -26
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +77 -71
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +26 -22
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +70 -60
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +77 -71
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +44 -43
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +28 -24
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +19 -16
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +65 -56
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +15 -19
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +14 -12
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +97 -89
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +18 -18
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +63 -59
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +134 -121
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -29
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +135 -121
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +26 -26
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +141 -122
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +37 -37
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +49 -42
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +11 -11
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +14 -12
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +35 -30
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +63 -54
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +58 -50
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +28 -24
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +32 -28
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +7 -9
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +10 -8
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +581 -524
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +118 -146
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +616 -544
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +136 -152
- data/src/core/ext/upb-gen/google/api/http.upb.h +176 -162
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +34 -34
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +49 -47
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +21 -18
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2456 -2358
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +367 -486
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +21 -18
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +7 -6
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +134 -116
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +27 -29
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +21 -18
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +126 -108
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +27 -27
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +49 -47
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +107 -92
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +27 -27
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +77 -61
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +21 -21
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +577 -518
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +121 -127
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +46 -40
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +10 -16
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +28 -24
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +265 -238
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +57 -63
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +96 -82
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +19 -19
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +496 -466
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +81 -85
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +99 -82
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +31 -26
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +10 -8
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +31 -26
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +24 -20
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/validate/validate.upb.h +2620 -2458
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +363 -507
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +99 -82
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +31 -26
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +10 -8
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +93 -78
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +17 -17
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +24 -20
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +14 -12
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +23 -20
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +5 -7
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +58 -50
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +33 -23
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +23 -20
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +5 -7
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +32 -28
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +103 -93
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +21 -21
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +37 -32
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -13
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +127 -93
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +34 -34
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +44 -43
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +23 -20
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +79 -78
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +9 -11
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +7 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +86 -84
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +324 -285
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +74 -82
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +237 -234
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +30 -36
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +33 -28
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +97 -89
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +18 -18
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +53 -46
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +12 -18
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +63 -54
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +23 -20
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +5 -7
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +385 -384
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +2 -5
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +2 -5
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +80 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
- data/src/core/{lib/transport → handshaker}/handshaker.cc +8 -6
- data/src/core/{lib/transport → handshaker}/handshaker.h +4 -5
- data/src/core/{lib/transport → handshaker}/handshaker_factory.h +20 -5
- data/src/core/{lib/transport → handshaker}/handshaker_registry.cc +3 -3
- data/src/core/{lib/transport → handshaker}/handshaker_registry.h +6 -6
- data/src/core/{lib/transport → handshaker/http_connect}/http_connect_handshaker.cc +5 -6
- data/src/core/{lib/transport → handshaker/http_connect}/http_connect_handshaker.h +3 -3
- data/src/core/{client_channel → handshaker/http_connect}/http_proxy_mapper.cc +9 -10
- data/src/core/{client_channel → handshaker/http_connect}/http_proxy_mapper.h +7 -7
- data/src/core/{lib/handshaker → handshaker}/proxy_mapper.h +5 -5
- data/src/core/{lib/handshaker → handshaker}/proxy_mapper_registry.cc +3 -3
- data/src/core/{lib/handshaker → handshaker}/proxy_mapper_registry.h +6 -6
- data/src/core/{lib/security/transport → handshaker/security}/secure_endpoint.cc +5 -5
- data/src/core/{lib/security/transport → handshaker/security}/secure_endpoint.h +4 -5
- data/src/core/{lib/security/transport → handshaker/security}/security_handshaker.cc +29 -20
- data/src/core/{lib/security/transport → handshaker/security}/security_handshaker.h +8 -7
- data/src/core/{lib/security/transport → handshaker/security}/tsi_error.cc +2 -2
- data/src/core/{lib/security/transport → handshaker/security}/tsi_error.h +3 -3
- data/src/core/{lib/transport → handshaker/tcp_connect}/tcp_connect_handshaker.cc +8 -8
- data/src/core/{lib/transport → handshaker/tcp_connect}/tcp_connect_handshaker.h +3 -3
- data/src/core/lib/address_utils/parse_address.cc +13 -4
- data/src/core/lib/address_utils/parse_address.h +2 -2
- data/src/core/lib/address_utils/sockaddr_utils.cc +23 -10
- data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
- data/src/core/lib/avl/avl.h +2 -2
- data/src/core/lib/backoff/backoff.cc +2 -2
- data/src/core/lib/backoff/backoff.h +2 -2
- data/src/core/lib/backoff/random_early_detection.cc +2 -2
- data/src/core/lib/backoff/random_early_detection.h +2 -2
- data/src/core/lib/channel/call_finalization.h +3 -3
- data/src/core/lib/channel/call_tracer.cc +10 -11
- data/src/core/lib/channel/call_tracer.h +15 -14
- data/src/core/lib/channel/channel_args.cc +4 -4
- data/src/core/lib/channel/channel_args.h +1 -2
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +1 -2
- data/src/core/lib/channel/channel_stack.cc +17 -7
- data/src/core/lib/channel/channel_stack.h +6 -2
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +2 -2
- data/src/core/lib/channel/channel_stack_builder_impl.cc +135 -2
- data/src/core/lib/channel/channel_stack_builder_impl.h +2 -2
- data/src/core/lib/channel/channel_stack_trace.cc +2 -2
- data/src/core/lib/channel/connected_channel.cc +25 -43
- data/src/core/lib/channel/context.h +29 -1
- data/src/core/lib/channel/metrics.cc +334 -0
- data/src/core/lib/channel/metrics.h +365 -0
- data/src/core/lib/channel/promise_based_filter.cc +70 -75
- data/src/core/lib/channel/promise_based_filter.h +251 -154
- data/src/core/lib/channel/status_util.cc +2 -2
- data/src/core/lib/channel/status_util.h +1 -2
- data/src/core/lib/channel/tcp_tracer.h +6 -2
- data/src/core/lib/compression/compression.cc +1 -2
- data/src/core/lib/compression/compression_internal.cc +36 -3
- data/src/core/lib/compression/compression_internal.h +4 -2
- data/src/core/lib/compression/message_compress.cc +9 -8
- data/src/core/lib/compression/message_compress.h +1 -2
- data/src/core/lib/config/config_vars.cc +8 -6
- data/src/core/lib/config/config_vars.h +6 -2
- data/src/core/lib/config/config_vars_non_generated.cc +2 -2
- data/src/core/lib/config/core_configuration.cc +9 -8
- data/src/core/lib/config/core_configuration.h +8 -8
- data/src/core/lib/config/load_config.cc +4 -4
- data/src/core/lib/config/load_config.h +2 -2
- data/src/core/lib/debug/event_log.cc +3 -3
- data/src/core/lib/debug/event_log.h +2 -2
- data/src/core/lib/debug/histogram_view.cc +2 -2
- data/src/core/lib/debug/histogram_view.h +2 -2
- data/src/core/lib/debug/stats.cc +2 -2
- data/src/core/lib/debug/stats.h +2 -2
- data/src/core/lib/debug/stats_data.cc +271 -28
- data/src/core/lib/debug/stats_data.h +178 -2
- data/src/core/lib/debug/trace.cc +1 -2
- data/src/core/lib/debug/trace.h +2 -2
- data/src/core/lib/event_engine/ares_resolver.cc +18 -19
- data/src/core/lib/event_engine/ares_resolver.h +2 -2
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +3 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +3 -3
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +2 -1
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +2 -1
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +1 -2
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -2
- data/src/core/lib/event_engine/common_closures.h +1 -2
- data/src/core/lib/event_engine/default_event_engine.cc +1 -2
- data/src/core/lib/event_engine/default_event_engine.h +1 -8
- data/src/core/lib/event_engine/default_event_engine_factory.cc +1 -2
- data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
- data/src/core/lib/event_engine/event_engine.cc +1 -2
- data/src/core/lib/event_engine/event_engine_context.h +30 -0
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +65 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +1 -2
- data/src/core/lib/event_engine/forkable.cc +7 -6
- data/src/core/lib/event_engine/forkable.h +1 -2
- data/src/core/lib/event_engine/grpc_polled_fd.h +1 -2
- data/src/core/lib/event_engine/handle_containers.h +1 -2
- data/src/core/lib/event_engine/memory_allocator_factory.h +1 -2
- 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 +8 -8
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +1 -2
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +11 -11
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +1 -2
- data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -2
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +1 -2
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +2 -2
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +3 -3
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -2
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -2
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +24 -25
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +11 -11
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +10 -10
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +1 -2
- 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 +4 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +1 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +7 -6
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +10 -3
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +3 -3
- data/src/core/lib/event_engine/posix_engine/timer.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/timer.h +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +5 -5
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -2
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +1 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
- data/src/core/lib/event_engine/query_extensions.h +3 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +1 -2
- data/src/core/lib/event_engine/resolved_address.cc +5 -4
- data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
- data/src/core/lib/event_engine/shim.cc +2 -2
- data/src/core/lib/event_engine/slice.cc +4 -3
- data/src/core/lib/event_engine/slice_buffer.cc +1 -2
- data/src/core/lib/event_engine/tcp_socket_utils.cc +20 -9
- 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_pool/thread_count.cc +1 -2
- data/src/core/lib/event_engine/thread_pool/thread_count.h +1 -2
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -2
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -2
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +8 -8
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +1 -2
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +2 -2
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +1 -2
- data/src/core/lib/event_engine/time_util.cc +1 -2
- data/src/core/lib/event_engine/time_util.h +1 -2
- data/src/core/lib/event_engine/trace.cc +2 -2
- data/src/core/lib/event_engine/trace.h +1 -2
- data/src/core/lib/event_engine/utils.cc +1 -2
- data/src/core/lib/event_engine/utils.h +1 -2
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +31 -30
- data/src/core/lib/event_engine/windows/iocp.cc +10 -8
- data/src/core/lib/event_engine/windows/win_socket.cc +11 -5
- data/src/core/lib/event_engine/windows/win_socket.h +3 -0
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +13 -12
- data/src/core/lib/event_engine/windows/windows_engine.cc +48 -14
- data/src/core/lib/event_engine/windows/windows_listener.cc +61 -12
- data/src/core/lib/event_engine/windows/windows_listener.h +14 -0
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +2 -2
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +1 -2
- data/src/core/lib/event_engine/work_queue/work_queue.h +1 -2
- data/src/core/lib/experiments/config.cc +66 -48
- data/src/core/lib/experiments/config.h +2 -2
- data/src/core/lib/experiments/experiments.cc +42 -246
- data/src/core/lib/experiments/experiments.h +26 -124
- data/src/core/lib/gpr/alloc.cc +3 -1
- data/src/core/lib/gpr/android/log.cc +1 -1
- data/src/core/lib/gpr/linux/log.cc +1 -1
- data/src/core/lib/gpr/log.cc +26 -0
- data/src/core/lib/gpr/posix/log.cc +1 -1
- data/src/core/lib/gpr/posix/sync.cc +25 -23
- data/src/core/lib/gpr/posix/time.cc +9 -66
- data/src/core/lib/gpr/posix/tmpfile.cc +3 -1
- data/src/core/lib/gpr/sync.cc +5 -3
- data/src/core/lib/gpr/time.cc +10 -8
- data/src/core/lib/gpr/windows/log.cc +1 -1
- data/src/core/lib/gpr/windows/sync.cc +3 -1
- data/src/core/lib/gpr/windows/time.cc +4 -1
- data/src/core/lib/gprpp/atomic_utils.h +2 -2
- data/src/core/lib/gprpp/bitset.h +2 -2
- data/src/core/lib/gprpp/chunked_vector.h +6 -5
- data/src/core/lib/gprpp/construct_destruct.h +2 -2
- data/src/core/lib/gprpp/crash.cc +1 -2
- data/src/core/lib/gprpp/crash.h +2 -2
- data/src/core/lib/gprpp/debug_location.h +2 -2
- data/src/core/lib/gprpp/directory_reader.h +2 -2
- data/src/core/lib/gprpp/down_cast.h +7 -7
- data/src/core/lib/gprpp/dual_ref_counted.h +26 -17
- data/src/core/lib/gprpp/env.h +2 -2
- data/src/core/lib/gprpp/examine_stack.cc +2 -2
- data/src/core/lib/gprpp/examine_stack.h +2 -2
- data/src/core/lib/gprpp/fork.cc +1 -2
- data/src/core/lib/gprpp/fork.h +2 -2
- data/src/core/lib/gprpp/host_port.cc +6 -4
- data/src/core/lib/gprpp/host_port.h +2 -2
- data/src/core/lib/gprpp/linux/env.cc +2 -2
- data/src/core/lib/gprpp/load_file.cc +4 -3
- data/src/core/lib/gprpp/load_file.h +2 -2
- data/src/core/lib/gprpp/manual_constructor.h +2 -2
- data/src/core/lib/gprpp/match.h +2 -2
- data/src/core/lib/gprpp/memory.h +1 -2
- data/src/core/lib/gprpp/mpscq.cc +2 -2
- data/src/core/lib/gprpp/mpscq.h +5 -4
- data/src/core/lib/gprpp/no_destruct.h +2 -2
- data/src/core/lib/gprpp/notification.h +2 -2
- data/src/core/lib/gprpp/orphanable.h +7 -4
- data/src/core/lib/gprpp/overload.h +2 -2
- data/src/core/lib/gprpp/per_cpu.cc +1 -2
- data/src/core/lib/gprpp/per_cpu.h +1 -2
- data/src/core/lib/gprpp/posix/directory_reader.cc +2 -2
- data/src/core/lib/gprpp/posix/stat.cc +6 -4
- data/src/core/lib/gprpp/posix/thd.cc +10 -10
- data/src/core/lib/gprpp/ref_counted.h +10 -6
- data/src/core/lib/gprpp/ref_counted_ptr.h +4 -3
- data/src/core/lib/gprpp/ref_counted_string.cc +1 -2
- data/src/core/lib/gprpp/ref_counted_string.h +2 -2
- data/src/core/lib/gprpp/single_set_ptr.h +4 -3
- data/src/core/lib/gprpp/sorted_pack.h +2 -2
- data/src/core/lib/gprpp/stat.h +2 -2
- data/src/core/lib/gprpp/status_helper.cc +3 -3
- data/src/core/lib/gprpp/status_helper.h +2 -2
- data/src/core/lib/gprpp/strerror.cc +2 -2
- data/src/core/lib/gprpp/strerror.h +2 -2
- data/src/core/lib/gprpp/sync.h +5 -5
- data/src/core/lib/gprpp/table.h +2 -2
- data/src/core/lib/gprpp/tchar.cc +2 -2
- data/src/core/lib/gprpp/thd.h +7 -7
- data/src/core/lib/gprpp/time.cc +6 -6
- data/src/core/lib/gprpp/time.h +7 -2
- data/src/core/lib/gprpp/time_averaged_stats.cc +2 -2
- data/src/core/lib/gprpp/time_util.cc +5 -4
- data/src/core/lib/gprpp/time_util.h +1 -2
- data/src/core/lib/gprpp/unique_type_name.h +2 -2
- data/src/core/lib/gprpp/uuid_v4.cc +37 -0
- data/src/core/lib/gprpp/uuid_v4.h +36 -0
- data/src/core/lib/gprpp/validation_errors.cc +2 -2
- data/src/core/lib/gprpp/validation_errors.h +2 -2
- data/src/core/lib/gprpp/windows/stat.cc +4 -2
- data/src/core/lib/gprpp/windows/thd.cc +4 -2
- data/src/core/lib/gprpp/work_serializer.cc +5 -5
- data/src/core/lib/gprpp/work_serializer.h +1 -2
- data/src/core/lib/http/format_request.cc +1 -2
- data/src/core/lib/http/format_request.h +1 -2
- data/src/core/lib/http/httpcli.cc +6 -6
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +4 -4
- data/src/core/lib/http/httpcli_ssl_credentials.h +1 -2
- data/src/core/lib/http/parser.cc +5 -5
- data/src/core/lib/http/parser.h +1 -2
- data/src/core/lib/iomgr/buffer_list.cc +1 -2
- data/src/core/lib/iomgr/buffer_list.h +1 -2
- data/src/core/lib/iomgr/call_combiner.cc +5 -4
- data/src/core/lib/iomgr/call_combiner.h +1 -2
- data/src/core/lib/iomgr/closure.cc +2 -2
- data/src/core/lib/iomgr/closure.h +4 -3
- data/src/core/lib/iomgr/combiner.cc +7 -6
- data/src/core/lib/iomgr/combiner.h +1 -2
- data/src/core/lib/iomgr/endpoint.cc +2 -2
- data/src/core/lib/iomgr/endpoint.h +1 -2
- data/src/core/lib/iomgr/endpoint_cfstream.cc +7 -5
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +5 -4
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +11 -10
- data/src/core/lib/iomgr/error.cc +3 -3
- data/src/core/lib/iomgr/error.h +3 -3
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +14 -13
- data/src/core/lib/iomgr/ev_poll_posix.cc +9 -9
- data/src/core/lib/iomgr/ev_posix.cc +1 -2
- data/src/core/lib/iomgr/ev_posix.h +2 -2
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +1 -2
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +3 -3
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +1 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
- data/src/core/lib/iomgr/exec_ctx.cc +5 -5
- data/src/core/lib/iomgr/exec_ctx.h +6 -4
- data/src/core/lib/iomgr/executor.cc +7 -8
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +2 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +1 -2
- data/src/core/lib/iomgr/iocp_windows.cc +9 -6
- data/src/core/lib/iomgr/iocp_windows.h +0 -1
- data/src/core/lib/iomgr/iomgr.cc +1 -2
- data/src/core/lib/iomgr/iomgr.h +2 -2
- data/src/core/lib/iomgr/iomgr_internal.cc +2 -2
- data/src/core/lib/iomgr/iomgr_internal.h +2 -2
- data/src/core/lib/iomgr/iomgr_windows.cc +4 -2
- data/src/core/lib/iomgr/lockfree_event.cc +4 -3
- data/src/core/lib/iomgr/lockfree_event.h +1 -2
- data/src/core/lib/iomgr/polling_entity.cc +5 -5
- data/src/core/lib/iomgr/pollset.cc +2 -2
- data/src/core/lib/iomgr/pollset.h +0 -1
- data/src/core/lib/iomgr/pollset_set.cc +2 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +2 -2
- data/src/core/lib/iomgr/pollset_windows.h +0 -1
- data/src/core/lib/iomgr/port.h +3 -0
- data/src/core/lib/iomgr/python_util.h +1 -2
- data/src/core/lib/iomgr/resolve_address.cc +1 -2
- data/src/core/lib/iomgr/resolve_address.h +1 -2
- data/src/core/lib/iomgr/resolve_address_impl.h +2 -2
- data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
- data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
- data/src/core/lib/iomgr/resolved_address.h +2 -2
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -1
- data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
- data/src/core/lib/iomgr/socket_mutator.cc +1 -2
- data/src/core/lib/iomgr/socket_mutator.h +1 -2
- data/src/core/lib/iomgr/socket_utils.h +2 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +3 -1
- data/src/core/lib/iomgr/socket_utils_posix.cc +2 -2
- data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
- data/src/core/lib/iomgr/socket_windows.cc +4 -3
- 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_posix.cc +5 -4
- data/src/core/lib/iomgr/tcp_client_windows.cc +31 -10
- data/src/core/lib/iomgr/tcp_posix.cc +89 -41
- data/src/core/lib/iomgr/tcp_server.cc +2 -2
- data/src/core/lib/iomgr/tcp_server.h +1 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +123 -109
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -2
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +6 -6
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +2 -1
- data/src/core/lib/iomgr/tcp_server_windows.cc +75 -23
- data/src/core/lib/iomgr/tcp_windows.cc +8 -6
- data/src/core/lib/iomgr/timer.cc +2 -2
- data/src/core/lib/iomgr/timer.h +1 -2
- data/src/core/lib/iomgr/timer_generic.cc +3 -3
- data/src/core/lib/iomgr/timer_generic.h +0 -1
- data/src/core/lib/iomgr/timer_heap.cc +1 -2
- data/src/core/lib/iomgr/timer_manager.cc +4 -3
- data/src/core/lib/iomgr/timer_manager.h +2 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +15 -1
- data/src/core/lib/iomgr/unix_sockets_posix.h +1 -2
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +3 -1
- data/src/core/lib/iomgr/vsock.cc +2 -2
- data/src/core/lib/iomgr/vsock.h +1 -2
- data/src/core/lib/json/json.h +1 -2
- data/src/core/lib/json/json_args.h +2 -2
- data/src/core/lib/json/json_channel_args.h +2 -2
- data/src/core/lib/json/json_object_loader.cc +1 -2
- data/src/core/lib/json/json_object_loader.h +2 -2
- data/src/core/lib/json/json_reader.cc +4 -4
- data/src/core/lib/json/json_reader.h +2 -2
- data/src/core/lib/json/json_util.cc +2 -2
- data/src/core/lib/json/json_util.h +2 -2
- data/src/core/lib/json/json_writer.cc +2 -2
- data/src/core/lib/json/json_writer.h +2 -2
- data/src/core/lib/matchers/matchers.cc +2 -2
- data/src/core/lib/matchers/matchers.h +2 -2
- data/src/core/lib/promise/activity.cc +4 -3
- data/src/core/lib/promise/activity.h +8 -7
- data/src/core/lib/promise/all_ok.h +2 -2
- data/src/core/lib/promise/arena_promise.h +2 -2
- data/src/core/lib/promise/context.h +5 -5
- data/src/core/lib/promise/detail/join_state.h +11 -10
- data/src/core/lib/promise/detail/promise_factory.h +2 -2
- data/src/core/lib/promise/detail/promise_like.h +2 -2
- data/src/core/lib/promise/detail/seq_state.h +194 -194
- data/src/core/lib/promise/detail/status.h +4 -3
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -2
- data/src/core/lib/promise/for_each.h +88 -27
- data/src/core/lib/promise/if.h +2 -2
- data/src/core/lib/promise/interceptor_list.h +3 -3
- data/src/core/lib/promise/latch.h +8 -8
- data/src/core/lib/promise/loop.h +2 -2
- data/src/core/lib/promise/map.h +2 -2
- data/src/core/lib/promise/party.cc +45 -15
- data/src/core/lib/promise/party.h +21 -23
- data/src/core/lib/promise/pipe.h +15 -15
- data/src/core/lib/promise/poll.h +6 -5
- data/src/core/lib/promise/prioritized_race.h +2 -2
- data/src/core/lib/promise/promise.h +2 -2
- data/src/core/lib/promise/race.h +2 -2
- data/src/core/lib/promise/seq.h +2 -2
- data/src/core/lib/promise/sleep.cc +2 -3
- data/src/core/lib/promise/sleep.h +1 -2
- data/src/core/lib/promise/status_flag.h +16 -8
- data/src/core/lib/promise/trace.cc +2 -2
- data/src/core/lib/promise/try_join.h +4 -3
- data/src/core/lib/promise/try_seq.h +4 -3
- data/src/core/lib/resource_quota/api.cc +1 -2
- data/src/core/lib/resource_quota/api.h +1 -2
- data/src/core/lib/resource_quota/arena.cc +1 -2
- data/src/core/lib/resource_quota/arena.h +4 -2
- data/src/core/lib/resource_quota/connection_quota.cc +70 -0
- data/src/core/lib/resource_quota/connection_quota.h +61 -0
- data/src/core/lib/resource_quota/memory_quota.cc +11 -11
- data/src/core/lib/resource_quota/memory_quota.h +4 -4
- data/src/core/lib/resource_quota/periodic_update.cc +2 -2
- data/src/core/lib/resource_quota/periodic_update.h +2 -2
- data/src/core/lib/resource_quota/resource_quota.cc +2 -2
- data/src/core/lib/resource_quota/resource_quota.h +1 -2
- data/src/core/lib/resource_quota/thread_quota.cc +4 -3
- data/src/core/lib/resource_quota/thread_quota.h +2 -2
- data/src/core/lib/resource_quota/trace.cc +2 -2
- data/src/core/lib/security/authorization/audit_logging.cc +6 -6
- data/src/core/lib/security/authorization/audit_logging.h +1 -2
- data/src/core/lib/security/authorization/authorization_engine.h +2 -2
- data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -2
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +1 -2
- data/src/core/lib/security/authorization/evaluate_args.cc +7 -7
- data/src/core/lib/security/authorization/evaluate_args.h +4 -5
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -3
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -2
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +8 -12
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +7 -9
- data/src/core/lib/security/authorization/matchers.cc +1 -2
- data/src/core/lib/security/authorization/matchers.h +2 -2
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +1 -2
- data/src/core/lib/security/authorization/stdout_logger.cc +4 -3
- data/src/core/lib/security/authorization/stdout_logger.h +1 -2
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +2 -2
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +4 -3
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -2
- data/src/core/lib/security/context/security_context.cc +5 -3
- data/src/core/lib/security/context/security_context.h +2 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +1 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.h +2 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +1 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +1 -2
- 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 +1 -2
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +2 -2
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +9 -8
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -2
- data/src/core/lib/security/credentials/credentials.cc +4 -3
- data/src/core/lib/security/credentials/credentials.h +5 -4
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +5 -4
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +2 -2
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +2 -2
- data/src/core/lib/security/credentials/external/aws_request_signer.h +2 -2
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +7 -6
- data/src/core/lib/security/credentials/external/external_account_credentials.h +2 -2
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +1 -2
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +2 -2
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +4 -3
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +2 -2
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -2
- data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -2
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +1 -2
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +8 -7
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +2 -2
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -5
- data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +13 -8
- data/src/core/lib/security/credentials/jwt/json_token.h +1 -2
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +4 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +26 -31
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +1 -2
- data/src/core/lib/security/credentials/local/local_credentials.cc +1 -2
- data/src/core/lib/security/credentials/local/local_credentials.h +2 -2
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +9 -8
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +2 -2
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +3 -3
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -2
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +13 -13
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +5 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +26 -25
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +2 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +7 -6
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +3 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +3 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +4 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +19 -18
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +19 -12
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -5
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -2
- data/src/core/lib/security/credentials/tls/tls_credentials.h +2 -2
- data/src/core/lib/security/credentials/tls/tls_utils.cc +1 -2
- data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +7 -7
- data/src/core/lib/security/credentials/xds/xds_credentials.h +3 -3
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +14 -14
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +5 -5
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +6 -5
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +3 -3
- 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 +2 -2
- 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 +87 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +11 -11
- data/src/core/lib/security/security_connector/local/local_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/security_connector.cc +7 -6
- data/src/core/lib/security/security_connector/security_connector.h +3 -3
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +6 -6
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/ssl_utils.cc +10 -9
- data/src/core/lib/security/security_connector/ssl_utils.h +1 -2
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +13 -13
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +3 -3
- data/src/core/lib/security/transport/auth_filters.h +11 -36
- data/src/core/lib/security/transport/client_auth_filter.cc +6 -5
- data/src/core/lib/security/transport/server_auth_filter.cc +7 -5
- data/src/core/lib/security/util/json_util.cc +1 -2
- data/src/core/lib/slice/percent_encoding.cc +4 -3
- data/src/core/lib/slice/slice.cc +42 -15
- data/src/core/lib/slice/slice.h +4 -4
- data/src/core/lib/slice/slice_buffer.cc +64 -25
- data/src/core/lib/slice/slice_buffer.h +15 -3
- data/src/core/lib/slice/slice_internal.h +10 -3
- data/src/core/lib/slice/slice_refcount.cc +2 -2
- data/src/core/lib/slice/slice_refcount.h +1 -2
- data/src/core/lib/slice/slice_string_helpers.cc +2 -2
- data/src/core/lib/slice/slice_string_helpers.h +1 -2
- data/src/core/lib/surface/api_trace.cc +2 -2
- data/src/core/lib/surface/api_trace.h +1 -2
- data/src/core/lib/surface/byte_buffer.cc +1 -2
- data/src/core/lib/surface/byte_buffer_reader.cc +4 -3
- data/src/core/lib/surface/call.cc +212 -339
- data/src/core/lib/surface/call.h +181 -11
- data/src/core/lib/surface/call_details.cc +1 -2
- data/src/core/lib/surface/call_log_batch.cc +1 -2
- data/src/core/lib/surface/call_test_only.h +1 -2
- data/src/core/lib/surface/call_trace.h +0 -6
- data/src/core/lib/surface/channel.cc +111 -321
- data/src/core/lib/surface/channel.h +90 -110
- data/src/core/lib/surface/channel_create.cc +110 -0
- data/src/core/lib/surface/{builtins.cc → channel_create.h} +21 -16
- data/src/core/lib/surface/channel_init.cc +13 -12
- data/src/core/lib/surface/channel_init.h +31 -10
- data/src/core/lib/surface/channel_stack_type.cc +2 -2
- data/src/core/lib/surface/completion_queue.cc +17 -18
- data/src/core/lib/surface/completion_queue.h +1 -2
- data/src/core/lib/surface/completion_queue_factory.cc +9 -8
- data/src/core/lib/surface/completion_queue_factory.h +1 -2
- 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/init.cc +10 -16
- data/src/core/lib/surface/init_internally.cc +2 -2
- data/src/core/lib/surface/lame_client.cc +12 -40
- data/src/core/lib/surface/lame_client.h +13 -13
- data/src/core/lib/surface/legacy_channel.cc +414 -0
- data/src/core/lib/surface/legacy_channel.h +123 -0
- data/src/core/lib/surface/metadata_array.cc +1 -2
- data/src/core/lib/surface/validate_metadata.cc +1 -2
- data/src/core/lib/surface/validate_metadata.h +3 -3
- data/src/core/lib/surface/version.cc +3 -4
- data/src/core/lib/surface/wait_for_cq_end_op.cc +2 -2
- data/src/core/lib/transport/batch_builder.cc +14 -21
- data/src/core/lib/transport/batch_builder.h +6 -10
- data/src/core/lib/transport/bdp_estimator.cc +5 -3
- data/src/core/lib/transport/bdp_estimator.h +4 -4
- data/src/core/lib/transport/{call_size_estimator.cc → call_arena_allocator.cc} +3 -3
- data/src/core/lib/transport/{call_size_estimator.h → call_arena_allocator.h} +26 -5
- data/src/core/lib/transport/call_filters.cc +143 -28
- data/src/core/lib/transport/call_filters.h +412 -63
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +1 -2
- data/src/core/lib/transport/call_spine.cc +18 -19
- data/src/core/lib/transport/call_spine.h +393 -190
- data/src/core/lib/transport/connectivity_state.cc +1 -2
- data/src/core/lib/transport/connectivity_state.h +1 -2
- data/src/core/lib/transport/error_utils.cc +1 -2
- data/src/core/lib/transport/error_utils.h +1 -2
- data/src/core/lib/transport/message.cc +1 -2
- data/src/core/lib/transport/metadata.cc +3 -3
- data/src/core/lib/transport/metadata_batch.cc +68 -7
- data/src/core/lib/transport/metadata_batch.h +45 -20
- data/src/core/lib/transport/metadata_compression_traits.h +2 -2
- 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 +1 -2
- data/src/core/lib/transport/simple_slice_based_metadata.h +2 -2
- data/src/core/lib/transport/status_conversion.cc +2 -2
- data/src/core/lib/transport/status_conversion.h +1 -2
- data/src/core/lib/transport/timeout_encoding.cc +5 -5
- data/src/core/lib/transport/timeout_encoding.h +2 -2
- data/src/core/lib/transport/transport.cc +1 -2
- data/src/core/lib/transport/transport.h +41 -38
- data/src/core/lib/transport/transport_op_string.cc +1 -10
- data/src/core/lib/uri/uri_parser.cc +3 -3
- data/src/core/lib/uri/uri_parser.h +2 -2
- data/src/core/load_balancing/address_filtering.cc +3 -3
- data/src/core/load_balancing/address_filtering.h +3 -3
- data/src/core/load_balancing/backend_metric_data.h +2 -2
- data/src/core/{client_channel/backend_metric.cc → load_balancing/backend_metric_parser.cc} +3 -3
- data/src/core/{client_channel/backend_metric.h → load_balancing/backend_metric_parser.h} +5 -5
- data/src/core/load_balancing/child_policy_handler.cc +7 -7
- data/src/core/load_balancing/child_policy_handler.h +2 -2
- data/src/core/load_balancing/delegating_helper.h +10 -3
- data/src/core/load_balancing/endpoint_list.cc +7 -9
- data/src/core/load_balancing/endpoint_list.h +15 -9
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +28 -30
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +21 -8
- data/src/core/load_balancing/grpclb/grpclb.cc +65 -70
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -2
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +1 -2
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +2 -3
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +1 -2
- data/src/core/load_balancing/grpclb/load_balancer_api.h +2 -3
- data/src/core/load_balancing/health_check_client.cc +10 -11
- data/src/core/load_balancing/health_check_client.h +2 -2
- data/src/core/load_balancing/health_check_client_internal.h +5 -7
- data/src/core/load_balancing/lb_policy.cc +2 -2
- data/src/core/load_balancing/lb_policy.h +14 -6
- data/src/core/load_balancing/lb_policy_factory.h +2 -2
- data/src/core/load_balancing/lb_policy_registry.cc +3 -3
- data/src/core/load_balancing/lb_policy_registry.h +4 -4
- data/src/core/load_balancing/oob_backend_metric.cc +10 -11
- data/src/core/load_balancing/oob_backend_metric.h +3 -3
- data/src/core/load_balancing/oob_backend_metric_internal.h +7 -8
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +32 -32
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +2 -2
- data/src/core/load_balancing/pick_first/pick_first.cc +1152 -245
- data/src/core/load_balancing/priority/priority.cc +23 -17
- data/src/core/load_balancing/ring_hash/ring_hash.cc +42 -25
- data/src/core/load_balancing/ring_hash/ring_hash.h +3 -3
- data/src/core/load_balancing/rls/rls.cc +225 -95
- data/src/core/load_balancing/rls/rls.h +26 -0
- data/src/core/load_balancing/round_robin/round_robin.cc +33 -477
- data/src/core/load_balancing/subchannel_interface.h +4 -4
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +4 -4
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +3 -3
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +203 -988
- data/src/core/load_balancing/weighted_target/weighted_target.cc +20 -17
- data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
- data/src/core/load_balancing/xds/cds.cc +19 -20
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +113 -67
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +8 -9
- data/src/core/load_balancing/xds/xds_override_host.cc +21 -21
- data/src/core/load_balancing/xds/xds_override_host.h +3 -3
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +11 -11
- data/src/core/plugin_registry/grpc_plugin_registry.cc +23 -9
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +1 -3
- data/src/core/resolver/binder/binder_resolver.cc +12 -5
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +13 -13
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +2 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -3
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +6 -5
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +38 -37
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +14 -14
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +1 -2
- 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 +1 -1
- data/src/core/resolver/dns/dns_resolver_plugin.cc +4 -5
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +7 -7
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +6 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +2 -2
- data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
- data/src/core/resolver/dns/native/dns_resolver.cc +6 -7
- data/src/core/resolver/endpoint_addresses.cc +4 -4
- data/src/core/resolver/endpoint_addresses.h +6 -6
- data/src/core/resolver/fake/fake_resolver.cc +6 -6
- data/src/core/resolver/fake/fake_resolver.h +2 -3
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +18 -13
- data/src/core/resolver/polling_resolver.cc +5 -5
- data/src/core/resolver/polling_resolver.h +1 -2
- data/src/core/resolver/resolver.cc +2 -2
- data/src/core/resolver/resolver.h +2 -2
- data/src/core/resolver/resolver_factory.h +3 -3
- data/src/core/resolver/resolver_registry.cc +5 -5
- data/src/core/resolver/resolver_registry.h +5 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +8 -9
- data/src/core/resolver/xds/xds_dependency_manager.cc +19 -13
- data/src/core/resolver/xds/xds_dependency_manager.h +12 -12
- data/src/core/resolver/xds/xds_resolver.cc +36 -40
- data/src/core/resolver/xds/xds_resolver_attributes.h +3 -3
- data/src/core/resolver/xds/xds_resolver_trace.cc +2 -2
- data/src/core/{lib/surface → server}/server.cc +81 -94
- data/src/core/{lib/surface → server}/server.h +16 -13
- data/src/core/{lib/channel → server}/server_call_tracer_filter.cc +10 -5
- data/src/core/{lib/surface/builtins.h → server/server_call_tracer_filter.h} +7 -5
- data/src/core/{ext/filters/server_config_selector → server}/server_config_selector.h +5 -5
- data/src/core/{ext/filters/server_config_selector → server}/server_config_selector_filter.cc +37 -37
- data/src/core/{ext/filters/server_config_selector → server}/server_config_selector_filter.h +3 -3
- data/src/core/server/server_interface.h +43 -0
- data/src/core/{ext/xds → server}/xds_channel_stack_modifier.cc +3 -3
- data/src/core/{ext/xds → server}/xds_channel_stack_modifier.h +6 -6
- data/src/core/{ext/xds → server}/xds_server_config_fetcher.cc +43 -41
- data/src/core/service_config/service_config.h +1 -2
- data/src/core/service_config/service_config_call_data.h +2 -2
- data/src/core/{client_channel → service_config}/service_config_channel_arg_filter.cc +7 -8
- data/src/core/service_config/service_config_impl.cc +2 -2
- data/src/core/service_config/service_config_impl.h +3 -3
- data/src/core/service_config/service_config_parser.cc +1 -2
- data/src/core/service_config/service_config_parser.h +3 -3
- data/src/core/tsi/alts/crypt/aes_gcm.cc +1 -2
- data/src/core/tsi/alts/crypt/gsec.cc +1 -2
- data/src/core/tsi/alts/crypt/gsec.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_counter.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +2 -2
- 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 +1 -2
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +1 -2
- data/src/core/tsi/alts/frame_protector/frame_handler.h +2 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +44 -41
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -4
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +23 -20
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +5 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -2
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +5 -4
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +2 -2
- 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 +9 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +5 -4
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +2 -2
- data/src/core/tsi/fake_transport_security.cc +6 -4
- data/src/core/tsi/local_transport_security.cc +1 -2
- data/src/core/tsi/local_transport_security.h +1 -2
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +7 -6
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +1 -2
- data/src/core/tsi/ssl/session_cache/ssl_session.h +1 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +11 -10
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +1 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +3 -4
- data/src/core/tsi/ssl_transport_security.cc +218 -89
- data/src/core/tsi/ssl_transport_security.h +1 -2
- data/src/core/tsi/ssl_transport_security_utils.cc +138 -10
- data/src/core/tsi/ssl_transport_security_utils.h +28 -2
- data/src/core/tsi/ssl_types.h +2 -2
- data/src/core/tsi/transport_security.cc +1 -2
- data/src/core/tsi/transport_security.h +2 -2
- 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 -2
- data/src/core/{ext/xds → xds/grpc}/certificate_provider_store.cc +2 -3
- data/src/core/{ext/xds → xds/grpc}/certificate_provider_store.h +7 -7
- data/src/core/{ext/xds → xds/grpc}/file_watcher_certificate_provider_factory.cc +2 -3
- data/src/core/{ext/xds → xds/grpc}/file_watcher_certificate_provider_factory.h +6 -7
- data/src/core/{ext/xds → xds/grpc}/upb_utils.h +5 -5
- data/src/core/{ext/xds → xds/grpc}/xds_audit_logger_registry.cc +6 -5
- data/src/core/{ext/xds → xds/grpc}/xds_audit_logger_registry.h +7 -7
- data/src/core/{ext/xds → xds/grpc}/xds_bootstrap_grpc.cc +40 -9
- data/src/core/{ext/xds → xds/grpc}/xds_bootstrap_grpc.h +33 -18
- data/src/core/{ext/xds → xds/grpc}/xds_certificate_provider.cc +7 -7
- data/src/core/{ext/xds → xds/grpc}/xds_certificate_provider.h +5 -6
- data/src/core/{ext/xds → xds/grpc}/xds_client_grpc.cc +208 -66
- data/src/core/{ext/xds → xds/grpc}/xds_client_grpc.h +30 -17
- data/src/core/{ext/xds → xds/grpc}/xds_cluster.cc +27 -18
- data/src/core/{ext/xds → xds/grpc}/xds_cluster.h +16 -14
- data/src/core/{ext/xds → xds/grpc}/xds_cluster_specifier_plugin.cc +4 -4
- data/src/core/{ext/xds → xds/grpc}/xds_cluster_specifier_plugin.h +8 -8
- data/src/core/{ext/xds → xds/grpc}/xds_common_types.cc +5 -6
- data/src/core/{ext/xds → xds/grpc}/xds_common_types.h +6 -6
- data/src/core/{ext/xds → xds/grpc}/xds_endpoint.cc +10 -9
- data/src/core/{ext/xds → xds/grpc}/xds_endpoint.h +11 -11
- data/src/core/{ext/xds → xds/grpc}/xds_health_status.cc +3 -3
- data/src/core/{ext/xds → xds/grpc}/xds_health_status.h +7 -7
- data/src/core/{ext/xds → xds/grpc}/xds_http_fault_filter.cc +4 -5
- data/src/core/{ext/xds → xds/grpc}/xds_http_fault_filter.h +9 -9
- data/src/core/{ext/xds → xds/grpc}/xds_http_filters.cc +8 -9
- data/src/core/{ext/xds → xds/grpc}/xds_http_filters.h +9 -9
- data/src/core/{ext/xds → xds/grpc}/xds_http_rbac_filter.cc +6 -7
- data/src/core/{ext/xds → xds/grpc}/xds_http_rbac_filter.h +9 -9
- data/src/core/{ext/xds → xds/grpc}/xds_http_stateful_session_filter.cc +5 -6
- data/src/core/{ext/xds → xds/grpc}/xds_http_stateful_session_filter.h +9 -9
- data/src/core/{ext/xds → xds/grpc}/xds_lb_policy_registry.cc +8 -9
- data/src/core/{ext/xds → xds/grpc}/xds_lb_policy_registry.h +7 -7
- data/src/core/{ext/xds → xds/grpc}/xds_listener.cc +8 -8
- data/src/core/{ext/xds → xds/grpc}/xds_listener.h +13 -13
- data/src/core/{ext/xds → xds/grpc}/xds_route_config.cc +16 -16
- data/src/core/{ext/xds → xds/grpc}/xds_route_config.h +12 -12
- data/src/core/{ext/xds → xds/grpc}/xds_routing.cc +6 -6
- data/src/core/{ext/xds → xds/grpc}/xds_routing.h +9 -9
- data/src/core/{ext/xds → xds/grpc}/xds_transport_grpc.cc +31 -46
- data/src/core/{ext/xds → xds/grpc}/xds_transport_grpc.h +12 -13
- data/src/core/{ext/xds → xds/xds_client}/xds_api.cc +4 -5
- data/src/core/{ext/xds → xds/xds_client}/xds_api.h +8 -8
- data/src/core/{ext/xds → xds/xds_client}/xds_bootstrap.cc +3 -3
- data/src/core/{ext/xds → xds/xds_client}/xds_bootstrap.h +7 -9
- data/src/core/{ext/xds → xds/xds_client}/xds_channel_args.h +3 -3
- data/src/core/{ext/xds → xds/xds_client}/xds_client.cc +304 -120
- data/src/core/{ext/xds → xds/xds_client}/xds_client.h +50 -18
- data/src/core/{ext/xds → xds/xds_client}/xds_client_stats.cc +5 -6
- data/src/core/{ext/xds → xds/xds_client}/xds_client_stats.h +20 -13
- data/src/core/xds/xds_client/xds_metrics.h +41 -0
- data/src/core/{ext/xds → xds/xds_client}/xds_resource_type.h +6 -6
- data/src/core/{ext/xds → xds/xds_client}/xds_resource_type_impl.h +7 -7
- data/src/core/{ext/xds → xds/xds_client}/xds_transport.h +6 -6
- data/src/ruby/ext/grpc/extconf.rb +0 -3
- data/src/ruby/ext/grpc/rb_call_credentials.c +1 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_channel.c +1 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +1 -0
- data/src/ruby/ext/grpc/rb_grpc.c +1 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +130 -132
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +196 -198
- data/src/ruby/ext/grpc/rb_server.c +1 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +1 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +1 -0
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +1 -0
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
- 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/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 +218 -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 +118 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +420 -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 +633 -0
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +375 -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 +136 -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 +72 -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 +361 -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 +64 -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/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/bio/bio.c +3 -8
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +0 -13
- 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_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/tls_cbc.c +2 -2
- 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/dsa/dsa.c +26 -17
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -2
- 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/bn/bytes.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +8 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +14 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +2 -1
- 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 +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +11 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +22 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +73 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +45 -21
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +18 -9
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +18 -17
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +44 -41
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
- 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 -1
- 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/x509_lu.c +24 -7
- 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 +5 -12
- 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/{err_data.c → src/gen/crypto/err_data.c} +487 -485
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +10 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +80 -39
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +1 -0
- 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/{crypto/spx/internal.h → include/openssl/experimental/spx.h} +24 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +63 -53
- 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/span.h +14 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +291 -73
- 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 +2959 -2403
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +5 -5
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +43 -43
- 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 +67 -15
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +143 -113
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +227 -167
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
- 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 +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +70 -54
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +59 -75
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +19 -26
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +36 -3
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +53 -18
- data/third_party/upb/upb/base/descriptor_constants.h +29 -2
- data/third_party/upb/upb/{wire/internal/swap.h → base/internal/endian.h} +12 -11
- 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 +103 -53
- data/third_party/upb/upb/json/decode.h +3 -26
- data/third_party/upb/upb/json/encode.c +3 -26
- data/third_party/upb/upb/json/encode.h +3 -26
- data/third_party/upb/upb/mem/arena.c +233 -106
- data/third_party/upb/upb/mem/arena.h +14 -66
- data/third_party/upb/upb/mem/arena.hpp +8 -4
- data/third_party/upb/upb/mem/internal/arena.h +76 -58
- data/third_party/upb/upb/message/accessors.c +19 -46
- data/third_party/upb/upb/message/accessors.h +208 -123
- data/third_party/upb/upb/message/array.c +55 -83
- data/third_party/upb/upb/message/array.h +18 -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 +322 -0
- data/third_party/upb/upb/message/copy.h +56 -0
- data/third_party/upb/upb/message/internal/accessors.h +178 -178
- data/third_party/upb/upb/message/internal/array.h +80 -81
- data/third_party/upb/upb/message/internal/extension.c +63 -0
- data/third_party/upb/upb/message/internal/extension.h +12 -12
- data/third_party/upb/upb/message/internal/map.h +28 -41
- data/third_party/upb/upb/message/internal/map_entry.h +14 -39
- data/third_party/upb/upb/message/internal/map_sorter.h +18 -37
- data/third_party/upb/upb/message/internal/message.c +59 -0
- data/third_party/upb/upb/message/internal/message.h +26 -42
- data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
- data/third_party/upb/upb/message/internal/types.h +7 -12
- data/third_party/upb/upb/message/map.c +3 -26
- data/third_party/upb/upb/message/map.h +5 -33
- 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/message.c +28 -104
- data/third_party/upb/upb/message/message.h +4 -8
- data/third_party/upb/upb/message/tagged_ptr.h +14 -31
- data/third_party/upb/upb/message/value.h +3 -5
- data/third_party/upb/upb/mini_descriptor/build_enum.c +20 -11
- data/third_party/upb/upb/mini_descriptor/decode.c +127 -107
- data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
- data/third_party/upb/upb/mini_descriptor/link.c +34 -22
- data/third_party/upb/upb/mini_descriptor/link.h +1 -1
- data/third_party/upb/upb/mini_table/enum.h +4 -6
- data/third_party/upb/upb/mini_table/extension.h +37 -0
- data/third_party/upb/upb/mini_table/extension_registry.c +9 -2
- data/third_party/upb/upb/mini_table/field.h +46 -60
- data/third_party/upb/upb/mini_table/file.h +44 -0
- data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
- data/third_party/upb/upb/mini_table/internal/extension.h +34 -3
- data/third_party/upb/upb/mini_table/internal/field.h +136 -27
- data/third_party/upb/upb/mini_table/internal/file.h +47 -10
- data/third_party/upb/upb/mini_table/internal/message.c +17 -9
- data/third_party/upb/upb/mini_table/internal/message.h +94 -23
- data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
- data/third_party/upb/upb/mini_table/internal/sub.h +39 -4
- data/third_party/upb/upb/mini_table/message.c +18 -19
- data/third_party/upb/upb/mini_table/message.h +29 -20
- data/third_party/upb/upb/mini_table/sub.h +40 -1
- data/third_party/upb/upb/port/def.inc +18 -0
- data/third_party/upb/upb/port/undef.inc +3 -0
- data/third_party/upb/upb/reflection/def.hpp +8 -4
- data/third_party/upb/upb/reflection/def_pool.c +81 -2
- data/third_party/upb/upb/reflection/def_pool.h +8 -0
- data/third_party/upb/upb/reflection/enum_def.c +42 -19
- data/third_party/upb/upb/reflection/enum_def.h +1 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +43 -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 +177 -130
- data/third_party/upb/upb/reflection/field_def.h +10 -1
- data/third_party/upb/upb/reflection/file_def.c +98 -9
- data/third_party/upb/upb/reflection/file_def.h +3 -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 +27 -12
- data/third_party/upb/upb/reflection/message.h +5 -5
- data/third_party/upb/upb/reflection/message_def.c +56 -27
- 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 +2 -0
- 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 +2 -0
- data/third_party/upb/upb/text/encode.c +126 -36
- data/third_party/upb/upb/wire/decode.c +214 -196
- data/third_party/upb/upb/wire/decode.h +10 -0
- data/third_party/upb/upb/wire/encode.c +105 -91
- data/third_party/upb/upb/wire/encode.h +4 -3
- data/third_party/upb/upb/wire/{decode_fast.c → internal/decode_fast.c} +53 -48
- data/third_party/upb/upb/wire/{decode_fast.h → internal/decode_fast.h} +6 -5
- data/third_party/upb/upb/wire/internal/{decode.h → decoder.h} +15 -31
- data/third_party/upb/upb/wire/internal/reader.h +61 -0
- data/third_party/upb/upb/wire/reader.c +9 -6
- data/third_party/upb/upb/wire/reader.h +18 -47
- data/third_party/utf8_range/utf8_range.c +467 -0
- data/third_party/utf8_range/utf8_range.h +9 -8
- metadata +182 -128
- 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/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/lib/gpr/log_internal.h +0 -55
- data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
- data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
- data/src/core/lib/slice/b64.cc +0 -239
- data/src/core/lib/slice/b64.h +0 -52
- data/src/core/lib/surface/call_trace.cc +0 -163
- data/src/core/lib/surface/channel_ping.cc +0 -69
- data/src/core/lib/transport/call_factory.cc +0 -41
- data/src/core/lib/transport/call_factory.h +0 -56
- data/src/core/load_balancing/subchannel_list.h +0 -455
- data/third_party/upb/upb/message/types.h +0 -15
- 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/include/openssl/{kyber.h → experimental/kyber.h} +0 -0
@@ -30,22 +30,22 @@
|
|
30
30
|
extern "C" {
|
31
31
|
#endif
|
32
32
|
|
33
|
-
typedef struct envoy_data_accesslog_v3_TCPAccessLogEntry envoy_data_accesslog_v3_TCPAccessLogEntry;
|
34
|
-
typedef struct envoy_data_accesslog_v3_HTTPAccessLogEntry envoy_data_accesslog_v3_HTTPAccessLogEntry;
|
35
|
-
typedef struct envoy_data_accesslog_v3_ConnectionProperties envoy_data_accesslog_v3_ConnectionProperties;
|
36
|
-
typedef struct envoy_data_accesslog_v3_AccessLogCommon envoy_data_accesslog_v3_AccessLogCommon;
|
37
|
-
typedef struct envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry;
|
38
|
-
typedef struct envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry;
|
39
|
-
typedef struct envoy_data_accesslog_v3_ResponseFlags envoy_data_accesslog_v3_ResponseFlags;
|
40
|
-
typedef struct envoy_data_accesslog_v3_ResponseFlags_Unauthorized envoy_data_accesslog_v3_ResponseFlags_Unauthorized;
|
41
|
-
typedef struct envoy_data_accesslog_v3_TLSProperties envoy_data_accesslog_v3_TLSProperties;
|
42
|
-
typedef struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties envoy_data_accesslog_v3_TLSProperties_CertificateProperties;
|
43
|
-
typedef struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName;
|
44
|
-
typedef struct envoy_data_accesslog_v3_HTTPRequestProperties envoy_data_accesslog_v3_HTTPRequestProperties;
|
45
|
-
typedef struct envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry;
|
46
|
-
typedef struct envoy_data_accesslog_v3_HTTPResponseProperties envoy_data_accesslog_v3_HTTPResponseProperties;
|
47
|
-
typedef struct envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry;
|
48
|
-
typedef struct envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry;
|
33
|
+
typedef struct envoy_data_accesslog_v3_TCPAccessLogEntry { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_TCPAccessLogEntry;
|
34
|
+
typedef struct envoy_data_accesslog_v3_HTTPAccessLogEntry { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_HTTPAccessLogEntry;
|
35
|
+
typedef struct envoy_data_accesslog_v3_ConnectionProperties { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_ConnectionProperties;
|
36
|
+
typedef struct envoy_data_accesslog_v3_AccessLogCommon { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_AccessLogCommon;
|
37
|
+
typedef struct envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry;
|
38
|
+
typedef struct envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry;
|
39
|
+
typedef struct envoy_data_accesslog_v3_ResponseFlags { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_ResponseFlags;
|
40
|
+
typedef struct envoy_data_accesslog_v3_ResponseFlags_Unauthorized { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_ResponseFlags_Unauthorized;
|
41
|
+
typedef struct envoy_data_accesslog_v3_TLSProperties { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_TLSProperties;
|
42
|
+
typedef struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_TLSProperties_CertificateProperties;
|
43
|
+
typedef struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName;
|
44
|
+
typedef struct envoy_data_accesslog_v3_HTTPRequestProperties { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_HTTPRequestProperties;
|
45
|
+
typedef struct envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry;
|
46
|
+
typedef struct envoy_data_accesslog_v3_HTTPResponseProperties { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_HTTPResponseProperties;
|
47
|
+
typedef struct envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry;
|
48
|
+
typedef struct envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry { upb_Message UPB_PRIVATE(base); } envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry;
|
49
49
|
struct envoy_config_core_v3_Address;
|
50
50
|
struct envoy_config_core_v3_Metadata;
|
51
51
|
struct google_protobuf_Any;
|
@@ -101,7 +101,8 @@ UPB_INLINE envoy_data_accesslog_v3_TCPAccessLogEntry* envoy_data_accesslog_v3_TC
|
|
101
101
|
UPB_INLINE envoy_data_accesslog_v3_TCPAccessLogEntry* envoy_data_accesslog_v3_TCPAccessLogEntry_parse(const char* buf, size_t size, upb_Arena* arena) {
|
102
102
|
envoy_data_accesslog_v3_TCPAccessLogEntry* ret = envoy_data_accesslog_v3_TCPAccessLogEntry_new(arena);
|
103
103
|
if (!ret) return NULL;
|
104
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, NULL, 0, arena) !=
|
104
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, NULL, 0, arena) !=
|
105
|
+
kUpb_DecodeStatus_Ok) {
|
105
106
|
return NULL;
|
106
107
|
}
|
107
108
|
return ret;
|
@@ -111,57 +112,59 @@ UPB_INLINE envoy_data_accesslog_v3_TCPAccessLogEntry* envoy_data_accesslog_v3_TC
|
|
111
112
|
int options, upb_Arena* arena) {
|
112
113
|
envoy_data_accesslog_v3_TCPAccessLogEntry* ret = envoy_data_accesslog_v3_TCPAccessLogEntry_new(arena);
|
113
114
|
if (!ret) return NULL;
|
114
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, extreg, options,
|
115
|
-
|
115
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, extreg, options,
|
116
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
116
117
|
return NULL;
|
117
118
|
}
|
118
119
|
return ret;
|
119
120
|
}
|
120
121
|
UPB_INLINE char* envoy_data_accesslog_v3_TCPAccessLogEntry_serialize(const envoy_data_accesslog_v3_TCPAccessLogEntry* msg, upb_Arena* arena, size_t* len) {
|
121
122
|
char* ptr;
|
122
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, 0, arena, &ptr, len);
|
123
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, 0, arena, &ptr, len);
|
123
124
|
return ptr;
|
124
125
|
}
|
125
126
|
UPB_INLINE char* envoy_data_accesslog_v3_TCPAccessLogEntry_serialize_ex(const envoy_data_accesslog_v3_TCPAccessLogEntry* msg, int options,
|
126
127
|
upb_Arena* arena, size_t* len) {
|
127
128
|
char* ptr;
|
128
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, options, arena, &ptr, len);
|
129
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TCPAccessLogEntry_msg_init, options, arena, &ptr, len);
|
129
130
|
return ptr;
|
130
131
|
}
|
131
132
|
UPB_INLINE void envoy_data_accesslog_v3_TCPAccessLogEntry_clear_common_properties(envoy_data_accesslog_v3_TCPAccessLogEntry* msg) {
|
132
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
133
|
-
|
133
|
+
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)};
|
134
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
134
135
|
}
|
135
136
|
UPB_INLINE const envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_v3_TCPAccessLogEntry_common_properties(const envoy_data_accesslog_v3_TCPAccessLogEntry* msg) {
|
136
137
|
const envoy_data_accesslog_v3_AccessLogCommon* default_val = NULL;
|
137
138
|
const envoy_data_accesslog_v3_AccessLogCommon* ret;
|
138
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
139
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
139
|
+
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)};
|
140
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
141
|
+
&default_val, &ret);
|
140
142
|
return ret;
|
141
143
|
}
|
142
144
|
UPB_INLINE bool envoy_data_accesslog_v3_TCPAccessLogEntry_has_common_properties(const envoy_data_accesslog_v3_TCPAccessLogEntry* msg) {
|
143
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
144
|
-
return
|
145
|
+
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)};
|
146
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
145
147
|
}
|
146
148
|
UPB_INLINE void envoy_data_accesslog_v3_TCPAccessLogEntry_clear_connection_properties(envoy_data_accesslog_v3_TCPAccessLogEntry* msg) {
|
147
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
148
|
-
|
149
|
+
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)};
|
150
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
149
151
|
}
|
150
152
|
UPB_INLINE const envoy_data_accesslog_v3_ConnectionProperties* envoy_data_accesslog_v3_TCPAccessLogEntry_connection_properties(const envoy_data_accesslog_v3_TCPAccessLogEntry* msg) {
|
151
153
|
const envoy_data_accesslog_v3_ConnectionProperties* default_val = NULL;
|
152
154
|
const envoy_data_accesslog_v3_ConnectionProperties* ret;
|
153
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
154
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
155
|
+
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)};
|
156
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
157
|
+
&default_val, &ret);
|
155
158
|
return ret;
|
156
159
|
}
|
157
160
|
UPB_INLINE bool envoy_data_accesslog_v3_TCPAccessLogEntry_has_connection_properties(const envoy_data_accesslog_v3_TCPAccessLogEntry* msg) {
|
158
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
159
|
-
return
|
161
|
+
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)};
|
162
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
160
163
|
}
|
161
164
|
|
162
165
|
UPB_INLINE void envoy_data_accesslog_v3_TCPAccessLogEntry_set_common_properties(envoy_data_accesslog_v3_TCPAccessLogEntry *msg, envoy_data_accesslog_v3_AccessLogCommon* value) {
|
163
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
164
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
166
|
+
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)};
|
167
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
165
168
|
}
|
166
169
|
UPB_INLINE struct envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_v3_TCPAccessLogEntry_mutable_common_properties(envoy_data_accesslog_v3_TCPAccessLogEntry* msg, upb_Arena* arena) {
|
167
170
|
struct envoy_data_accesslog_v3_AccessLogCommon* sub = (struct envoy_data_accesslog_v3_AccessLogCommon*)envoy_data_accesslog_v3_TCPAccessLogEntry_common_properties(msg);
|
@@ -172,8 +175,8 @@ UPB_INLINE struct envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_
|
|
172
175
|
return sub;
|
173
176
|
}
|
174
177
|
UPB_INLINE void envoy_data_accesslog_v3_TCPAccessLogEntry_set_connection_properties(envoy_data_accesslog_v3_TCPAccessLogEntry *msg, envoy_data_accesslog_v3_ConnectionProperties* value) {
|
175
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
176
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
178
|
+
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)};
|
179
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
177
180
|
}
|
178
181
|
UPB_INLINE struct envoy_data_accesslog_v3_ConnectionProperties* envoy_data_accesslog_v3_TCPAccessLogEntry_mutable_connection_properties(envoy_data_accesslog_v3_TCPAccessLogEntry* msg, upb_Arena* arena) {
|
179
182
|
struct envoy_data_accesslog_v3_ConnectionProperties* sub = (struct envoy_data_accesslog_v3_ConnectionProperties*)envoy_data_accesslog_v3_TCPAccessLogEntry_connection_properties(msg);
|
@@ -192,7 +195,8 @@ UPB_INLINE envoy_data_accesslog_v3_HTTPAccessLogEntry* envoy_data_accesslog_v3_H
|
|
192
195
|
UPB_INLINE envoy_data_accesslog_v3_HTTPAccessLogEntry* envoy_data_accesslog_v3_HTTPAccessLogEntry_parse(const char* buf, size_t size, upb_Arena* arena) {
|
193
196
|
envoy_data_accesslog_v3_HTTPAccessLogEntry* ret = envoy_data_accesslog_v3_HTTPAccessLogEntry_new(arena);
|
194
197
|
if (!ret) return NULL;
|
195
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, NULL, 0, arena) !=
|
198
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, NULL, 0, arena) !=
|
199
|
+
kUpb_DecodeStatus_Ok) {
|
196
200
|
return NULL;
|
197
201
|
}
|
198
202
|
return ret;
|
@@ -202,83 +206,87 @@ UPB_INLINE envoy_data_accesslog_v3_HTTPAccessLogEntry* envoy_data_accesslog_v3_H
|
|
202
206
|
int options, upb_Arena* arena) {
|
203
207
|
envoy_data_accesslog_v3_HTTPAccessLogEntry* ret = envoy_data_accesslog_v3_HTTPAccessLogEntry_new(arena);
|
204
208
|
if (!ret) return NULL;
|
205
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, extreg, options,
|
206
|
-
|
209
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, extreg, options,
|
210
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
207
211
|
return NULL;
|
208
212
|
}
|
209
213
|
return ret;
|
210
214
|
}
|
211
215
|
UPB_INLINE char* envoy_data_accesslog_v3_HTTPAccessLogEntry_serialize(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg, upb_Arena* arena, size_t* len) {
|
212
216
|
char* ptr;
|
213
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, 0, arena, &ptr, len);
|
217
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, 0, arena, &ptr, len);
|
214
218
|
return ptr;
|
215
219
|
}
|
216
220
|
UPB_INLINE char* envoy_data_accesslog_v3_HTTPAccessLogEntry_serialize_ex(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg, int options,
|
217
221
|
upb_Arena* arena, size_t* len) {
|
218
222
|
char* ptr;
|
219
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, options, arena, &ptr, len);
|
223
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__HTTPAccessLogEntry_msg_init, options, arena, &ptr, len);
|
220
224
|
return ptr;
|
221
225
|
}
|
222
226
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_clear_common_properties(envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
223
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
224
|
-
|
227
|
+
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)};
|
228
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
225
229
|
}
|
226
230
|
UPB_INLINE const envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_v3_HTTPAccessLogEntry_common_properties(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
227
231
|
const envoy_data_accesslog_v3_AccessLogCommon* default_val = NULL;
|
228
232
|
const envoy_data_accesslog_v3_AccessLogCommon* ret;
|
229
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
230
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
233
|
+
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)};
|
234
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
235
|
+
&default_val, &ret);
|
231
236
|
return ret;
|
232
237
|
}
|
233
238
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPAccessLogEntry_has_common_properties(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
234
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
235
|
-
return
|
239
|
+
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)};
|
240
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
236
241
|
}
|
237
242
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_clear_protocol_version(envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
238
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
239
|
-
|
243
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
244
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
240
245
|
}
|
241
246
|
UPB_INLINE int32_t envoy_data_accesslog_v3_HTTPAccessLogEntry_protocol_version(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
242
247
|
int32_t default_val = 0;
|
243
248
|
int32_t ret;
|
244
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
245
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
249
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
250
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
251
|
+
&default_val, &ret);
|
246
252
|
return ret;
|
247
253
|
}
|
248
254
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_clear_request(envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
249
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
250
|
-
|
255
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
256
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
251
257
|
}
|
252
258
|
UPB_INLINE const envoy_data_accesslog_v3_HTTPRequestProperties* envoy_data_accesslog_v3_HTTPAccessLogEntry_request(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
253
259
|
const envoy_data_accesslog_v3_HTTPRequestProperties* default_val = NULL;
|
254
260
|
const envoy_data_accesslog_v3_HTTPRequestProperties* ret;
|
255
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
256
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
261
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
262
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
263
|
+
&default_val, &ret);
|
257
264
|
return ret;
|
258
265
|
}
|
259
266
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPAccessLogEntry_has_request(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
260
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
261
|
-
return
|
267
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
268
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
262
269
|
}
|
263
270
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_clear_response(envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
264
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
265
|
-
|
271
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
272
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
266
273
|
}
|
267
274
|
UPB_INLINE const envoy_data_accesslog_v3_HTTPResponseProperties* envoy_data_accesslog_v3_HTTPAccessLogEntry_response(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
268
275
|
const envoy_data_accesslog_v3_HTTPResponseProperties* default_val = NULL;
|
269
276
|
const envoy_data_accesslog_v3_HTTPResponseProperties* ret;
|
270
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
271
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
277
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
278
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
279
|
+
&default_val, &ret);
|
272
280
|
return ret;
|
273
281
|
}
|
274
282
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPAccessLogEntry_has_response(const envoy_data_accesslog_v3_HTTPAccessLogEntry* msg) {
|
275
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
276
|
-
return
|
283
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
284
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
277
285
|
}
|
278
286
|
|
279
287
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_set_common_properties(envoy_data_accesslog_v3_HTTPAccessLogEntry *msg, envoy_data_accesslog_v3_AccessLogCommon* value) {
|
280
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
281
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
288
|
+
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)};
|
289
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
282
290
|
}
|
283
291
|
UPB_INLINE struct envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_v3_HTTPAccessLogEntry_mutable_common_properties(envoy_data_accesslog_v3_HTTPAccessLogEntry* msg, upb_Arena* arena) {
|
284
292
|
struct envoy_data_accesslog_v3_AccessLogCommon* sub = (struct envoy_data_accesslog_v3_AccessLogCommon*)envoy_data_accesslog_v3_HTTPAccessLogEntry_common_properties(msg);
|
@@ -289,12 +297,12 @@ UPB_INLINE struct envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_
|
|
289
297
|
return sub;
|
290
298
|
}
|
291
299
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_set_protocol_version(envoy_data_accesslog_v3_HTTPAccessLogEntry *msg, int32_t value) {
|
292
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
293
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
300
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
301
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
294
302
|
}
|
295
303
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_set_request(envoy_data_accesslog_v3_HTTPAccessLogEntry *msg, envoy_data_accesslog_v3_HTTPRequestProperties* value) {
|
296
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
297
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
304
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
305
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
298
306
|
}
|
299
307
|
UPB_INLINE struct envoy_data_accesslog_v3_HTTPRequestProperties* envoy_data_accesslog_v3_HTTPAccessLogEntry_mutable_request(envoy_data_accesslog_v3_HTTPAccessLogEntry* msg, upb_Arena* arena) {
|
300
308
|
struct envoy_data_accesslog_v3_HTTPRequestProperties* sub = (struct envoy_data_accesslog_v3_HTTPRequestProperties*)envoy_data_accesslog_v3_HTTPAccessLogEntry_request(msg);
|
@@ -305,8 +313,8 @@ UPB_INLINE struct envoy_data_accesslog_v3_HTTPRequestProperties* envoy_data_acce
|
|
305
313
|
return sub;
|
306
314
|
}
|
307
315
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPAccessLogEntry_set_response(envoy_data_accesslog_v3_HTTPAccessLogEntry *msg, envoy_data_accesslog_v3_HTTPResponseProperties* value) {
|
308
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
309
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
316
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
317
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
310
318
|
}
|
311
319
|
UPB_INLINE struct envoy_data_accesslog_v3_HTTPResponseProperties* envoy_data_accesslog_v3_HTTPAccessLogEntry_mutable_response(envoy_data_accesslog_v3_HTTPAccessLogEntry* msg, upb_Arena* arena) {
|
312
320
|
struct envoy_data_accesslog_v3_HTTPResponseProperties* sub = (struct envoy_data_accesslog_v3_HTTPResponseProperties*)envoy_data_accesslog_v3_HTTPAccessLogEntry_response(msg);
|
@@ -325,7 +333,8 @@ UPB_INLINE envoy_data_accesslog_v3_ConnectionProperties* envoy_data_accesslog_v3
|
|
325
333
|
UPB_INLINE envoy_data_accesslog_v3_ConnectionProperties* envoy_data_accesslog_v3_ConnectionProperties_parse(const char* buf, size_t size, upb_Arena* arena) {
|
326
334
|
envoy_data_accesslog_v3_ConnectionProperties* ret = envoy_data_accesslog_v3_ConnectionProperties_new(arena);
|
327
335
|
if (!ret) return NULL;
|
328
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__ConnectionProperties_msg_init, NULL, 0, arena) !=
|
336
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__ConnectionProperties_msg_init, NULL, 0, arena) !=
|
337
|
+
kUpb_DecodeStatus_Ok) {
|
329
338
|
return NULL;
|
330
339
|
}
|
331
340
|
return ret;
|
@@ -335,53 +344,55 @@ UPB_INLINE envoy_data_accesslog_v3_ConnectionProperties* envoy_data_accesslog_v3
|
|
335
344
|
int options, upb_Arena* arena) {
|
336
345
|
envoy_data_accesslog_v3_ConnectionProperties* ret = envoy_data_accesslog_v3_ConnectionProperties_new(arena);
|
337
346
|
if (!ret) return NULL;
|
338
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__ConnectionProperties_msg_init, extreg, options,
|
339
|
-
|
347
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__ConnectionProperties_msg_init, extreg, options,
|
348
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
340
349
|
return NULL;
|
341
350
|
}
|
342
351
|
return ret;
|
343
352
|
}
|
344
353
|
UPB_INLINE char* envoy_data_accesslog_v3_ConnectionProperties_serialize(const envoy_data_accesslog_v3_ConnectionProperties* msg, upb_Arena* arena, size_t* len) {
|
345
354
|
char* ptr;
|
346
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__ConnectionProperties_msg_init, 0, arena, &ptr, len);
|
355
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__ConnectionProperties_msg_init, 0, arena, &ptr, len);
|
347
356
|
return ptr;
|
348
357
|
}
|
349
358
|
UPB_INLINE char* envoy_data_accesslog_v3_ConnectionProperties_serialize_ex(const envoy_data_accesslog_v3_ConnectionProperties* msg, int options,
|
350
359
|
upb_Arena* arena, size_t* len) {
|
351
360
|
char* ptr;
|
352
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__ConnectionProperties_msg_init, options, arena, &ptr, len);
|
361
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__ConnectionProperties_msg_init, options, arena, &ptr, len);
|
353
362
|
return ptr;
|
354
363
|
}
|
355
364
|
UPB_INLINE void envoy_data_accesslog_v3_ConnectionProperties_clear_received_bytes(envoy_data_accesslog_v3_ConnectionProperties* msg) {
|
356
|
-
const upb_MiniTableField field = {1,
|
357
|
-
|
365
|
+
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
366
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
358
367
|
}
|
359
368
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_ConnectionProperties_received_bytes(const envoy_data_accesslog_v3_ConnectionProperties* msg) {
|
360
369
|
uint64_t default_val = (uint64_t)0ull;
|
361
370
|
uint64_t ret;
|
362
|
-
const upb_MiniTableField field = {1,
|
363
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
371
|
+
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
372
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
373
|
+
&default_val, &ret);
|
364
374
|
return ret;
|
365
375
|
}
|
366
376
|
UPB_INLINE void envoy_data_accesslog_v3_ConnectionProperties_clear_sent_bytes(envoy_data_accesslog_v3_ConnectionProperties* msg) {
|
367
|
-
const upb_MiniTableField field = {2,
|
368
|
-
|
377
|
+
const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
378
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
369
379
|
}
|
370
380
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_ConnectionProperties_sent_bytes(const envoy_data_accesslog_v3_ConnectionProperties* msg) {
|
371
381
|
uint64_t default_val = (uint64_t)0ull;
|
372
382
|
uint64_t ret;
|
373
|
-
const upb_MiniTableField field = {2,
|
374
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
383
|
+
const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
384
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
385
|
+
&default_val, &ret);
|
375
386
|
return ret;
|
376
387
|
}
|
377
388
|
|
378
389
|
UPB_INLINE void envoy_data_accesslog_v3_ConnectionProperties_set_received_bytes(envoy_data_accesslog_v3_ConnectionProperties *msg, uint64_t value) {
|
379
|
-
const upb_MiniTableField field = {1,
|
380
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
390
|
+
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
391
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
381
392
|
}
|
382
393
|
UPB_INLINE void envoy_data_accesslog_v3_ConnectionProperties_set_sent_bytes(envoy_data_accesslog_v3_ConnectionProperties *msg, uint64_t value) {
|
383
|
-
const upb_MiniTableField field = {2,
|
384
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
394
|
+
const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
395
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
385
396
|
}
|
386
397
|
|
387
398
|
/* envoy.data.accesslog.v3.AccessLogCommon */
|
@@ -392,7 +403,8 @@ UPB_INLINE envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_v3_Acce
|
|
392
403
|
UPB_INLINE envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_v3_AccessLogCommon_parse(const char* buf, size_t size, upb_Arena* arena) {
|
393
404
|
envoy_data_accesslog_v3_AccessLogCommon* ret = envoy_data_accesslog_v3_AccessLogCommon_new(arena);
|
394
405
|
if (!ret) return NULL;
|
395
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__AccessLogCommon_msg_init, NULL, 0, arena) !=
|
406
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__AccessLogCommon_msg_init, NULL, 0, arena) !=
|
407
|
+
kUpb_DecodeStatus_Ok) {
|
396
408
|
return NULL;
|
397
409
|
}
|
398
410
|
return ret;
|
@@ -402,482 +414,529 @@ UPB_INLINE envoy_data_accesslog_v3_AccessLogCommon* envoy_data_accesslog_v3_Acce
|
|
402
414
|
int options, upb_Arena* arena) {
|
403
415
|
envoy_data_accesslog_v3_AccessLogCommon* ret = envoy_data_accesslog_v3_AccessLogCommon_new(arena);
|
404
416
|
if (!ret) return NULL;
|
405
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__AccessLogCommon_msg_init, extreg, options,
|
406
|
-
|
417
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__AccessLogCommon_msg_init, extreg, options,
|
418
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
407
419
|
return NULL;
|
408
420
|
}
|
409
421
|
return ret;
|
410
422
|
}
|
411
423
|
UPB_INLINE char* envoy_data_accesslog_v3_AccessLogCommon_serialize(const envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena, size_t* len) {
|
412
424
|
char* ptr;
|
413
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__AccessLogCommon_msg_init, 0, arena, &ptr, len);
|
425
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__AccessLogCommon_msg_init, 0, arena, &ptr, len);
|
414
426
|
return ptr;
|
415
427
|
}
|
416
428
|
UPB_INLINE char* envoy_data_accesslog_v3_AccessLogCommon_serialize_ex(const envoy_data_accesslog_v3_AccessLogCommon* msg, int options,
|
417
429
|
upb_Arena* arena, size_t* len) {
|
418
430
|
char* ptr;
|
419
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__AccessLogCommon_msg_init, options, arena, &ptr, len);
|
431
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__AccessLogCommon_msg_init, options, arena, &ptr, len);
|
420
432
|
return ptr;
|
421
433
|
}
|
422
434
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_sample_rate(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
423
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
424
|
-
|
435
|
+
const upb_MiniTableField field = {1, UPB_SIZE(104, 24), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
436
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
425
437
|
}
|
426
438
|
UPB_INLINE double envoy_data_accesslog_v3_AccessLogCommon_sample_rate(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
427
439
|
double default_val = 0;
|
428
440
|
double ret;
|
429
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
430
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
441
|
+
const upb_MiniTableField field = {1, UPB_SIZE(104, 24), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
442
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
443
|
+
&default_val, &ret);
|
431
444
|
return ret;
|
432
445
|
}
|
433
446
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
434
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
435
|
-
|
447
|
+
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)};
|
448
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
436
449
|
}
|
437
450
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_downstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
438
451
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
439
452
|
const struct envoy_config_core_v3_Address* ret;
|
440
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
441
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
453
|
+
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)};
|
454
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
455
|
+
&default_val, &ret);
|
442
456
|
return ret;
|
443
457
|
}
|
444
458
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_downstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
445
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
446
|
-
return
|
459
|
+
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)};
|
460
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
447
461
|
}
|
448
462
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_local_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
449
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
450
|
-
|
463
|
+
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)};
|
464
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
451
465
|
}
|
452
466
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_downstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
453
467
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
454
468
|
const struct envoy_config_core_v3_Address* ret;
|
455
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
456
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
469
|
+
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)};
|
470
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
471
|
+
&default_val, &ret);
|
457
472
|
return ret;
|
458
473
|
}
|
459
474
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_downstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
460
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
461
|
-
return
|
475
|
+
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)};
|
476
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
462
477
|
}
|
463
478
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_tls_properties(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
464
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
465
|
-
|
479
|
+
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)};
|
480
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
466
481
|
}
|
467
482
|
UPB_INLINE const envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3_AccessLogCommon_tls_properties(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
468
483
|
const envoy_data_accesslog_v3_TLSProperties* default_val = NULL;
|
469
484
|
const envoy_data_accesslog_v3_TLSProperties* ret;
|
470
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
471
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
485
|
+
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)};
|
486
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
487
|
+
&default_val, &ret);
|
472
488
|
return ret;
|
473
489
|
}
|
474
490
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_tls_properties(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
475
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
476
|
-
return
|
491
|
+
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)};
|
492
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
477
493
|
}
|
478
494
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_start_time(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
479
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
480
|
-
|
495
|
+
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)};
|
496
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
481
497
|
}
|
482
498
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_data_accesslog_v3_AccessLogCommon_start_time(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
483
499
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
484
500
|
const struct google_protobuf_Timestamp* ret;
|
485
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
486
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
501
|
+
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)};
|
502
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
503
|
+
&default_val, &ret);
|
487
504
|
return ret;
|
488
505
|
}
|
489
506
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_start_time(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
490
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
491
|
-
return
|
507
|
+
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)};
|
508
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
492
509
|
}
|
493
510
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
494
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
495
|
-
|
511
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
512
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
496
513
|
}
|
497
514
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_last_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
498
515
|
const struct google_protobuf_Duration* default_val = NULL;
|
499
516
|
const struct google_protobuf_Duration* ret;
|
500
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
501
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
517
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
518
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
519
|
+
&default_val, &ret);
|
502
520
|
return ret;
|
503
521
|
}
|
504
522
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
505
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
506
|
-
return
|
523
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
524
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
507
525
|
}
|
508
526
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_first_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
509
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
510
|
-
|
527
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
528
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
511
529
|
}
|
512
530
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_first_upstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
513
531
|
const struct google_protobuf_Duration* default_val = NULL;
|
514
532
|
const struct google_protobuf_Duration* ret;
|
515
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
516
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
533
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
534
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
535
|
+
&default_val, &ret);
|
517
536
|
return ret;
|
518
537
|
}
|
519
538
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_first_upstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
520
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
521
|
-
return
|
539
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
540
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
522
541
|
}
|
523
542
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
524
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
525
|
-
|
543
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 70, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
544
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
526
545
|
}
|
527
546
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_last_upstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
528
547
|
const struct google_protobuf_Duration* default_val = NULL;
|
529
548
|
const struct google_protobuf_Duration* ret;
|
530
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
531
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
549
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 70, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
550
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
551
|
+
&default_val, &ret);
|
532
552
|
return ret;
|
533
553
|
}
|
534
554
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_upstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
535
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
536
|
-
return
|
555
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 70, 6, 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);
|
537
557
|
}
|
538
558
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_first_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
539
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
540
|
-
|
559
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
560
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
541
561
|
}
|
542
562
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_first_upstream_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
543
563
|
const struct google_protobuf_Duration* default_val = NULL;
|
544
564
|
const struct google_protobuf_Duration* ret;
|
545
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
546
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
565
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
566
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
567
|
+
&default_val, &ret);
|
547
568
|
return ret;
|
548
569
|
}
|
549
570
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_first_upstream_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
550
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
551
|
-
return
|
571
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
572
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
552
573
|
}
|
553
574
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
554
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
555
|
-
|
575
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
576
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
556
577
|
}
|
557
578
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_last_upstream_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
558
579
|
const struct google_protobuf_Duration* default_val = NULL;
|
559
580
|
const struct google_protobuf_Duration* ret;
|
560
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
561
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
581
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
582
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
583
|
+
&default_val, &ret);
|
562
584
|
return ret;
|
563
585
|
}
|
564
586
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_upstream_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
565
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
566
|
-
return
|
587
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
588
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
567
589
|
}
|
568
590
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_first_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
569
|
-
const upb_MiniTableField field = {11, UPB_SIZE(
|
570
|
-
|
591
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 104), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
592
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
571
593
|
}
|
572
594
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_first_downstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
573
595
|
const struct google_protobuf_Duration* default_val = NULL;
|
574
596
|
const struct google_protobuf_Duration* ret;
|
575
|
-
const upb_MiniTableField field = {11, UPB_SIZE(
|
576
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
597
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 104), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
598
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
599
|
+
&default_val, &ret);
|
577
600
|
return ret;
|
578
601
|
}
|
579
602
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_first_downstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
580
|
-
const upb_MiniTableField field = {11, UPB_SIZE(
|
581
|
-
return
|
603
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 104), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
604
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
582
605
|
}
|
583
606
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
584
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
585
|
-
|
607
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 112), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
608
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
586
609
|
}
|
587
610
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_last_downstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
588
611
|
const struct google_protobuf_Duration* default_val = NULL;
|
589
612
|
const struct google_protobuf_Duration* ret;
|
590
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
591
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
613
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 112), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
614
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
615
|
+
&default_val, &ret);
|
592
616
|
return ret;
|
593
617
|
}
|
594
618
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_downstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
595
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
596
|
-
return
|
619
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 112), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
620
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
597
621
|
}
|
598
622
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
599
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
600
|
-
|
623
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 120), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
624
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
601
625
|
}
|
602
626
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_upstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
603
627
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
604
628
|
const struct envoy_config_core_v3_Address* ret;
|
605
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
606
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
629
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 120), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
630
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
631
|
+
&default_val, &ret);
|
607
632
|
return ret;
|
608
633
|
}
|
609
634
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_upstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
610
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
611
|
-
return
|
635
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 120), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
636
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
612
637
|
}
|
613
638
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_local_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
614
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
615
|
-
|
639
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 128), 76, 12, 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);
|
616
641
|
}
|
617
642
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_upstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
618
643
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
619
644
|
const struct envoy_config_core_v3_Address* ret;
|
620
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
621
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
645
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 128), 76, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
646
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
647
|
+
&default_val, &ret);
|
622
648
|
return ret;
|
623
649
|
}
|
624
650
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_upstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
625
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
626
|
-
return
|
651
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 128), 76, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
652
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
627
653
|
}
|
628
654
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_cluster(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
629
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
630
|
-
|
655
|
+
const upb_MiniTableField field = {15, UPB_SIZE(112, 136), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
656
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
631
657
|
}
|
632
658
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_upstream_cluster(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
633
659
|
upb_StringView default_val = upb_StringView_FromString("");
|
634
660
|
upb_StringView ret;
|
635
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
636
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
661
|
+
const upb_MiniTableField field = {15, UPB_SIZE(112, 136), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
662
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
663
|
+
&default_val, &ret);
|
637
664
|
return ret;
|
638
665
|
}
|
639
666
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_response_flags(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
640
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
641
|
-
|
667
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 152), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
668
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
642
669
|
}
|
643
670
|
UPB_INLINE const envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3_AccessLogCommon_response_flags(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
644
671
|
const envoy_data_accesslog_v3_ResponseFlags* default_val = NULL;
|
645
672
|
const envoy_data_accesslog_v3_ResponseFlags* ret;
|
646
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
647
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
673
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 152), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
674
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
675
|
+
&default_val, &ret);
|
648
676
|
return ret;
|
649
677
|
}
|
650
678
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_response_flags(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
651
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
652
|
-
return
|
679
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 152), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
680
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
653
681
|
}
|
654
682
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_metadata(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
655
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
656
|
-
|
683
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 160), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
684
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
657
685
|
}
|
658
686
|
UPB_INLINE const struct envoy_config_core_v3_Metadata* envoy_data_accesslog_v3_AccessLogCommon_metadata(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
659
687
|
const struct envoy_config_core_v3_Metadata* default_val = NULL;
|
660
688
|
const struct envoy_config_core_v3_Metadata* ret;
|
661
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
662
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
689
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 160), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
690
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
691
|
+
&default_val, &ret);
|
663
692
|
return ret;
|
664
693
|
}
|
665
694
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_metadata(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
666
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
667
|
-
return
|
695
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 160), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
696
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
668
697
|
}
|
669
698
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
670
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
671
|
-
|
699
|
+
const upb_MiniTableField field = {18, UPB_SIZE(120, 168), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
700
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
672
701
|
}
|
673
702
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_upstream_transport_failure_reason(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
674
703
|
upb_StringView default_val = upb_StringView_FromString("");
|
675
704
|
upb_StringView ret;
|
676
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
677
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
705
|
+
const upb_MiniTableField field = {18, UPB_SIZE(120, 168), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
706
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
707
|
+
&default_val, &ret);
|
678
708
|
return ret;
|
679
709
|
}
|
680
710
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_route_name(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
681
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
682
|
-
|
711
|
+
const upb_MiniTableField field = {19, UPB_SIZE(128, 184), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
712
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
683
713
|
}
|
684
714
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_route_name(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
685
715
|
upb_StringView default_val = upb_StringView_FromString("");
|
686
716
|
upb_StringView ret;
|
687
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
688
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
717
|
+
const upb_MiniTableField field = {19, UPB_SIZE(128, 184), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
718
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
719
|
+
&default_val, &ret);
|
689
720
|
return ret;
|
690
721
|
}
|
691
722
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_direct_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
692
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
693
|
-
|
723
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 200), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
724
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
694
725
|
}
|
695
726
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_downstream_direct_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
696
727
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
697
728
|
const struct envoy_config_core_v3_Address* ret;
|
698
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
699
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
729
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 200), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
730
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
731
|
+
&default_val, &ret);
|
700
732
|
return ret;
|
701
733
|
}
|
702
734
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_downstream_direct_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
703
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
704
|
-
return
|
735
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 200), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
736
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
705
737
|
}
|
706
738
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_filter_state_objects(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
707
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
708
|
-
|
739
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
740
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
709
741
|
}
|
710
742
|
UPB_INLINE size_t envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_size(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
711
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
712
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
743
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
744
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
713
745
|
return map ? _upb_Map_Size(map) : 0;
|
714
746
|
}
|
715
747
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_get(const envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key, struct google_protobuf_Any** val) {
|
716
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
717
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
748
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
749
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
718
750
|
if (!map) return false;
|
719
751
|
return _upb_Map_Get(map, &key, 0, val, sizeof(*val));
|
720
752
|
}
|
721
753
|
UPB_INLINE const envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry* envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_next(const envoy_data_accesslog_v3_AccessLogCommon* msg, size_t* iter) {
|
722
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
723
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
754
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
755
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
724
756
|
if (!map) return NULL;
|
725
757
|
return (const envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry*)_upb_map_next(map, iter);
|
726
758
|
}
|
759
|
+
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
760
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
761
|
+
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
762
|
+
}
|
763
|
+
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_mutable_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* a) {
|
764
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
765
|
+
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, sizeof(struct google_protobuf_Any*), a);
|
766
|
+
}
|
727
767
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_custom_tags(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
728
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
729
|
-
|
768
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
769
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
730
770
|
}
|
731
771
|
UPB_INLINE size_t envoy_data_accesslog_v3_AccessLogCommon_custom_tags_size(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
732
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
733
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
772
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
773
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
734
774
|
return map ? _upb_Map_Size(map) : 0;
|
735
775
|
}
|
736
776
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_custom_tags_get(const envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key, upb_StringView* val) {
|
737
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
738
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
777
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
778
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
739
779
|
if (!map) return false;
|
740
780
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
741
781
|
}
|
742
782
|
UPB_INLINE const envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry* envoy_data_accesslog_v3_AccessLogCommon_custom_tags_next(const envoy_data_accesslog_v3_AccessLogCommon* msg, size_t* iter) {
|
743
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
744
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
783
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
784
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
745
785
|
if (!map) return NULL;
|
746
786
|
return (const envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry*)_upb_map_next(map, iter);
|
747
787
|
}
|
788
|
+
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_custom_tags_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
789
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
790
|
+
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
791
|
+
}
|
792
|
+
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_custom_tags_mutable_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* a) {
|
793
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
794
|
+
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
|
795
|
+
}
|
748
796
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_duration(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
749
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
750
|
-
|
797
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 224), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
798
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
751
799
|
}
|
752
800
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_duration(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
753
801
|
const struct google_protobuf_Duration* default_val = NULL;
|
754
802
|
const struct google_protobuf_Duration* ret;
|
755
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
756
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
803
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 224), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
804
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
805
|
+
&default_val, &ret);
|
757
806
|
return ret;
|
758
807
|
}
|
759
808
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_duration(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
760
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
761
|
-
return
|
809
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 224), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
810
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
762
811
|
}
|
763
812
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_request_attempt_count(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
764
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
765
|
-
|
813
|
+
const upb_MiniTableField field = {24, UPB_SIZE(88, 12), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
814
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
766
815
|
}
|
767
816
|
UPB_INLINE uint32_t envoy_data_accesslog_v3_AccessLogCommon_upstream_request_attempt_count(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
768
817
|
uint32_t default_val = (uint32_t)0u;
|
769
818
|
uint32_t ret;
|
770
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
771
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
819
|
+
const upb_MiniTableField field = {24, UPB_SIZE(88, 12), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
820
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
821
|
+
&default_val, &ret);
|
772
822
|
return ret;
|
773
823
|
}
|
774
824
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_connection_termination_details(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
775
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
776
|
-
|
825
|
+
const upb_MiniTableField field = {25, UPB_SIZE(136, 232), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
826
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
777
827
|
}
|
778
828
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_connection_termination_details(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
779
829
|
upb_StringView default_val = upb_StringView_FromString("");
|
780
830
|
upb_StringView ret;
|
781
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
782
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
831
|
+
const upb_MiniTableField field = {25, UPB_SIZE(136, 232), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
832
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
833
|
+
&default_val, &ret);
|
783
834
|
return ret;
|
784
835
|
}
|
785
836
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_stream_id(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
786
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
787
|
-
|
837
|
+
const upb_MiniTableField field = {26, UPB_SIZE(144, 248), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
838
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
788
839
|
}
|
789
840
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_stream_id(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
790
841
|
upb_StringView default_val = upb_StringView_FromString("");
|
791
842
|
upb_StringView ret;
|
792
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
793
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
843
|
+
const upb_MiniTableField field = {26, UPB_SIZE(144, 248), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
844
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
845
|
+
&default_val, &ret);
|
794
846
|
return ret;
|
795
847
|
}
|
796
848
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_intermediate_log_entry(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
797
|
-
const upb_MiniTableField field = {27, UPB_SIZE(
|
798
|
-
|
849
|
+
const upb_MiniTableField field = {27, UPB_SIZE(92, 16), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
850
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
799
851
|
}
|
800
852
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_intermediate_log_entry(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
801
853
|
bool default_val = false;
|
802
854
|
bool ret;
|
803
|
-
const upb_MiniTableField field = {27, UPB_SIZE(
|
804
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
855
|
+
const upb_MiniTableField field = {27, UPB_SIZE(92, 16), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
856
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
857
|
+
&default_val, &ret);
|
805
858
|
return ret;
|
806
859
|
}
|
807
860
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
808
|
-
const upb_MiniTableField field = {28, UPB_SIZE(
|
809
|
-
|
861
|
+
const upb_MiniTableField field = {28, UPB_SIZE(152, 264), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
862
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
810
863
|
}
|
811
864
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_downstream_transport_failure_reason(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
812
865
|
upb_StringView default_val = upb_StringView_FromString("");
|
813
866
|
upb_StringView ret;
|
814
|
-
const upb_MiniTableField field = {28, UPB_SIZE(
|
815
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
867
|
+
const upb_MiniTableField field = {28, UPB_SIZE(152, 264), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
868
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
869
|
+
&default_val, &ret);
|
816
870
|
return ret;
|
817
871
|
}
|
818
872
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
819
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
820
|
-
|
873
|
+
const upb_MiniTableField field = {29, UPB_SIZE(160, 280), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
874
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
821
875
|
}
|
822
876
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_downstream_wire_bytes_sent(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
823
877
|
uint64_t default_val = (uint64_t)0ull;
|
824
878
|
uint64_t ret;
|
825
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
826
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
879
|
+
const upb_MiniTableField field = {29, UPB_SIZE(160, 280), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
880
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
881
|
+
&default_val, &ret);
|
827
882
|
return ret;
|
828
883
|
}
|
829
884
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
830
|
-
const upb_MiniTableField field = {30, UPB_SIZE(
|
831
|
-
|
885
|
+
const upb_MiniTableField field = {30, UPB_SIZE(168, 288), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
886
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
832
887
|
}
|
833
888
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_downstream_wire_bytes_received(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
834
889
|
uint64_t default_val = (uint64_t)0ull;
|
835
890
|
uint64_t ret;
|
836
|
-
const upb_MiniTableField field = {30, UPB_SIZE(
|
837
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
891
|
+
const upb_MiniTableField field = {30, UPB_SIZE(168, 288), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
892
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
893
|
+
&default_val, &ret);
|
838
894
|
return ret;
|
839
895
|
}
|
840
896
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
841
|
-
const upb_MiniTableField field = {31, UPB_SIZE(
|
842
|
-
|
897
|
+
const upb_MiniTableField field = {31, UPB_SIZE(176, 296), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
898
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
843
899
|
}
|
844
900
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_upstream_wire_bytes_sent(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
845
901
|
uint64_t default_val = (uint64_t)0ull;
|
846
902
|
uint64_t ret;
|
847
|
-
const upb_MiniTableField field = {31, UPB_SIZE(
|
848
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
903
|
+
const upb_MiniTableField field = {31, UPB_SIZE(176, 296), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
904
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
905
|
+
&default_val, &ret);
|
849
906
|
return ret;
|
850
907
|
}
|
851
908
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
852
|
-
const upb_MiniTableField field = {32, UPB_SIZE(
|
853
|
-
|
909
|
+
const upb_MiniTableField field = {32, UPB_SIZE(184, 304), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
910
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
854
911
|
}
|
855
912
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_upstream_wire_bytes_received(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
856
913
|
uint64_t default_val = (uint64_t)0ull;
|
857
914
|
uint64_t ret;
|
858
|
-
const upb_MiniTableField field = {32, UPB_SIZE(
|
859
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
915
|
+
const upb_MiniTableField field = {32, UPB_SIZE(184, 304), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
916
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
917
|
+
&default_val, &ret);
|
860
918
|
return ret;
|
861
919
|
}
|
862
920
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_access_log_type(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
863
|
-
const upb_MiniTableField field = {33, UPB_SIZE(
|
864
|
-
|
921
|
+
const upb_MiniTableField field = {33, UPB_SIZE(96, 20), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
922
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
865
923
|
}
|
866
924
|
UPB_INLINE int32_t envoy_data_accesslog_v3_AccessLogCommon_access_log_type(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
867
925
|
int32_t default_val = 0;
|
868
926
|
int32_t ret;
|
869
|
-
const upb_MiniTableField field = {33, UPB_SIZE(
|
870
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
927
|
+
const upb_MiniTableField field = {33, UPB_SIZE(96, 20), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
928
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
929
|
+
&default_val, &ret);
|
871
930
|
return ret;
|
872
931
|
}
|
873
932
|
|
874
933
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_sample_rate(envoy_data_accesslog_v3_AccessLogCommon *msg, double value) {
|
875
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
876
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
934
|
+
const upb_MiniTableField field = {1, UPB_SIZE(104, 24), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
935
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
877
936
|
}
|
878
937
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon *msg, struct envoy_config_core_v3_Address* value) {
|
879
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
880
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
938
|
+
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)};
|
939
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
881
940
|
}
|
882
941
|
UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_mutable_downstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
883
942
|
struct envoy_config_core_v3_Address* sub = (struct envoy_config_core_v3_Address*)envoy_data_accesslog_v3_AccessLogCommon_downstream_remote_address(msg);
|
@@ -888,8 +947,8 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
888
947
|
return sub;
|
889
948
|
}
|
890
949
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_local_address(envoy_data_accesslog_v3_AccessLogCommon *msg, struct envoy_config_core_v3_Address* value) {
|
891
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
892
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
950
|
+
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)};
|
951
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
893
952
|
}
|
894
953
|
UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_mutable_downstream_local_address(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
895
954
|
struct envoy_config_core_v3_Address* sub = (struct envoy_config_core_v3_Address*)envoy_data_accesslog_v3_AccessLogCommon_downstream_local_address(msg);
|
@@ -900,8 +959,8 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
900
959
|
return sub;
|
901
960
|
}
|
902
961
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_tls_properties(envoy_data_accesslog_v3_AccessLogCommon *msg, envoy_data_accesslog_v3_TLSProperties* value) {
|
903
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
904
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
962
|
+
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)};
|
963
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
905
964
|
}
|
906
965
|
UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3_AccessLogCommon_mutable_tls_properties(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
907
966
|
struct envoy_data_accesslog_v3_TLSProperties* sub = (struct envoy_data_accesslog_v3_TLSProperties*)envoy_data_accesslog_v3_AccessLogCommon_tls_properties(msg);
|
@@ -912,8 +971,8 @@ UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3
|
|
912
971
|
return sub;
|
913
972
|
}
|
914
973
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_start_time(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Timestamp* value) {
|
915
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
916
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
974
|
+
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)};
|
975
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
917
976
|
}
|
918
977
|
UPB_INLINE struct google_protobuf_Timestamp* envoy_data_accesslog_v3_AccessLogCommon_mutable_start_time(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
919
978
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)envoy_data_accesslog_v3_AccessLogCommon_start_time(msg);
|
@@ -924,8 +983,8 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_data_accesslog_v3_AccessLogCo
|
|
924
983
|
return sub;
|
925
984
|
}
|
926
985
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_time_to_last_rx_byte(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
927
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
928
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
986
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
987
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
929
988
|
}
|
930
989
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_time_to_last_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
931
990
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_time_to_last_rx_byte(msg);
|
@@ -936,8 +995,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
936
995
|
return sub;
|
937
996
|
}
|
938
997
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_time_to_first_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
939
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
940
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
998
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
999
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
941
1000
|
}
|
942
1001
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_time_to_first_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
943
1002
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_time_to_first_upstream_tx_byte(msg);
|
@@ -948,8 +1007,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
948
1007
|
return sub;
|
949
1008
|
}
|
950
1009
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_time_to_last_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
951
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
952
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1010
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 70, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1011
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
953
1012
|
}
|
954
1013
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_time_to_last_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
955
1014
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_time_to_last_upstream_tx_byte(msg);
|
@@ -960,8 +1019,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
960
1019
|
return sub;
|
961
1020
|
}
|
962
1021
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_time_to_first_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
963
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
964
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1022
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1023
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
965
1024
|
}
|
966
1025
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_time_to_first_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
967
1026
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_time_to_first_upstream_rx_byte(msg);
|
@@ -972,8 +1031,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
972
1031
|
return sub;
|
973
1032
|
}
|
974
1033
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_time_to_last_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
975
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
976
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1034
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1035
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
977
1036
|
}
|
978
1037
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_time_to_last_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
979
1038
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_time_to_last_upstream_rx_byte(msg);
|
@@ -984,8 +1043,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
984
1043
|
return sub;
|
985
1044
|
}
|
986
1045
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_time_to_first_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
987
|
-
const upb_MiniTableField field = {11, UPB_SIZE(
|
988
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1046
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 104), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1047
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
989
1048
|
}
|
990
1049
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_time_to_first_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
991
1050
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_time_to_first_downstream_tx_byte(msg);
|
@@ -996,8 +1055,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
996
1055
|
return sub;
|
997
1056
|
}
|
998
1057
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_time_to_last_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
999
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
1000
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1058
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 112), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1059
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1001
1060
|
}
|
1002
1061
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_time_to_last_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
1003
1062
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_time_to_last_downstream_tx_byte(msg);
|
@@ -1008,8 +1067,8 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1008
1067
|
return sub;
|
1009
1068
|
}
|
1010
1069
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon *msg, struct envoy_config_core_v3_Address* value) {
|
1011
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1012
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1070
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 120), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1071
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1013
1072
|
}
|
1014
1073
|
UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_mutable_upstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
1015
1074
|
struct envoy_config_core_v3_Address* sub = (struct envoy_config_core_v3_Address*)envoy_data_accesslog_v3_AccessLogCommon_upstream_remote_address(msg);
|
@@ -1020,8 +1079,8 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
1020
1079
|
return sub;
|
1021
1080
|
}
|
1022
1081
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_local_address(envoy_data_accesslog_v3_AccessLogCommon *msg, struct envoy_config_core_v3_Address* value) {
|
1023
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
1024
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1082
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 128), 76, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1083
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1025
1084
|
}
|
1026
1085
|
UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_mutable_upstream_local_address(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
1027
1086
|
struct envoy_config_core_v3_Address* sub = (struct envoy_config_core_v3_Address*)envoy_data_accesslog_v3_AccessLogCommon_upstream_local_address(msg);
|
@@ -1032,12 +1091,12 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
1032
1091
|
return sub;
|
1033
1092
|
}
|
1034
1093
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_cluster(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1035
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
1036
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1094
|
+
const upb_MiniTableField field = {15, UPB_SIZE(112, 136), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1095
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1037
1096
|
}
|
1038
1097
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_response_flags(envoy_data_accesslog_v3_AccessLogCommon *msg, envoy_data_accesslog_v3_ResponseFlags* value) {
|
1039
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
1040
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1098
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 152), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1099
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1041
1100
|
}
|
1042
1101
|
UPB_INLINE struct envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3_AccessLogCommon_mutable_response_flags(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
1043
1102
|
struct envoy_data_accesslog_v3_ResponseFlags* sub = (struct envoy_data_accesslog_v3_ResponseFlags*)envoy_data_accesslog_v3_AccessLogCommon_response_flags(msg);
|
@@ -1048,8 +1107,8 @@ UPB_INLINE struct envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3
|
|
1048
1107
|
return sub;
|
1049
1108
|
}
|
1050
1109
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_metadata(envoy_data_accesslog_v3_AccessLogCommon *msg, struct envoy_config_core_v3_Metadata* value) {
|
1051
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
1052
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1110
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 160), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1111
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1053
1112
|
}
|
1054
1113
|
UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_data_accesslog_v3_AccessLogCommon_mutable_metadata(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
1055
1114
|
struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_data_accesslog_v3_AccessLogCommon_metadata(msg);
|
@@ -1060,16 +1119,16 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_data_accesslog_v3_AccessL
|
|
1060
1119
|
return sub;
|
1061
1120
|
}
|
1062
1121
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1063
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
1064
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1122
|
+
const upb_MiniTableField field = {18, UPB_SIZE(120, 168), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1123
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1065
1124
|
}
|
1066
1125
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_route_name(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1067
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
1068
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1126
|
+
const upb_MiniTableField field = {19, UPB_SIZE(128, 184), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1127
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1069
1128
|
}
|
1070
1129
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_direct_remote_address(envoy_data_accesslog_v3_AccessLogCommon *msg, struct envoy_config_core_v3_Address* value) {
|
1071
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
1072
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1130
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 200), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1131
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1073
1132
|
}
|
1074
1133
|
UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_mutable_downstream_direct_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
1075
1134
|
struct envoy_config_core_v3_Address* sub = (struct envoy_config_core_v3_Address*)envoy_data_accesslog_v3_AccessLogCommon_downstream_direct_remote_address(msg);
|
@@ -1080,56 +1139,58 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
1080
1139
|
return sub;
|
1081
1140
|
}
|
1082
1141
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_clear(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
1083
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
1084
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
1142
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1143
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1085
1144
|
if (!map) return;
|
1086
1145
|
_upb_Map_Clear(map);
|
1087
1146
|
}
|
1088
1147
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_set(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key, struct google_protobuf_Any* val, upb_Arena* a) {
|
1089
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
1090
|
-
upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg
|
1148
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1149
|
+
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
1150
|
+
&field, 0, sizeof(val), a);
|
1091
1151
|
return _upb_Map_Insert(map, &key, 0, &val, sizeof(val), a) !=
|
1092
1152
|
kUpb_MapInsertStatus_OutOfMemory;
|
1093
1153
|
}
|
1094
1154
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_delete(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key) {
|
1095
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
1096
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
1155
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1156
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1097
1157
|
if (!map) return false;
|
1098
1158
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
1099
1159
|
}
|
1100
1160
|
UPB_INLINE envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry* envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_nextmutable(envoy_data_accesslog_v3_AccessLogCommon* msg, size_t* iter) {
|
1101
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
1102
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
1161
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 208), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1162
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1103
1163
|
if (!map) return NULL;
|
1104
1164
|
return (envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry*)_upb_map_next(map, iter);
|
1105
1165
|
}
|
1106
1166
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_custom_tags_clear(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
1107
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
1108
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
1167
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1168
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1109
1169
|
if (!map) return;
|
1110
1170
|
_upb_Map_Clear(map);
|
1111
1171
|
}
|
1112
1172
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_custom_tags_set(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key, upb_StringView val, upb_Arena* a) {
|
1113
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
1114
|
-
upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg,
|
1173
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1174
|
+
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
1175
|
+
&field, 0, 0, a);
|
1115
1176
|
return _upb_Map_Insert(map, &key, 0, &val, 0, a) !=
|
1116
1177
|
kUpb_MapInsertStatus_OutOfMemory;
|
1117
1178
|
}
|
1118
1179
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_custom_tags_delete(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key) {
|
1119
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
1120
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
1180
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1181
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1121
1182
|
if (!map) return false;
|
1122
1183
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
1123
1184
|
}
|
1124
1185
|
UPB_INLINE envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry* envoy_data_accesslog_v3_AccessLogCommon_custom_tags_nextmutable(envoy_data_accesslog_v3_AccessLogCommon* msg, size_t* iter) {
|
1125
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
1126
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
1186
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 216), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1187
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1127
1188
|
if (!map) return NULL;
|
1128
1189
|
return (envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry*)_upb_map_next(map, iter);
|
1129
1190
|
}
|
1130
1191
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_duration(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
1131
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
1132
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1192
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 224), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1193
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1133
1194
|
}
|
1134
1195
|
UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_mutable_duration(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* arena) {
|
1135
1196
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_data_accesslog_v3_AccessLogCommon_duration(msg);
|
@@ -1140,44 +1201,44 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1140
1201
|
return sub;
|
1141
1202
|
}
|
1142
1203
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_request_attempt_count(envoy_data_accesslog_v3_AccessLogCommon *msg, uint32_t value) {
|
1143
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
1144
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1204
|
+
const upb_MiniTableField field = {24, UPB_SIZE(88, 12), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1205
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1145
1206
|
}
|
1146
1207
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_connection_termination_details(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1147
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
1148
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1208
|
+
const upb_MiniTableField field = {25, UPB_SIZE(136, 232), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1209
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1149
1210
|
}
|
1150
1211
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_stream_id(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1151
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
1152
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1212
|
+
const upb_MiniTableField field = {26, UPB_SIZE(144, 248), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1213
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1153
1214
|
}
|
1154
1215
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_intermediate_log_entry(envoy_data_accesslog_v3_AccessLogCommon *msg, bool value) {
|
1155
|
-
const upb_MiniTableField field = {27, UPB_SIZE(
|
1156
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1216
|
+
const upb_MiniTableField field = {27, UPB_SIZE(92, 16), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1217
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1157
1218
|
}
|
1158
1219
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1159
|
-
const upb_MiniTableField field = {28, UPB_SIZE(
|
1160
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1220
|
+
const upb_MiniTableField field = {28, UPB_SIZE(152, 264), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1221
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1161
1222
|
}
|
1162
1223
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1163
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
1164
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1224
|
+
const upb_MiniTableField field = {29, UPB_SIZE(160, 280), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1225
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1165
1226
|
}
|
1166
1227
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1167
|
-
const upb_MiniTableField field = {30, UPB_SIZE(
|
1168
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1228
|
+
const upb_MiniTableField field = {30, UPB_SIZE(168, 288), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1229
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1169
1230
|
}
|
1170
1231
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1171
|
-
const upb_MiniTableField field = {31, UPB_SIZE(
|
1172
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1232
|
+
const upb_MiniTableField field = {31, UPB_SIZE(176, 296), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1233
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1173
1234
|
}
|
1174
1235
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1175
|
-
const upb_MiniTableField field = {32, UPB_SIZE(
|
1176
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1236
|
+
const upb_MiniTableField field = {32, UPB_SIZE(184, 304), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1237
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1177
1238
|
}
|
1178
1239
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_access_log_type(envoy_data_accesslog_v3_AccessLogCommon *msg, int32_t value) {
|
1179
|
-
const upb_MiniTableField field = {33, UPB_SIZE(
|
1180
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1240
|
+
const upb_MiniTableField field = {33, UPB_SIZE(96, 20), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1241
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1181
1242
|
}
|
1182
1243
|
|
1183
1244
|
/* envoy.data.accesslog.v3.AccessLogCommon.FilterStateObjectsEntry */
|
@@ -1193,8 +1254,8 @@ UPB_INLINE const struct google_protobuf_Any* envoy_data_accesslog_v3_AccessLogCo
|
|
1193
1254
|
return ret;
|
1194
1255
|
}
|
1195
1256
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry_has_value(const envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry* msg) {
|
1196
|
-
const upb_MiniTableField field = {2,
|
1197
|
-
return
|
1257
|
+
const upb_MiniTableField field = {2, 32, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1258
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1198
1259
|
}
|
1199
1260
|
|
1200
1261
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry_set_value(envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry *msg, struct google_protobuf_Any* value) {
|
@@ -1226,7 +1287,8 @@ UPB_INLINE envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3_Respon
|
|
1226
1287
|
UPB_INLINE envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3_ResponseFlags_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1227
1288
|
envoy_data_accesslog_v3_ResponseFlags* ret = envoy_data_accesslog_v3_ResponseFlags_new(arena);
|
1228
1289
|
if (!ret) return NULL;
|
1229
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__ResponseFlags_msg_init, NULL, 0, arena) !=
|
1290
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__ResponseFlags_msg_init, NULL, 0, arena) !=
|
1291
|
+
kUpb_DecodeStatus_Ok) {
|
1230
1292
|
return NULL;
|
1231
1293
|
}
|
1232
1294
|
return ret;
|
@@ -1236,376 +1298,403 @@ UPB_INLINE envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3_Respon
|
|
1236
1298
|
int options, upb_Arena* arena) {
|
1237
1299
|
envoy_data_accesslog_v3_ResponseFlags* ret = envoy_data_accesslog_v3_ResponseFlags_new(arena);
|
1238
1300
|
if (!ret) return NULL;
|
1239
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__ResponseFlags_msg_init, extreg, options,
|
1240
|
-
|
1301
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__ResponseFlags_msg_init, extreg, options,
|
1302
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1241
1303
|
return NULL;
|
1242
1304
|
}
|
1243
1305
|
return ret;
|
1244
1306
|
}
|
1245
1307
|
UPB_INLINE char* envoy_data_accesslog_v3_ResponseFlags_serialize(const envoy_data_accesslog_v3_ResponseFlags* msg, upb_Arena* arena, size_t* len) {
|
1246
1308
|
char* ptr;
|
1247
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__ResponseFlags_msg_init, 0, arena, &ptr, len);
|
1309
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__ResponseFlags_msg_init, 0, arena, &ptr, len);
|
1248
1310
|
return ptr;
|
1249
1311
|
}
|
1250
1312
|
UPB_INLINE char* envoy_data_accesslog_v3_ResponseFlags_serialize_ex(const envoy_data_accesslog_v3_ResponseFlags* msg, int options,
|
1251
1313
|
upb_Arena* arena, size_t* len) {
|
1252
1314
|
char* ptr;
|
1253
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__ResponseFlags_msg_init, options, arena, &ptr, len);
|
1315
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__ResponseFlags_msg_init, options, arena, &ptr, len);
|
1254
1316
|
return ptr;
|
1255
1317
|
}
|
1256
1318
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_failed_local_healthcheck(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1257
|
-
const upb_MiniTableField field = {1,
|
1258
|
-
|
1319
|
+
const upb_MiniTableField field = {1, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1320
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1259
1321
|
}
|
1260
1322
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_failed_local_healthcheck(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1261
1323
|
bool default_val = false;
|
1262
1324
|
bool ret;
|
1263
|
-
const upb_MiniTableField field = {1,
|
1264
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1325
|
+
const upb_MiniTableField field = {1, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1326
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1327
|
+
&default_val, &ret);
|
1265
1328
|
return ret;
|
1266
1329
|
}
|
1267
1330
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_no_healthy_upstream(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1268
|
-
const upb_MiniTableField field = {2,
|
1269
|
-
|
1331
|
+
const upb_MiniTableField field = {2, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1332
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1270
1333
|
}
|
1271
1334
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_no_healthy_upstream(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1272
1335
|
bool default_val = false;
|
1273
1336
|
bool ret;
|
1274
|
-
const upb_MiniTableField field = {2,
|
1275
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1337
|
+
const upb_MiniTableField field = {2, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1338
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1339
|
+
&default_val, &ret);
|
1276
1340
|
return ret;
|
1277
1341
|
}
|
1278
1342
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_request_timeout(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1279
|
-
const upb_MiniTableField field = {3,
|
1280
|
-
|
1343
|
+
const upb_MiniTableField field = {3, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1344
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1281
1345
|
}
|
1282
1346
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_request_timeout(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1283
1347
|
bool default_val = false;
|
1284
1348
|
bool ret;
|
1285
|
-
const upb_MiniTableField field = {3,
|
1286
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1349
|
+
const upb_MiniTableField field = {3, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1350
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1351
|
+
&default_val, &ret);
|
1287
1352
|
return ret;
|
1288
1353
|
}
|
1289
1354
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_local_reset(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1290
|
-
const upb_MiniTableField field = {4,
|
1291
|
-
|
1355
|
+
const upb_MiniTableField field = {4, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1356
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1292
1357
|
}
|
1293
1358
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_local_reset(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1294
1359
|
bool default_val = false;
|
1295
1360
|
bool ret;
|
1296
|
-
const upb_MiniTableField field = {4,
|
1297
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1361
|
+
const upb_MiniTableField field = {4, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1362
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1363
|
+
&default_val, &ret);
|
1298
1364
|
return ret;
|
1299
1365
|
}
|
1300
1366
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_remote_reset(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1301
|
-
const upb_MiniTableField field = {5,
|
1302
|
-
|
1367
|
+
const upb_MiniTableField field = {5, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1368
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1303
1369
|
}
|
1304
1370
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_remote_reset(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1305
1371
|
bool default_val = false;
|
1306
1372
|
bool ret;
|
1307
|
-
const upb_MiniTableField field = {5,
|
1308
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1373
|
+
const upb_MiniTableField field = {5, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1374
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1375
|
+
&default_val, &ret);
|
1309
1376
|
return ret;
|
1310
1377
|
}
|
1311
1378
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_connection_failure(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1312
|
-
const upb_MiniTableField field = {6,
|
1313
|
-
|
1379
|
+
const upb_MiniTableField field = {6, 14, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1380
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1314
1381
|
}
|
1315
1382
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_connection_failure(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1316
1383
|
bool default_val = false;
|
1317
1384
|
bool ret;
|
1318
|
-
const upb_MiniTableField field = {6,
|
1319
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1385
|
+
const upb_MiniTableField field = {6, 14, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1386
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1387
|
+
&default_val, &ret);
|
1320
1388
|
return ret;
|
1321
1389
|
}
|
1322
1390
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_connection_termination(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1323
|
-
const upb_MiniTableField field = {7,
|
1324
|
-
|
1391
|
+
const upb_MiniTableField field = {7, 15, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1392
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1325
1393
|
}
|
1326
1394
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_connection_termination(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1327
1395
|
bool default_val = false;
|
1328
1396
|
bool ret;
|
1329
|
-
const upb_MiniTableField field = {7,
|
1330
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1397
|
+
const upb_MiniTableField field = {7, 15, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1398
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1399
|
+
&default_val, &ret);
|
1331
1400
|
return ret;
|
1332
1401
|
}
|
1333
1402
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_overflow(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1334
|
-
const upb_MiniTableField field = {8,
|
1335
|
-
|
1403
|
+
const upb_MiniTableField field = {8, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1404
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1336
1405
|
}
|
1337
1406
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_overflow(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1338
1407
|
bool default_val = false;
|
1339
1408
|
bool ret;
|
1340
|
-
const upb_MiniTableField field = {8,
|
1341
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1409
|
+
const upb_MiniTableField field = {8, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1410
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1411
|
+
&default_val, &ret);
|
1342
1412
|
return ret;
|
1343
1413
|
}
|
1344
1414
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_no_route_found(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1345
|
-
const upb_MiniTableField field = {9,
|
1346
|
-
|
1415
|
+
const upb_MiniTableField field = {9, 17, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1416
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1347
1417
|
}
|
1348
1418
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_no_route_found(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1349
1419
|
bool default_val = false;
|
1350
1420
|
bool ret;
|
1351
|
-
const upb_MiniTableField field = {9,
|
1352
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1421
|
+
const upb_MiniTableField field = {9, 17, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1422
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1423
|
+
&default_val, &ret);
|
1353
1424
|
return ret;
|
1354
1425
|
}
|
1355
1426
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_delay_injected(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1356
|
-
const upb_MiniTableField field = {10,
|
1357
|
-
|
1427
|
+
const upb_MiniTableField field = {10, 18, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1428
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1358
1429
|
}
|
1359
1430
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_delay_injected(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1360
1431
|
bool default_val = false;
|
1361
1432
|
bool ret;
|
1362
|
-
const upb_MiniTableField field = {10,
|
1363
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1433
|
+
const upb_MiniTableField field = {10, 18, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1434
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1435
|
+
&default_val, &ret);
|
1364
1436
|
return ret;
|
1365
1437
|
}
|
1366
1438
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_fault_injected(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1367
|
-
const upb_MiniTableField field = {11,
|
1368
|
-
|
1439
|
+
const upb_MiniTableField field = {11, 19, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1440
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1369
1441
|
}
|
1370
1442
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_fault_injected(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1371
1443
|
bool default_val = false;
|
1372
1444
|
bool ret;
|
1373
|
-
const upb_MiniTableField field = {11,
|
1374
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1445
|
+
const upb_MiniTableField field = {11, 19, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1446
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1447
|
+
&default_val, &ret);
|
1375
1448
|
return ret;
|
1376
1449
|
}
|
1377
1450
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_rate_limited(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1378
|
-
const upb_MiniTableField field = {12,
|
1379
|
-
|
1451
|
+
const upb_MiniTableField field = {12, 20, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1452
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1380
1453
|
}
|
1381
1454
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_rate_limited(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1382
1455
|
bool default_val = false;
|
1383
1456
|
bool ret;
|
1384
|
-
const upb_MiniTableField field = {12,
|
1385
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1457
|
+
const upb_MiniTableField field = {12, 20, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1458
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1459
|
+
&default_val, &ret);
|
1386
1460
|
return ret;
|
1387
1461
|
}
|
1388
1462
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_unauthorized_details(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1389
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1390
|
-
|
1463
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1464
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1391
1465
|
}
|
1392
1466
|
UPB_INLINE const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data_accesslog_v3_ResponseFlags_unauthorized_details(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1393
1467
|
const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* default_val = NULL;
|
1394
1468
|
const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* ret;
|
1395
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1396
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1469
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1470
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1471
|
+
&default_val, &ret);
|
1397
1472
|
return ret;
|
1398
1473
|
}
|
1399
1474
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_has_unauthorized_details(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1400
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1401
|
-
return
|
1475
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1476
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1402
1477
|
}
|
1403
1478
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_rate_limit_service_error(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1404
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
1405
|
-
|
1479
|
+
const upb_MiniTableField field = {14, UPB_SIZE(28, 21), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1480
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1406
1481
|
}
|
1407
1482
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_rate_limit_service_error(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1408
1483
|
bool default_val = false;
|
1409
1484
|
bool ret;
|
1410
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
1411
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1485
|
+
const upb_MiniTableField field = {14, UPB_SIZE(28, 21), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1486
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1487
|
+
&default_val, &ret);
|
1412
1488
|
return ret;
|
1413
1489
|
}
|
1414
1490
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_downstream_connection_termination(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1415
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
1416
|
-
|
1491
|
+
const upb_MiniTableField field = {15, UPB_SIZE(29, 22), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1492
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1417
1493
|
}
|
1418
1494
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_downstream_connection_termination(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1419
1495
|
bool default_val = false;
|
1420
1496
|
bool ret;
|
1421
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
1422
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1497
|
+
const upb_MiniTableField field = {15, UPB_SIZE(29, 22), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1498
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1499
|
+
&default_val, &ret);
|
1423
1500
|
return ret;
|
1424
1501
|
}
|
1425
1502
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_retry_limit_exceeded(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1426
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
1427
|
-
|
1503
|
+
const upb_MiniTableField field = {16, UPB_SIZE(30, 23), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1504
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1428
1505
|
}
|
1429
1506
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_retry_limit_exceeded(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1430
1507
|
bool default_val = false;
|
1431
1508
|
bool ret;
|
1432
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
1433
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1509
|
+
const upb_MiniTableField field = {16, UPB_SIZE(30, 23), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1510
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1511
|
+
&default_val, &ret);
|
1434
1512
|
return ret;
|
1435
1513
|
}
|
1436
1514
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_stream_idle_timeout(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1437
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
1438
|
-
|
1515
|
+
const upb_MiniTableField field = {17, UPB_SIZE(31, 24), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1516
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1439
1517
|
}
|
1440
1518
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_stream_idle_timeout(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1441
1519
|
bool default_val = false;
|
1442
1520
|
bool ret;
|
1443
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
1444
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1521
|
+
const upb_MiniTableField field = {17, UPB_SIZE(31, 24), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1522
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1523
|
+
&default_val, &ret);
|
1445
1524
|
return ret;
|
1446
1525
|
}
|
1447
1526
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_invalid_envoy_request_headers(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1448
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
1449
|
-
|
1527
|
+
const upb_MiniTableField field = {18, UPB_SIZE(32, 25), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1528
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1450
1529
|
}
|
1451
1530
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_invalid_envoy_request_headers(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1452
1531
|
bool default_val = false;
|
1453
1532
|
bool ret;
|
1454
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
1455
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1533
|
+
const upb_MiniTableField field = {18, UPB_SIZE(32, 25), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1534
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1535
|
+
&default_val, &ret);
|
1456
1536
|
return ret;
|
1457
1537
|
}
|
1458
1538
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_downstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1459
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
1460
|
-
|
1539
|
+
const upb_MiniTableField field = {19, UPB_SIZE(33, 26), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1540
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1461
1541
|
}
|
1462
1542
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_downstream_protocol_error(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1463
1543
|
bool default_val = false;
|
1464
1544
|
bool ret;
|
1465
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
1466
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1545
|
+
const upb_MiniTableField field = {19, UPB_SIZE(33, 26), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1546
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1547
|
+
&default_val, &ret);
|
1467
1548
|
return ret;
|
1468
1549
|
}
|
1469
1550
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_max_stream_duration_reached(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1470
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
1471
|
-
|
1551
|
+
const upb_MiniTableField field = {20, UPB_SIZE(34, 27), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1552
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1472
1553
|
}
|
1473
1554
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_max_stream_duration_reached(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1474
1555
|
bool default_val = false;
|
1475
1556
|
bool ret;
|
1476
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
1477
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1557
|
+
const upb_MiniTableField field = {20, UPB_SIZE(34, 27), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1558
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1559
|
+
&default_val, &ret);
|
1478
1560
|
return ret;
|
1479
1561
|
}
|
1480
1562
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_response_from_cache_filter(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1481
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
1482
|
-
|
1563
|
+
const upb_MiniTableField field = {21, UPB_SIZE(35, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1564
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1483
1565
|
}
|
1484
1566
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_response_from_cache_filter(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1485
1567
|
bool default_val = false;
|
1486
1568
|
bool ret;
|
1487
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
1488
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1569
|
+
const upb_MiniTableField field = {21, UPB_SIZE(35, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1570
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1571
|
+
&default_val, &ret);
|
1489
1572
|
return ret;
|
1490
1573
|
}
|
1491
1574
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_no_filter_config_found(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1492
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
1493
|
-
|
1575
|
+
const upb_MiniTableField field = {22, UPB_SIZE(36, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1576
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1494
1577
|
}
|
1495
1578
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_no_filter_config_found(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1496
1579
|
bool default_val = false;
|
1497
1580
|
bool ret;
|
1498
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
1499
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1581
|
+
const upb_MiniTableField field = {22, UPB_SIZE(36, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1582
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1583
|
+
&default_val, &ret);
|
1500
1584
|
return ret;
|
1501
1585
|
}
|
1502
1586
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_duration_timeout(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1503
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
1504
|
-
|
1587
|
+
const upb_MiniTableField field = {23, UPB_SIZE(37, 30), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1588
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1505
1589
|
}
|
1506
1590
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_duration_timeout(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1507
1591
|
bool default_val = false;
|
1508
1592
|
bool ret;
|
1509
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
1510
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1593
|
+
const upb_MiniTableField field = {23, UPB_SIZE(37, 30), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1594
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1595
|
+
&default_val, &ret);
|
1511
1596
|
return ret;
|
1512
1597
|
}
|
1513
1598
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1514
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
1515
|
-
|
1599
|
+
const upb_MiniTableField field = {24, UPB_SIZE(38, 31), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1600
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1516
1601
|
}
|
1517
1602
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_protocol_error(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1518
1603
|
bool default_val = false;
|
1519
1604
|
bool ret;
|
1520
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
1521
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1605
|
+
const upb_MiniTableField field = {24, UPB_SIZE(38, 31), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1606
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1607
|
+
&default_val, &ret);
|
1522
1608
|
return ret;
|
1523
1609
|
}
|
1524
1610
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_no_cluster_found(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1525
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
1526
|
-
|
1611
|
+
const upb_MiniTableField field = {25, UPB_SIZE(39, 32), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1612
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1527
1613
|
}
|
1528
1614
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_no_cluster_found(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1529
1615
|
bool default_val = false;
|
1530
1616
|
bool ret;
|
1531
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
1532
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1617
|
+
const upb_MiniTableField field = {25, UPB_SIZE(39, 32), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1618
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1619
|
+
&default_val, &ret);
|
1533
1620
|
return ret;
|
1534
1621
|
}
|
1535
1622
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_overload_manager(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1536
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
1537
|
-
|
1623
|
+
const upb_MiniTableField field = {26, UPB_SIZE(40, 33), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1624
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1538
1625
|
}
|
1539
1626
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_overload_manager(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1540
1627
|
bool default_val = false;
|
1541
1628
|
bool ret;
|
1542
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
1543
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1629
|
+
const upb_MiniTableField field = {26, UPB_SIZE(40, 33), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1630
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1631
|
+
&default_val, &ret);
|
1544
1632
|
return ret;
|
1545
1633
|
}
|
1546
1634
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_dns_resolution_failure(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1547
|
-
const upb_MiniTableField field = {27, UPB_SIZE(
|
1548
|
-
|
1635
|
+
const upb_MiniTableField field = {27, UPB_SIZE(41, 34), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1636
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1549
1637
|
}
|
1550
1638
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_dns_resolution_failure(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1551
1639
|
bool default_val = false;
|
1552
1640
|
bool ret;
|
1553
|
-
const upb_MiniTableField field = {27, UPB_SIZE(
|
1554
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1641
|
+
const upb_MiniTableField field = {27, UPB_SIZE(41, 34), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1642
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1643
|
+
&default_val, &ret);
|
1555
1644
|
return ret;
|
1556
1645
|
}
|
1557
1646
|
|
1558
1647
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_failed_local_healthcheck(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1559
|
-
const upb_MiniTableField field = {1,
|
1560
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1648
|
+
const upb_MiniTableField field = {1, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1649
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1561
1650
|
}
|
1562
1651
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_no_healthy_upstream(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1563
|
-
const upb_MiniTableField field = {2,
|
1564
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1652
|
+
const upb_MiniTableField field = {2, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1653
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1565
1654
|
}
|
1566
1655
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_request_timeout(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1567
|
-
const upb_MiniTableField field = {3,
|
1568
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1656
|
+
const upb_MiniTableField field = {3, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1657
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1569
1658
|
}
|
1570
1659
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_local_reset(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1571
|
-
const upb_MiniTableField field = {4,
|
1572
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1660
|
+
const upb_MiniTableField field = {4, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1661
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1573
1662
|
}
|
1574
1663
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_remote_reset(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1575
|
-
const upb_MiniTableField field = {5,
|
1576
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1664
|
+
const upb_MiniTableField field = {5, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1665
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1577
1666
|
}
|
1578
1667
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_connection_failure(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1579
|
-
const upb_MiniTableField field = {6,
|
1580
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1668
|
+
const upb_MiniTableField field = {6, 14, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1669
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1581
1670
|
}
|
1582
1671
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_connection_termination(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1583
|
-
const upb_MiniTableField field = {7,
|
1584
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1672
|
+
const upb_MiniTableField field = {7, 15, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1673
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1585
1674
|
}
|
1586
1675
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_overflow(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1587
|
-
const upb_MiniTableField field = {8,
|
1588
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1676
|
+
const upb_MiniTableField field = {8, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1677
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1589
1678
|
}
|
1590
1679
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_no_route_found(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1591
|
-
const upb_MiniTableField field = {9,
|
1592
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1680
|
+
const upb_MiniTableField field = {9, 17, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1681
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1593
1682
|
}
|
1594
1683
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_delay_injected(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1595
|
-
const upb_MiniTableField field = {10,
|
1596
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1684
|
+
const upb_MiniTableField field = {10, 18, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1685
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1597
1686
|
}
|
1598
1687
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_fault_injected(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1599
|
-
const upb_MiniTableField field = {11,
|
1600
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1688
|
+
const upb_MiniTableField field = {11, 19, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1689
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1601
1690
|
}
|
1602
1691
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_rate_limited(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1603
|
-
const upb_MiniTableField field = {12,
|
1604
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1692
|
+
const upb_MiniTableField field = {12, 20, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1693
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1605
1694
|
}
|
1606
1695
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_unauthorized_details(envoy_data_accesslog_v3_ResponseFlags *msg, envoy_data_accesslog_v3_ResponseFlags_Unauthorized* value) {
|
1607
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1608
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1696
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1697
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1609
1698
|
}
|
1610
1699
|
UPB_INLINE struct envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data_accesslog_v3_ResponseFlags_mutable_unauthorized_details(envoy_data_accesslog_v3_ResponseFlags* msg, upb_Arena* arena) {
|
1611
1700
|
struct envoy_data_accesslog_v3_ResponseFlags_Unauthorized* sub = (struct envoy_data_accesslog_v3_ResponseFlags_Unauthorized*)envoy_data_accesslog_v3_ResponseFlags_unauthorized_details(msg);
|
@@ -1616,60 +1705,60 @@ UPB_INLINE struct envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data
|
|
1616
1705
|
return sub;
|
1617
1706
|
}
|
1618
1707
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_rate_limit_service_error(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1619
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
1620
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1708
|
+
const upb_MiniTableField field = {14, UPB_SIZE(28, 21), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1709
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1621
1710
|
}
|
1622
1711
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_downstream_connection_termination(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1623
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
1624
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1712
|
+
const upb_MiniTableField field = {15, UPB_SIZE(29, 22), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1713
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1625
1714
|
}
|
1626
1715
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_retry_limit_exceeded(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1627
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
1628
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1716
|
+
const upb_MiniTableField field = {16, UPB_SIZE(30, 23), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1717
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1629
1718
|
}
|
1630
1719
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_stream_idle_timeout(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1631
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
1632
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1720
|
+
const upb_MiniTableField field = {17, UPB_SIZE(31, 24), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1721
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1633
1722
|
}
|
1634
1723
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_invalid_envoy_request_headers(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1635
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
1636
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1724
|
+
const upb_MiniTableField field = {18, UPB_SIZE(32, 25), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1725
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1637
1726
|
}
|
1638
1727
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_downstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1639
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
1640
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1728
|
+
const upb_MiniTableField field = {19, UPB_SIZE(33, 26), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1729
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1641
1730
|
}
|
1642
1731
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_max_stream_duration_reached(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1643
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
1644
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1732
|
+
const upb_MiniTableField field = {20, UPB_SIZE(34, 27), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1733
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1645
1734
|
}
|
1646
1735
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_response_from_cache_filter(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1647
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
1648
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1736
|
+
const upb_MiniTableField field = {21, UPB_SIZE(35, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1737
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1649
1738
|
}
|
1650
1739
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_no_filter_config_found(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1651
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
1652
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1740
|
+
const upb_MiniTableField field = {22, UPB_SIZE(36, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1741
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1653
1742
|
}
|
1654
1743
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_duration_timeout(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1655
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
1656
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1744
|
+
const upb_MiniTableField field = {23, UPB_SIZE(37, 30), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1745
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1657
1746
|
}
|
1658
1747
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1659
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
1660
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1748
|
+
const upb_MiniTableField field = {24, UPB_SIZE(38, 31), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1749
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1661
1750
|
}
|
1662
1751
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_no_cluster_found(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1663
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
1664
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1752
|
+
const upb_MiniTableField field = {25, UPB_SIZE(39, 32), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1753
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1665
1754
|
}
|
1666
1755
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_overload_manager(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1667
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
1668
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1756
|
+
const upb_MiniTableField field = {26, UPB_SIZE(40, 33), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1757
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1669
1758
|
}
|
1670
1759
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_dns_resolution_failure(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1671
|
-
const upb_MiniTableField field = {27, UPB_SIZE(
|
1672
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1760
|
+
const upb_MiniTableField field = {27, UPB_SIZE(41, 34), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1761
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1673
1762
|
}
|
1674
1763
|
|
1675
1764
|
/* envoy.data.accesslog.v3.ResponseFlags.Unauthorized */
|
@@ -1680,7 +1769,8 @@ UPB_INLINE envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data_access
|
|
1680
1769
|
UPB_INLINE envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data_accesslog_v3_ResponseFlags_Unauthorized_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1681
1770
|
envoy_data_accesslog_v3_ResponseFlags_Unauthorized* ret = envoy_data_accesslog_v3_ResponseFlags_Unauthorized_new(arena);
|
1682
1771
|
if (!ret) return NULL;
|
1683
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, NULL, 0, arena) !=
|
1772
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, NULL, 0, arena) !=
|
1773
|
+
kUpb_DecodeStatus_Ok) {
|
1684
1774
|
return NULL;
|
1685
1775
|
}
|
1686
1776
|
return ret;
|
@@ -1690,38 +1780,39 @@ UPB_INLINE envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data_access
|
|
1690
1780
|
int options, upb_Arena* arena) {
|
1691
1781
|
envoy_data_accesslog_v3_ResponseFlags_Unauthorized* ret = envoy_data_accesslog_v3_ResponseFlags_Unauthorized_new(arena);
|
1692
1782
|
if (!ret) return NULL;
|
1693
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, extreg, options,
|
1694
|
-
|
1783
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, extreg, options,
|
1784
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1695
1785
|
return NULL;
|
1696
1786
|
}
|
1697
1787
|
return ret;
|
1698
1788
|
}
|
1699
1789
|
UPB_INLINE char* envoy_data_accesslog_v3_ResponseFlags_Unauthorized_serialize(const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* msg, upb_Arena* arena, size_t* len) {
|
1700
1790
|
char* ptr;
|
1701
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, 0, arena, &ptr, len);
|
1791
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, 0, arena, &ptr, len);
|
1702
1792
|
return ptr;
|
1703
1793
|
}
|
1704
1794
|
UPB_INLINE char* envoy_data_accesslog_v3_ResponseFlags_Unauthorized_serialize_ex(const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* msg, int options,
|
1705
1795
|
upb_Arena* arena, size_t* len) {
|
1706
1796
|
char* ptr;
|
1707
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, options, arena, &ptr, len);
|
1797
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init, options, arena, &ptr, len);
|
1708
1798
|
return ptr;
|
1709
1799
|
}
|
1710
1800
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_Unauthorized_clear_reason(envoy_data_accesslog_v3_ResponseFlags_Unauthorized* msg) {
|
1711
|
-
const upb_MiniTableField field = {1,
|
1712
|
-
|
1801
|
+
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1802
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1713
1803
|
}
|
1714
1804
|
UPB_INLINE int32_t envoy_data_accesslog_v3_ResponseFlags_Unauthorized_reason(const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* msg) {
|
1715
1805
|
int32_t default_val = 0;
|
1716
1806
|
int32_t ret;
|
1717
|
-
const upb_MiniTableField field = {1,
|
1718
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1807
|
+
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1808
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1809
|
+
&default_val, &ret);
|
1719
1810
|
return ret;
|
1720
1811
|
}
|
1721
1812
|
|
1722
1813
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_Unauthorized_set_reason(envoy_data_accesslog_v3_ResponseFlags_Unauthorized *msg, int32_t value) {
|
1723
|
-
const upb_MiniTableField field = {1,
|
1724
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1814
|
+
const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1815
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1725
1816
|
}
|
1726
1817
|
|
1727
1818
|
/* envoy.data.accesslog.v3.TLSProperties */
|
@@ -1732,7 +1823,8 @@ UPB_INLINE envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3_TLSPro
|
|
1732
1823
|
UPB_INLINE envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3_TLSProperties_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1733
1824
|
envoy_data_accesslog_v3_TLSProperties* ret = envoy_data_accesslog_v3_TLSProperties_new(arena);
|
1734
1825
|
if (!ret) return NULL;
|
1735
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TLSProperties_msg_init, NULL, 0, arena) !=
|
1826
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TLSProperties_msg_init, NULL, 0, arena) !=
|
1827
|
+
kUpb_DecodeStatus_Ok) {
|
1736
1828
|
return NULL;
|
1737
1829
|
}
|
1738
1830
|
return ret;
|
@@ -1742,120 +1834,127 @@ UPB_INLINE envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3_TLSPro
|
|
1742
1834
|
int options, upb_Arena* arena) {
|
1743
1835
|
envoy_data_accesslog_v3_TLSProperties* ret = envoy_data_accesslog_v3_TLSProperties_new(arena);
|
1744
1836
|
if (!ret) return NULL;
|
1745
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TLSProperties_msg_init, extreg, options,
|
1746
|
-
|
1837
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TLSProperties_msg_init, extreg, options,
|
1838
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1747
1839
|
return NULL;
|
1748
1840
|
}
|
1749
1841
|
return ret;
|
1750
1842
|
}
|
1751
1843
|
UPB_INLINE char* envoy_data_accesslog_v3_TLSProperties_serialize(const envoy_data_accesslog_v3_TLSProperties* msg, upb_Arena* arena, size_t* len) {
|
1752
1844
|
char* ptr;
|
1753
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TLSProperties_msg_init, 0, arena, &ptr, len);
|
1845
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TLSProperties_msg_init, 0, arena, &ptr, len);
|
1754
1846
|
return ptr;
|
1755
1847
|
}
|
1756
1848
|
UPB_INLINE char* envoy_data_accesslog_v3_TLSProperties_serialize_ex(const envoy_data_accesslog_v3_TLSProperties* msg, int options,
|
1757
1849
|
upb_Arena* arena, size_t* len) {
|
1758
1850
|
char* ptr;
|
1759
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TLSProperties_msg_init, options, arena, &ptr, len);
|
1851
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TLSProperties_msg_init, options, arena, &ptr, len);
|
1760
1852
|
return ptr;
|
1761
1853
|
}
|
1762
1854
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_tls_version(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1763
|
-
const upb_MiniTableField field = {1,
|
1764
|
-
|
1855
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1856
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1765
1857
|
}
|
1766
1858
|
UPB_INLINE int32_t envoy_data_accesslog_v3_TLSProperties_tls_version(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1767
1859
|
int32_t default_val = 0;
|
1768
1860
|
int32_t ret;
|
1769
|
-
const upb_MiniTableField field = {1,
|
1770
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1861
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1862
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1863
|
+
&default_val, &ret);
|
1771
1864
|
return ret;
|
1772
1865
|
}
|
1773
1866
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_tls_cipher_suite(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1774
|
-
const upb_MiniTableField field = {2,
|
1775
|
-
|
1867
|
+
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1868
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1776
1869
|
}
|
1777
1870
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_TLSProperties_tls_cipher_suite(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1778
1871
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
1779
1872
|
const struct google_protobuf_UInt32Value* ret;
|
1780
|
-
const upb_MiniTableField field = {2,
|
1781
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1873
|
+
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1874
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1875
|
+
&default_val, &ret);
|
1782
1876
|
return ret;
|
1783
1877
|
}
|
1784
1878
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_has_tls_cipher_suite(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1785
|
-
const upb_MiniTableField field = {2,
|
1786
|
-
return
|
1879
|
+
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1880
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1787
1881
|
}
|
1788
1882
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_tls_sni_hostname(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1789
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1790
|
-
|
1883
|
+
const upb_MiniTableField field = {3, UPB_SIZE(28, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1884
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1791
1885
|
}
|
1792
1886
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_tls_sni_hostname(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1793
1887
|
upb_StringView default_val = upb_StringView_FromString("");
|
1794
1888
|
upb_StringView ret;
|
1795
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1796
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1889
|
+
const upb_MiniTableField field = {3, UPB_SIZE(28, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1890
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1891
|
+
&default_val, &ret);
|
1797
1892
|
return ret;
|
1798
1893
|
}
|
1799
1894
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_local_certificate_properties(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1800
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1801
|
-
|
1895
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1896
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1802
1897
|
}
|
1803
1898
|
UPB_INLINE const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_data_accesslog_v3_TLSProperties_local_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1804
1899
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* default_val = NULL;
|
1805
1900
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* ret;
|
1806
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1807
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1901
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1902
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1903
|
+
&default_val, &ret);
|
1808
1904
|
return ret;
|
1809
1905
|
}
|
1810
1906
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_has_local_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1811
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1812
|
-
return
|
1907
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1908
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1813
1909
|
}
|
1814
1910
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_peer_certificate_properties(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1815
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1816
|
-
|
1911
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 48), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1912
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1817
1913
|
}
|
1818
1914
|
UPB_INLINE const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_data_accesslog_v3_TLSProperties_peer_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1819
1915
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* default_val = NULL;
|
1820
1916
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* ret;
|
1821
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1822
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1917
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 48), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1918
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1919
|
+
&default_val, &ret);
|
1823
1920
|
return ret;
|
1824
1921
|
}
|
1825
1922
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_has_peer_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1826
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1827
|
-
return
|
1923
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 48), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1924
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1828
1925
|
}
|
1829
1926
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_tls_session_id(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1830
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
1831
|
-
|
1927
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1928
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1832
1929
|
}
|
1833
1930
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_tls_session_id(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1834
1931
|
upb_StringView default_val = upb_StringView_FromString("");
|
1835
1932
|
upb_StringView ret;
|
1836
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
1837
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1933
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1934
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1935
|
+
&default_val, &ret);
|
1838
1936
|
return ret;
|
1839
1937
|
}
|
1840
1938
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_ja3_fingerprint(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1841
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
1842
|
-
|
1939
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1940
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1843
1941
|
}
|
1844
1942
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_ja3_fingerprint(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1845
1943
|
upb_StringView default_val = upb_StringView_FromString("");
|
1846
1944
|
upb_StringView ret;
|
1847
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
1848
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
1945
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1946
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1947
|
+
&default_val, &ret);
|
1849
1948
|
return ret;
|
1850
1949
|
}
|
1851
1950
|
|
1852
1951
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_version(envoy_data_accesslog_v3_TLSProperties *msg, int32_t value) {
|
1853
|
-
const upb_MiniTableField field = {1,
|
1854
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1952
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1953
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1855
1954
|
}
|
1856
1955
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_cipher_suite(envoy_data_accesslog_v3_TLSProperties *msg, struct google_protobuf_UInt32Value* value) {
|
1857
|
-
const upb_MiniTableField field = {2,
|
1858
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1956
|
+
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1957
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1859
1958
|
}
|
1860
1959
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_TLSProperties_mutable_tls_cipher_suite(envoy_data_accesslog_v3_TLSProperties* msg, upb_Arena* arena) {
|
1861
1960
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_data_accesslog_v3_TLSProperties_tls_cipher_suite(msg);
|
@@ -1866,12 +1965,12 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_TLSProper
|
|
1866
1965
|
return sub;
|
1867
1966
|
}
|
1868
1967
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_sni_hostname(envoy_data_accesslog_v3_TLSProperties *msg, upb_StringView value) {
|
1869
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1870
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1968
|
+
const upb_MiniTableField field = {3, UPB_SIZE(28, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1969
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1871
1970
|
}
|
1872
1971
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_local_certificate_properties(envoy_data_accesslog_v3_TLSProperties *msg, envoy_data_accesslog_v3_TLSProperties_CertificateProperties* value) {
|
1873
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
1874
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1972
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1973
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1875
1974
|
}
|
1876
1975
|
UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_data_accesslog_v3_TLSProperties_mutable_local_certificate_properties(envoy_data_accesslog_v3_TLSProperties* msg, upb_Arena* arena) {
|
1877
1976
|
struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* sub = (struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties*)envoy_data_accesslog_v3_TLSProperties_local_certificate_properties(msg);
|
@@ -1882,8 +1981,8 @@ UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* e
|
|
1882
1981
|
return sub;
|
1883
1982
|
}
|
1884
1983
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_peer_certificate_properties(envoy_data_accesslog_v3_TLSProperties *msg, envoy_data_accesslog_v3_TLSProperties_CertificateProperties* value) {
|
1885
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
1886
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1984
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 48), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1985
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1887
1986
|
}
|
1888
1987
|
UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_data_accesslog_v3_TLSProperties_mutable_peer_certificate_properties(envoy_data_accesslog_v3_TLSProperties* msg, upb_Arena* arena) {
|
1889
1988
|
struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* sub = (struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties*)envoy_data_accesslog_v3_TLSProperties_peer_certificate_properties(msg);
|
@@ -1894,12 +1993,12 @@ UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* e
|
|
1894
1993
|
return sub;
|
1895
1994
|
}
|
1896
1995
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_session_id(envoy_data_accesslog_v3_TLSProperties *msg, upb_StringView value) {
|
1897
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
1898
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
1996
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1997
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1899
1998
|
}
|
1900
1999
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_ja3_fingerprint(envoy_data_accesslog_v3_TLSProperties *msg, upb_StringView value) {
|
1901
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
1902
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2000
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2001
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
1903
2002
|
}
|
1904
2003
|
|
1905
2004
|
/* envoy.data.accesslog.v3.TLSProperties.CertificateProperties */
|
@@ -1910,7 +2009,8 @@ UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_da
|
|
1910
2009
|
UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_parse(const char* buf, size_t size, upb_Arena* arena) {
|
1911
2010
|
envoy_data_accesslog_v3_TLSProperties_CertificateProperties* ret = envoy_data_accesslog_v3_TLSProperties_CertificateProperties_new(arena);
|
1912
2011
|
if (!ret) return NULL;
|
1913
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, NULL, 0, arena) !=
|
2012
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, NULL, 0, arena) !=
|
2013
|
+
kUpb_DecodeStatus_Ok) {
|
1914
2014
|
return NULL;
|
1915
2015
|
}
|
1916
2016
|
return ret;
|
@@ -1920,116 +2020,117 @@ UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_da
|
|
1920
2020
|
int options, upb_Arena* arena) {
|
1921
2021
|
envoy_data_accesslog_v3_TLSProperties_CertificateProperties* ret = envoy_data_accesslog_v3_TLSProperties_CertificateProperties_new(arena);
|
1922
2022
|
if (!ret) return NULL;
|
1923
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, extreg, options,
|
1924
|
-
|
2023
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, extreg, options,
|
2024
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
1925
2025
|
return NULL;
|
1926
2026
|
}
|
1927
2027
|
return ret;
|
1928
2028
|
}
|
1929
2029
|
UPB_INLINE char* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_serialize(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, upb_Arena* arena, size_t* len) {
|
1930
2030
|
char* ptr;
|
1931
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, 0, arena, &ptr, len);
|
2031
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, 0, arena, &ptr, len);
|
1932
2032
|
return ptr;
|
1933
2033
|
}
|
1934
2034
|
UPB_INLINE char* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_serialize_ex(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, int options,
|
1935
2035
|
upb_Arena* arena, size_t* len) {
|
1936
2036
|
char* ptr;
|
1937
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, options, arena, &ptr, len);
|
2037
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init, options, arena, &ptr, len);
|
1938
2038
|
return ptr;
|
1939
2039
|
}
|
1940
2040
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_clear_subject_alt_name(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
1941
|
-
const upb_MiniTableField field = {1,
|
1942
|
-
|
2041
|
+
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)};
|
2042
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1943
2043
|
}
|
1944
2044
|
UPB_INLINE const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* const* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_subject_alt_name(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, size_t* size) {
|
1945
|
-
const upb_MiniTableField field = {1,
|
1946
|
-
const upb_Array* arr = upb_Message_GetArray(msg, &field);
|
2045
|
+
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)};
|
2046
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1947
2047
|
if (arr) {
|
1948
|
-
if (size) *size = arr->size;
|
1949
|
-
return (const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* const*)
|
2048
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2049
|
+
return (const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* const*)upb_Array_DataPtr(arr);
|
1950
2050
|
} else {
|
1951
2051
|
if (size) *size = 0;
|
1952
2052
|
return NULL;
|
1953
2053
|
}
|
1954
2054
|
}
|
1955
2055
|
UPB_INLINE const upb_Array* _envoy_data_accesslog_v3_TLSProperties_CertificateProperties_subject_alt_name_upb_array(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, size_t* size) {
|
1956
|
-
const upb_MiniTableField field = {1,
|
1957
|
-
const upb_Array* arr = upb_Message_GetArray(msg, &field);
|
2056
|
+
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)};
|
2057
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1958
2058
|
if (size) {
|
1959
|
-
*size = arr ? arr->size : 0;
|
2059
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1960
2060
|
}
|
1961
2061
|
return arr;
|
1962
2062
|
}
|
1963
|
-
UPB_INLINE upb_Array* _envoy_data_accesslog_v3_TLSProperties_CertificateProperties_subject_alt_name_mutable_upb_array(
|
1964
|
-
const upb_MiniTableField field = {1,
|
1965
|
-
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1966
|
-
|
2063
|
+
UPB_INLINE upb_Array* _envoy_data_accesslog_v3_TLSProperties_CertificateProperties_subject_alt_name_mutable_upb_array(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, size_t* size, upb_Arena* arena) {
|
2064
|
+
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)};
|
2065
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2066
|
+
&field, arena);
|
1967
2067
|
if (size) {
|
1968
|
-
*size = arr ? arr->size : 0;
|
2068
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
1969
2069
|
}
|
1970
2070
|
return arr;
|
1971
2071
|
}
|
1972
|
-
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_CertificateProperties_has_subject_alt_name(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
1973
|
-
size_t size;
|
1974
|
-
envoy_data_accesslog_v3_TLSProperties_CertificateProperties_subject_alt_name(msg, &size);
|
1975
|
-
return size != 0;
|
1976
|
-
}
|
1977
2072
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_clear_subject(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
1978
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1979
|
-
|
2073
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2074
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1980
2075
|
}
|
1981
2076
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_CertificateProperties_subject(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
1982
2077
|
upb_StringView default_val = upb_StringView_FromString("");
|
1983
2078
|
upb_StringView ret;
|
1984
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
1985
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2079
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2080
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2081
|
+
&default_val, &ret);
|
1986
2082
|
return ret;
|
1987
2083
|
}
|
1988
2084
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_clear_issuer(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
1989
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1990
|
-
|
2085
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2086
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1991
2087
|
}
|
1992
2088
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_CertificateProperties_issuer(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
1993
2089
|
upb_StringView default_val = upb_StringView_FromString("");
|
1994
2090
|
upb_StringView ret;
|
1995
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
1996
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2091
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2092
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2093
|
+
&default_val, &ret);
|
1997
2094
|
return ret;
|
1998
2095
|
}
|
1999
2096
|
|
2000
2097
|
UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName** envoy_data_accesslog_v3_TLSProperties_CertificateProperties_mutable_subject_alt_name(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, size_t* size) {
|
2001
|
-
upb_MiniTableField field = {1,
|
2002
|
-
upb_Array* arr = upb_Message_GetMutableArray(msg, &field);
|
2098
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2099
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2003
2100
|
if (arr) {
|
2004
|
-
if (size) *size = arr->size;
|
2005
|
-
return (envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName**)
|
2101
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
2102
|
+
return (envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName**)upb_Array_MutableDataPtr(arr);
|
2006
2103
|
} else {
|
2007
2104
|
if (size) *size = 0;
|
2008
2105
|
return NULL;
|
2009
2106
|
}
|
2010
2107
|
}
|
2011
2108
|
UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName** envoy_data_accesslog_v3_TLSProperties_CertificateProperties_resize_subject_alt_name(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, size_t size, upb_Arena* arena) {
|
2012
|
-
upb_MiniTableField field = {1,
|
2013
|
-
return (envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName**)upb_Message_ResizeArrayUninitialized(msg,
|
2109
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2110
|
+
return (envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2111
|
+
&field, size, arena);
|
2014
2112
|
}
|
2015
2113
|
UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_add_subject_alt_name(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg, upb_Arena* arena) {
|
2016
|
-
upb_MiniTableField field = {1,
|
2017
|
-
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2018
|
-
|
2114
|
+
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2115
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2116
|
+
UPB_UPCAST(msg), &field, arena);
|
2117
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
2118
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
2019
2119
|
return NULL;
|
2020
2120
|
}
|
2021
2121
|
struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* sub = (struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName*)_upb_Message_New(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, arena);
|
2022
2122
|
if (!arr || !sub) return NULL;
|
2023
|
-
_upb_Array_Set
|
2123
|
+
UPB_PRIVATE(_upb_Array_Set)
|
2124
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
2024
2125
|
return sub;
|
2025
2126
|
}
|
2026
2127
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_set_subject(envoy_data_accesslog_v3_TLSProperties_CertificateProperties *msg, upb_StringView value) {
|
2027
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2028
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2128
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2129
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2029
2130
|
}
|
2030
2131
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_set_issuer(envoy_data_accesslog_v3_TLSProperties_CertificateProperties *msg, upb_StringView value) {
|
2031
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
2032
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2132
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2133
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2033
2134
|
}
|
2034
2135
|
|
2035
2136
|
/* envoy.data.accesslog.v3.TLSProperties.CertificateProperties.SubjectAltName */
|
@@ -2040,7 +2141,8 @@ UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAl
|
|
2040
2141
|
UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2041
2142
|
envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* ret = envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_new(arena);
|
2042
2143
|
if (!ret) return NULL;
|
2043
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, NULL, 0, arena) !=
|
2144
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, NULL, 0, arena) !=
|
2145
|
+
kUpb_DecodeStatus_Ok) {
|
2044
2146
|
return NULL;
|
2045
2147
|
}
|
2046
2148
|
return ret;
|
@@ -2050,21 +2152,21 @@ UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAl
|
|
2050
2152
|
int options, upb_Arena* arena) {
|
2051
2153
|
envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* ret = envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_new(arena);
|
2052
2154
|
if (!ret) return NULL;
|
2053
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, extreg, options,
|
2054
|
-
|
2155
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, extreg, options,
|
2156
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2055
2157
|
return NULL;
|
2056
2158
|
}
|
2057
2159
|
return ret;
|
2058
2160
|
}
|
2059
2161
|
UPB_INLINE char* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_serialize(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg, upb_Arena* arena, size_t* len) {
|
2060
2162
|
char* ptr;
|
2061
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, 0, arena, &ptr, len);
|
2163
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, 0, arena, &ptr, len);
|
2062
2164
|
return ptr;
|
2063
2165
|
}
|
2064
2166
|
UPB_INLINE char* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_serialize_ex(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg, int options,
|
2065
2167
|
upb_Arena* arena, size_t* len) {
|
2066
2168
|
char* ptr;
|
2067
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, options, arena, &ptr, len);
|
2169
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init, options, arena, &ptr, len);
|
2068
2170
|
return ptr;
|
2069
2171
|
}
|
2070
2172
|
typedef enum {
|
@@ -2073,47 +2175,50 @@ typedef enum {
|
|
2073
2175
|
envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_san_NOT_SET = 0
|
2074
2176
|
} envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_san_oneofcases;
|
2075
2177
|
UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_san_oneofcases envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_san_case(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg) {
|
2076
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2077
|
-
return (envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_san_oneofcases)upb_Message_WhichOneofFieldNumber(
|
2178
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2179
|
+
return (envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_san_oneofcases)upb_Message_WhichOneofFieldNumber(
|
2180
|
+
UPB_UPCAST(msg), &field);
|
2078
2181
|
}
|
2079
2182
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_clear_uri(envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg) {
|
2080
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2081
|
-
|
2183
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2184
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2082
2185
|
}
|
2083
2186
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_uri(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg) {
|
2084
2187
|
upb_StringView default_val = upb_StringView_FromString("");
|
2085
2188
|
upb_StringView ret;
|
2086
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2087
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2189
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2190
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2191
|
+
&default_val, &ret);
|
2088
2192
|
return ret;
|
2089
2193
|
}
|
2090
2194
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_has_uri(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg) {
|
2091
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2092
|
-
return
|
2195
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2196
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2093
2197
|
}
|
2094
2198
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_clear_dns(envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg) {
|
2095
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2096
|
-
|
2199
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2200
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2097
2201
|
}
|
2098
2202
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_dns(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg) {
|
2099
2203
|
upb_StringView default_val = upb_StringView_FromString("");
|
2100
2204
|
upb_StringView ret;
|
2101
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2102
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2205
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2206
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2207
|
+
&default_val, &ret);
|
2103
2208
|
return ret;
|
2104
2209
|
}
|
2105
2210
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_has_dns(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName* msg) {
|
2106
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2107
|
-
return
|
2211
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2212
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2108
2213
|
}
|
2109
2214
|
|
2110
2215
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_set_uri(envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName *msg, upb_StringView value) {
|
2111
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2112
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2216
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2217
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2113
2218
|
}
|
2114
2219
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName_set_dns(envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName *msg, upb_StringView value) {
|
2115
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2116
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2220
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), -9, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2221
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2117
2222
|
}
|
2118
2223
|
|
2119
2224
|
/* envoy.data.accesslog.v3.HTTPRequestProperties */
|
@@ -2124,7 +2229,8 @@ UPB_INLINE envoy_data_accesslog_v3_HTTPRequestProperties* envoy_data_accesslog_v
|
|
2124
2229
|
UPB_INLINE envoy_data_accesslog_v3_HTTPRequestProperties* envoy_data_accesslog_v3_HTTPRequestProperties_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2125
2230
|
envoy_data_accesslog_v3_HTTPRequestProperties* ret = envoy_data_accesslog_v3_HTTPRequestProperties_new(arena);
|
2126
2231
|
if (!ret) return NULL;
|
2127
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, NULL, 0, arena) !=
|
2232
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, NULL, 0, arena) !=
|
2233
|
+
kUpb_DecodeStatus_Ok) {
|
2128
2234
|
return NULL;
|
2129
2235
|
}
|
2130
2236
|
return ret;
|
@@ -2134,218 +2240,240 @@ UPB_INLINE envoy_data_accesslog_v3_HTTPRequestProperties* envoy_data_accesslog_v
|
|
2134
2240
|
int options, upb_Arena* arena) {
|
2135
2241
|
envoy_data_accesslog_v3_HTTPRequestProperties* ret = envoy_data_accesslog_v3_HTTPRequestProperties_new(arena);
|
2136
2242
|
if (!ret) return NULL;
|
2137
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, extreg, options,
|
2138
|
-
|
2243
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, extreg, options,
|
2244
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2139
2245
|
return NULL;
|
2140
2246
|
}
|
2141
2247
|
return ret;
|
2142
2248
|
}
|
2143
2249
|
UPB_INLINE char* envoy_data_accesslog_v3_HTTPRequestProperties_serialize(const envoy_data_accesslog_v3_HTTPRequestProperties* msg, upb_Arena* arena, size_t* len) {
|
2144
2250
|
char* ptr;
|
2145
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, 0, arena, &ptr, len);
|
2251
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, 0, arena, &ptr, len);
|
2146
2252
|
return ptr;
|
2147
2253
|
}
|
2148
2254
|
UPB_INLINE char* envoy_data_accesslog_v3_HTTPRequestProperties_serialize_ex(const envoy_data_accesslog_v3_HTTPRequestProperties* msg, int options,
|
2149
2255
|
upb_Arena* arena, size_t* len) {
|
2150
2256
|
char* ptr;
|
2151
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, options, arena, &ptr, len);
|
2257
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__HTTPRequestProperties_msg_init, options, arena, &ptr, len);
|
2152
2258
|
return ptr;
|
2153
2259
|
}
|
2154
2260
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_request_method(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2155
|
-
const upb_MiniTableField field = {1,
|
2156
|
-
|
2261
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2262
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2157
2263
|
}
|
2158
2264
|
UPB_INLINE int32_t envoy_data_accesslog_v3_HTTPRequestProperties_request_method(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2159
2265
|
int32_t default_val = 0;
|
2160
2266
|
int32_t ret;
|
2161
|
-
const upb_MiniTableField field = {1,
|
2162
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2267
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2268
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2269
|
+
&default_val, &ret);
|
2163
2270
|
return ret;
|
2164
2271
|
}
|
2165
2272
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_scheme(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2166
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2167
|
-
|
2273
|
+
const upb_MiniTableField field = {2, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2274
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2168
2275
|
}
|
2169
2276
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_scheme(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2170
2277
|
upb_StringView default_val = upb_StringView_FromString("");
|
2171
2278
|
upb_StringView ret;
|
2172
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2173
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2279
|
+
const upb_MiniTableField field = {2, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2280
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2281
|
+
&default_val, &ret);
|
2174
2282
|
return ret;
|
2175
2283
|
}
|
2176
2284
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_authority(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2177
|
-
const upb_MiniTableField field = {3,
|
2178
|
-
|
2285
|
+
const upb_MiniTableField field = {3, 32, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2286
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2179
2287
|
}
|
2180
2288
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_authority(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2181
2289
|
upb_StringView default_val = upb_StringView_FromString("");
|
2182
2290
|
upb_StringView ret;
|
2183
|
-
const upb_MiniTableField field = {3,
|
2184
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2291
|
+
const upb_MiniTableField field = {3, 32, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2292
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2293
|
+
&default_val, &ret);
|
2185
2294
|
return ret;
|
2186
2295
|
}
|
2187
2296
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_port(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2188
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2189
|
-
|
2297
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2298
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2190
2299
|
}
|
2191
2300
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPRequestProperties_port(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2192
2301
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
2193
2302
|
const struct google_protobuf_UInt32Value* ret;
|
2194
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2195
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2303
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2304
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2305
|
+
&default_val, &ret);
|
2196
2306
|
return ret;
|
2197
2307
|
}
|
2198
2308
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_has_port(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2199
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2200
|
-
return
|
2309
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2310
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2201
2311
|
}
|
2202
2312
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_path(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2203
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2204
|
-
|
2313
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2314
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2205
2315
|
}
|
2206
2316
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_path(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2207
2317
|
upb_StringView default_val = upb_StringView_FromString("");
|
2208
2318
|
upb_StringView ret;
|
2209
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2210
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2319
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2320
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2321
|
+
&default_val, &ret);
|
2211
2322
|
return ret;
|
2212
2323
|
}
|
2213
2324
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_user_agent(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2214
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2215
|
-
|
2325
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2326
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2216
2327
|
}
|
2217
2328
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_user_agent(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2218
2329
|
upb_StringView default_val = upb_StringView_FromString("");
|
2219
2330
|
upb_StringView ret;
|
2220
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2221
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2331
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2332
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2333
|
+
&default_val, &ret);
|
2222
2334
|
return ret;
|
2223
2335
|
}
|
2224
2336
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_referer(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2225
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
2226
|
-
|
2337
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2338
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2227
2339
|
}
|
2228
2340
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_referer(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2229
2341
|
upb_StringView default_val = upb_StringView_FromString("");
|
2230
2342
|
upb_StringView ret;
|
2231
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
2232
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2343
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2344
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2345
|
+
&default_val, &ret);
|
2233
2346
|
return ret;
|
2234
2347
|
}
|
2235
2348
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_forwarded_for(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2236
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
2237
|
-
|
2349
|
+
const upb_MiniTableField field = {8, UPB_SIZE(64, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2350
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2238
2351
|
}
|
2239
2352
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_forwarded_for(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2240
2353
|
upb_StringView default_val = upb_StringView_FromString("");
|
2241
2354
|
upb_StringView ret;
|
2242
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
2243
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2355
|
+
const upb_MiniTableField field = {8, UPB_SIZE(64, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2356
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2357
|
+
&default_val, &ret);
|
2244
2358
|
return ret;
|
2245
2359
|
}
|
2246
2360
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_request_id(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2247
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
2248
|
-
|
2361
|
+
const upb_MiniTableField field = {9, UPB_SIZE(72, 120), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2362
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2249
2363
|
}
|
2250
2364
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_request_id(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2251
2365
|
upb_StringView default_val = upb_StringView_FromString("");
|
2252
2366
|
upb_StringView ret;
|
2253
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
2254
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2367
|
+
const upb_MiniTableField field = {9, UPB_SIZE(72, 120), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2368
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2369
|
+
&default_val, &ret);
|
2255
2370
|
return ret;
|
2256
2371
|
}
|
2257
2372
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_original_path(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2258
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
2259
|
-
|
2373
|
+
const upb_MiniTableField field = {10, UPB_SIZE(80, 136), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2374
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2260
2375
|
}
|
2261
2376
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_original_path(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2262
2377
|
upb_StringView default_val = upb_StringView_FromString("");
|
2263
2378
|
upb_StringView ret;
|
2264
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
2265
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2379
|
+
const upb_MiniTableField field = {10, UPB_SIZE(80, 136), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2380
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2381
|
+
&default_val, &ret);
|
2266
2382
|
return ret;
|
2267
2383
|
}
|
2268
2384
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_request_headers_bytes(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2269
|
-
const upb_MiniTableField field = {11, UPB_SIZE(
|
2270
|
-
|
2385
|
+
const upb_MiniTableField field = {11, UPB_SIZE(88, 152), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2386
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2271
2387
|
}
|
2272
2388
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_bytes(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2273
2389
|
uint64_t default_val = (uint64_t)0ull;
|
2274
2390
|
uint64_t ret;
|
2275
|
-
const upb_MiniTableField field = {11, UPB_SIZE(
|
2276
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2391
|
+
const upb_MiniTableField field = {11, UPB_SIZE(88, 152), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2392
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2393
|
+
&default_val, &ret);
|
2277
2394
|
return ret;
|
2278
2395
|
}
|
2279
2396
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_request_body_bytes(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2280
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
2281
|
-
|
2397
|
+
const upb_MiniTableField field = {12, UPB_SIZE(96, 160), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2398
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2282
2399
|
}
|
2283
2400
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPRequestProperties_request_body_bytes(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2284
2401
|
uint64_t default_val = (uint64_t)0ull;
|
2285
2402
|
uint64_t ret;
|
2286
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
2287
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2403
|
+
const upb_MiniTableField field = {12, UPB_SIZE(96, 160), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2404
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2405
|
+
&default_val, &ret);
|
2288
2406
|
return ret;
|
2289
2407
|
}
|
2290
2408
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_request_headers(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2291
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2292
|
-
|
2409
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2410
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2293
2411
|
}
|
2294
2412
|
UPB_INLINE size_t envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_size(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2295
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2296
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2413
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2414
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2297
2415
|
return map ? _upb_Map_Size(map) : 0;
|
2298
2416
|
}
|
2299
2417
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_get(const envoy_data_accesslog_v3_HTTPRequestProperties* msg, upb_StringView key, upb_StringView* val) {
|
2300
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2301
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2418
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2419
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2302
2420
|
if (!map) return false;
|
2303
2421
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
2304
2422
|
}
|
2305
2423
|
UPB_INLINE const envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry* envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_next(const envoy_data_accesslog_v3_HTTPRequestProperties* msg, size_t* iter) {
|
2306
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2307
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2424
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2425
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2308
2426
|
if (!map) return NULL;
|
2309
2427
|
return (const envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry*)_upb_map_next(map, iter);
|
2310
2428
|
}
|
2429
|
+
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_upb_map(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2430
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2431
|
+
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2432
|
+
}
|
2433
|
+
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_mutable_upb_map(envoy_data_accesslog_v3_HTTPRequestProperties* msg, upb_Arena* a) {
|
2434
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2435
|
+
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
|
2436
|
+
}
|
2311
2437
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_upstream_header_bytes_sent(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2312
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
2313
|
-
|
2438
|
+
const upb_MiniTableField field = {14, UPB_SIZE(104, 176), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2439
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2314
2440
|
}
|
2315
2441
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPRequestProperties_upstream_header_bytes_sent(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2316
2442
|
uint64_t default_val = (uint64_t)0ull;
|
2317
2443
|
uint64_t ret;
|
2318
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
2319
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2444
|
+
const upb_MiniTableField field = {14, UPB_SIZE(104, 176), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2445
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2446
|
+
&default_val, &ret);
|
2320
2447
|
return ret;
|
2321
2448
|
}
|
2322
2449
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_downstream_header_bytes_received(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2323
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
2324
|
-
|
2450
|
+
const upb_MiniTableField field = {15, UPB_SIZE(112, 184), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2451
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2325
2452
|
}
|
2326
2453
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPRequestProperties_downstream_header_bytes_received(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2327
2454
|
uint64_t default_val = (uint64_t)0ull;
|
2328
2455
|
uint64_t ret;
|
2329
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
2330
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2456
|
+
const upb_MiniTableField field = {15, UPB_SIZE(112, 184), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2457
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2458
|
+
&default_val, &ret);
|
2331
2459
|
return ret;
|
2332
2460
|
}
|
2333
2461
|
|
2334
2462
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_request_method(envoy_data_accesslog_v3_HTTPRequestProperties *msg, int32_t value) {
|
2335
|
-
const upb_MiniTableField field = {1,
|
2336
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2463
|
+
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2464
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2337
2465
|
}
|
2338
2466
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_scheme(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2339
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
2340
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2467
|
+
const upb_MiniTableField field = {2, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2468
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2341
2469
|
}
|
2342
2470
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_authority(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2343
|
-
const upb_MiniTableField field = {3,
|
2344
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2471
|
+
const upb_MiniTableField field = {3, 32, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2472
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2345
2473
|
}
|
2346
2474
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_port(envoy_data_accesslog_v3_HTTPRequestProperties *msg, struct google_protobuf_UInt32Value* value) {
|
2347
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2348
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2475
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2476
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2349
2477
|
}
|
2350
2478
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPRequestProperties_mutable_port(envoy_data_accesslog_v3_HTTPRequestProperties* msg, upb_Arena* arena) {
|
2351
2479
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_data_accesslog_v3_HTTPRequestProperties_port(msg);
|
@@ -2356,68 +2484,69 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPReque
|
|
2356
2484
|
return sub;
|
2357
2485
|
}
|
2358
2486
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_path(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2359
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2360
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2487
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2488
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2361
2489
|
}
|
2362
2490
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_user_agent(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2363
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2364
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2491
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2492
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2365
2493
|
}
|
2366
2494
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_referer(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2367
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
2368
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2495
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2496
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2369
2497
|
}
|
2370
2498
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_forwarded_for(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2371
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
2372
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2499
|
+
const upb_MiniTableField field = {8, UPB_SIZE(64, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2500
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2373
2501
|
}
|
2374
2502
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_request_id(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2375
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
2376
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2503
|
+
const upb_MiniTableField field = {9, UPB_SIZE(72, 120), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2504
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2377
2505
|
}
|
2378
2506
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_original_path(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2379
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
2380
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2507
|
+
const upb_MiniTableField field = {10, UPB_SIZE(80, 136), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2508
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2381
2509
|
}
|
2382
2510
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_request_headers_bytes(envoy_data_accesslog_v3_HTTPRequestProperties *msg, uint64_t value) {
|
2383
|
-
const upb_MiniTableField field = {11, UPB_SIZE(
|
2384
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2511
|
+
const upb_MiniTableField field = {11, UPB_SIZE(88, 152), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2512
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2385
2513
|
}
|
2386
2514
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_request_body_bytes(envoy_data_accesslog_v3_HTTPRequestProperties *msg, uint64_t value) {
|
2387
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
2388
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2515
|
+
const upb_MiniTableField field = {12, UPB_SIZE(96, 160), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2516
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2389
2517
|
}
|
2390
2518
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_clear(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2391
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2392
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2519
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2520
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2393
2521
|
if (!map) return;
|
2394
2522
|
_upb_Map_Clear(map);
|
2395
2523
|
}
|
2396
2524
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_set(envoy_data_accesslog_v3_HTTPRequestProperties* msg, upb_StringView key, upb_StringView val, upb_Arena* a) {
|
2397
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2398
|
-
upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg,
|
2525
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2526
|
+
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
2527
|
+
&field, 0, 0, a);
|
2399
2528
|
return _upb_Map_Insert(map, &key, 0, &val, 0, a) !=
|
2400
2529
|
kUpb_MapInsertStatus_OutOfMemory;
|
2401
2530
|
}
|
2402
2531
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_delete(envoy_data_accesslog_v3_HTTPRequestProperties* msg, upb_StringView key) {
|
2403
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2404
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2532
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2533
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2405
2534
|
if (!map) return false;
|
2406
2535
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
2407
2536
|
}
|
2408
2537
|
UPB_INLINE envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry* envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_nextmutable(envoy_data_accesslog_v3_HTTPRequestProperties* msg, size_t* iter) {
|
2409
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
2410
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2538
|
+
const upb_MiniTableField field = {13, UPB_SIZE(20, 168), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2539
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2411
2540
|
if (!map) return NULL;
|
2412
2541
|
return (envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry*)_upb_map_next(map, iter);
|
2413
2542
|
}
|
2414
2543
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_upstream_header_bytes_sent(envoy_data_accesslog_v3_HTTPRequestProperties *msg, uint64_t value) {
|
2415
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
2416
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2544
|
+
const upb_MiniTableField field = {14, UPB_SIZE(104, 176), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2545
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2417
2546
|
}
|
2418
2547
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_downstream_header_bytes_received(envoy_data_accesslog_v3_HTTPRequestProperties *msg, uint64_t value) {
|
2419
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
2420
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2548
|
+
const upb_MiniTableField field = {15, UPB_SIZE(112, 184), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2549
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2421
2550
|
}
|
2422
2551
|
|
2423
2552
|
/* envoy.data.accesslog.v3.HTTPRequestProperties.RequestHeadersEntry */
|
@@ -2445,7 +2574,8 @@ UPB_INLINE envoy_data_accesslog_v3_HTTPResponseProperties* envoy_data_accesslog_
|
|
2445
2574
|
UPB_INLINE envoy_data_accesslog_v3_HTTPResponseProperties* envoy_data_accesslog_v3_HTTPResponseProperties_parse(const char* buf, size_t size, upb_Arena* arena) {
|
2446
2575
|
envoy_data_accesslog_v3_HTTPResponseProperties* ret = envoy_data_accesslog_v3_HTTPResponseProperties_new(arena);
|
2447
2576
|
if (!ret) return NULL;
|
2448
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, NULL, 0, arena) !=
|
2577
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, NULL, 0, arena) !=
|
2578
|
+
kUpb_DecodeStatus_Ok) {
|
2449
2579
|
return NULL;
|
2450
2580
|
}
|
2451
2581
|
return ret;
|
@@ -2455,139 +2585,161 @@ UPB_INLINE envoy_data_accesslog_v3_HTTPResponseProperties* envoy_data_accesslog_
|
|
2455
2585
|
int options, upb_Arena* arena) {
|
2456
2586
|
envoy_data_accesslog_v3_HTTPResponseProperties* ret = envoy_data_accesslog_v3_HTTPResponseProperties_new(arena);
|
2457
2587
|
if (!ret) return NULL;
|
2458
|
-
if (upb_Decode(buf, size, ret, &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, extreg, options,
|
2459
|
-
|
2588
|
+
if (upb_Decode(buf, size, UPB_UPCAST(ret), &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, extreg, options,
|
2589
|
+
arena) != kUpb_DecodeStatus_Ok) {
|
2460
2590
|
return NULL;
|
2461
2591
|
}
|
2462
2592
|
return ret;
|
2463
2593
|
}
|
2464
2594
|
UPB_INLINE char* envoy_data_accesslog_v3_HTTPResponseProperties_serialize(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_Arena* arena, size_t* len) {
|
2465
2595
|
char* ptr;
|
2466
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, 0, arena, &ptr, len);
|
2596
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, 0, arena, &ptr, len);
|
2467
2597
|
return ptr;
|
2468
2598
|
}
|
2469
2599
|
UPB_INLINE char* envoy_data_accesslog_v3_HTTPResponseProperties_serialize_ex(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, int options,
|
2470
2600
|
upb_Arena* arena, size_t* len) {
|
2471
2601
|
char* ptr;
|
2472
|
-
(void)upb_Encode(msg, &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, options, arena, &ptr, len);
|
2602
|
+
(void)upb_Encode(UPB_UPCAST(msg), &envoy__data__accesslog__v3__HTTPResponseProperties_msg_init, options, arena, &ptr, len);
|
2473
2603
|
return ptr;
|
2474
2604
|
}
|
2475
2605
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_code(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2476
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2477
|
-
|
2606
|
+
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)};
|
2607
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2478
2608
|
}
|
2479
2609
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPResponseProperties_response_code(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2480
2610
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
2481
2611
|
const struct google_protobuf_UInt32Value* ret;
|
2482
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2483
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2612
|
+
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)};
|
2613
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2614
|
+
&default_val, &ret);
|
2484
2615
|
return ret;
|
2485
2616
|
}
|
2486
2617
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_has_response_code(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2487
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2488
|
-
return
|
2618
|
+
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)};
|
2619
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2489
2620
|
}
|
2490
2621
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_headers_bytes(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2491
|
-
const upb_MiniTableField field = {2,
|
2492
|
-
|
2622
|
+
const upb_MiniTableField field = {2, 24, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2623
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2493
2624
|
}
|
2494
2625
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_bytes(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2495
2626
|
uint64_t default_val = (uint64_t)0ull;
|
2496
2627
|
uint64_t ret;
|
2497
|
-
const upb_MiniTableField field = {2,
|
2498
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2628
|
+
const upb_MiniTableField field = {2, 24, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2629
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2630
|
+
&default_val, &ret);
|
2499
2631
|
return ret;
|
2500
2632
|
}
|
2501
2633
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_body_bytes(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2502
|
-
const upb_MiniTableField field = {3,
|
2503
|
-
|
2634
|
+
const upb_MiniTableField field = {3, 32, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2635
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2504
2636
|
}
|
2505
2637
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPResponseProperties_response_body_bytes(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2506
2638
|
uint64_t default_val = (uint64_t)0ull;
|
2507
2639
|
uint64_t ret;
|
2508
|
-
const upb_MiniTableField field = {3,
|
2509
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2640
|
+
const upb_MiniTableField field = {3, 32, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2641
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2642
|
+
&default_val, &ret);
|
2510
2643
|
return ret;
|
2511
2644
|
}
|
2512
2645
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_headers(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2513
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2514
|
-
|
2646
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2647
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2515
2648
|
}
|
2516
2649
|
UPB_INLINE size_t envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_size(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2517
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2518
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2650
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2651
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2519
2652
|
return map ? _upb_Map_Size(map) : 0;
|
2520
2653
|
}
|
2521
2654
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_get(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key, upb_StringView* val) {
|
2522
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2523
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2655
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2656
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2524
2657
|
if (!map) return false;
|
2525
2658
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
2526
2659
|
}
|
2527
2660
|
UPB_INLINE const envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry* envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_next(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, size_t* iter) {
|
2528
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2529
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2661
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2662
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2530
2663
|
if (!map) return NULL;
|
2531
2664
|
return (const envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry*)_upb_map_next(map, iter);
|
2532
2665
|
}
|
2666
|
+
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2667
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2668
|
+
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2669
|
+
}
|
2670
|
+
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_mutable_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_Arena* a) {
|
2671
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2672
|
+
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
|
2673
|
+
}
|
2533
2674
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_trailers(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2534
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2535
|
-
|
2675
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2676
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2536
2677
|
}
|
2537
2678
|
UPB_INLINE size_t envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_size(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2538
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2539
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2679
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2680
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2540
2681
|
return map ? _upb_Map_Size(map) : 0;
|
2541
2682
|
}
|
2542
2683
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_get(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key, upb_StringView* val) {
|
2543
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2544
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2684
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2685
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2545
2686
|
if (!map) return false;
|
2546
2687
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
2547
2688
|
}
|
2548
2689
|
UPB_INLINE const envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry* envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_next(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, size_t* iter) {
|
2549
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2550
|
-
const upb_Map* map = upb_Message_GetMap(msg, &field);
|
2690
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2691
|
+
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2551
2692
|
if (!map) return NULL;
|
2552
2693
|
return (const envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry*)_upb_map_next(map, iter);
|
2553
2694
|
}
|
2695
|
+
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2696
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2697
|
+
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2698
|
+
}
|
2699
|
+
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_mutable_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_Arena* a) {
|
2700
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2701
|
+
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
|
2702
|
+
}
|
2554
2703
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_code_details(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2555
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2556
|
-
|
2704
|
+
const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2705
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2557
2706
|
}
|
2558
2707
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPResponseProperties_response_code_details(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2559
2708
|
upb_StringView default_val = upb_StringView_FromString("");
|
2560
2709
|
upb_StringView ret;
|
2561
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2562
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2710
|
+
const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2711
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2712
|
+
&default_val, &ret);
|
2563
2713
|
return ret;
|
2564
2714
|
}
|
2565
2715
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_upstream_header_bytes_received(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2566
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
2567
|
-
|
2716
|
+
const upb_MiniTableField field = {7, UPB_SIZE(48, 72), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2717
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2568
2718
|
}
|
2569
2719
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPResponseProperties_upstream_header_bytes_received(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2570
2720
|
uint64_t default_val = (uint64_t)0ull;
|
2571
2721
|
uint64_t ret;
|
2572
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
2573
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2722
|
+
const upb_MiniTableField field = {7, UPB_SIZE(48, 72), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2723
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2724
|
+
&default_val, &ret);
|
2574
2725
|
return ret;
|
2575
2726
|
}
|
2576
2727
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_downstream_header_bytes_sent(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2577
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
2578
|
-
|
2728
|
+
const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2729
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2579
2730
|
}
|
2580
2731
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPResponseProperties_downstream_header_bytes_sent(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2581
2732
|
uint64_t default_val = (uint64_t)0ull;
|
2582
2733
|
uint64_t ret;
|
2583
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
2584
|
-
_upb_Message_GetNonExtensionField(msg, &field,
|
2734
|
+
const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2735
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2736
|
+
&default_val, &ret);
|
2585
2737
|
return ret;
|
2586
2738
|
}
|
2587
2739
|
|
2588
2740
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_code(envoy_data_accesslog_v3_HTTPResponseProperties *msg, struct google_protobuf_UInt32Value* value) {
|
2589
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
2590
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2741
|
+
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)};
|
2742
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2591
2743
|
}
|
2592
2744
|
UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPResponseProperties_mutable_response_code(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_Arena* arena) {
|
2593
2745
|
struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_data_accesslog_v3_HTTPResponseProperties_response_code(msg);
|
@@ -2598,72 +2750,74 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPRespo
|
|
2598
2750
|
return sub;
|
2599
2751
|
}
|
2600
2752
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_headers_bytes(envoy_data_accesslog_v3_HTTPResponseProperties *msg, uint64_t value) {
|
2601
|
-
const upb_MiniTableField field = {2,
|
2602
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2753
|
+
const upb_MiniTableField field = {2, 24, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2754
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2603
2755
|
}
|
2604
2756
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_body_bytes(envoy_data_accesslog_v3_HTTPResponseProperties *msg, uint64_t value) {
|
2605
|
-
const upb_MiniTableField field = {3,
|
2606
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2757
|
+
const upb_MiniTableField field = {3, 32, 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2758
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2607
2759
|
}
|
2608
2760
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_clear(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2609
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2610
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2761
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2762
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2611
2763
|
if (!map) return;
|
2612
2764
|
_upb_Map_Clear(map);
|
2613
2765
|
}
|
2614
2766
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_set(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key, upb_StringView val, upb_Arena* a) {
|
2615
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2616
|
-
upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg,
|
2767
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2768
|
+
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
2769
|
+
&field, 0, 0, a);
|
2617
2770
|
return _upb_Map_Insert(map, &key, 0, &val, 0, a) !=
|
2618
2771
|
kUpb_MapInsertStatus_OutOfMemory;
|
2619
2772
|
}
|
2620
2773
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_delete(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key) {
|
2621
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2622
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2774
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2775
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2623
2776
|
if (!map) return false;
|
2624
2777
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
2625
2778
|
}
|
2626
2779
|
UPB_INLINE envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry* envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_nextmutable(envoy_data_accesslog_v3_HTTPResponseProperties* msg, size_t* iter) {
|
2627
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
2628
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2780
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2781
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2629
2782
|
if (!map) return NULL;
|
2630
2783
|
return (envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry*)_upb_map_next(map, iter);
|
2631
2784
|
}
|
2632
2785
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_clear(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2633
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2634
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2786
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2787
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2635
2788
|
if (!map) return;
|
2636
2789
|
_upb_Map_Clear(map);
|
2637
2790
|
}
|
2638
2791
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_set(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key, upb_StringView val, upb_Arena* a) {
|
2639
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2640
|
-
upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg,
|
2792
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2793
|
+
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
2794
|
+
&field, 0, 0, a);
|
2641
2795
|
return _upb_Map_Insert(map, &key, 0, &val, 0, a) !=
|
2642
2796
|
kUpb_MapInsertStatus_OutOfMemory;
|
2643
2797
|
}
|
2644
2798
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_delete(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key) {
|
2645
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2646
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2799
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2800
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2647
2801
|
if (!map) return false;
|
2648
2802
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
2649
2803
|
}
|
2650
2804
|
UPB_INLINE envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry* envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_nextmutable(envoy_data_accesslog_v3_HTTPResponseProperties* msg, size_t* iter) {
|
2651
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
2652
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field);
|
2805
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2806
|
+
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2653
2807
|
if (!map) return NULL;
|
2654
2808
|
return (envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry*)_upb_map_next(map, iter);
|
2655
2809
|
}
|
2656
2810
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_code_details(envoy_data_accesslog_v3_HTTPResponseProperties *msg, upb_StringView value) {
|
2657
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2658
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2811
|
+
const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2812
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2659
2813
|
}
|
2660
2814
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_upstream_header_bytes_received(envoy_data_accesslog_v3_HTTPResponseProperties *msg, uint64_t value) {
|
2661
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
2662
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2815
|
+
const upb_MiniTableField field = {7, UPB_SIZE(48, 72), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2816
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2663
2817
|
}
|
2664
2818
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_downstream_header_bytes_sent(envoy_data_accesslog_v3_HTTPResponseProperties *msg, uint64_t value) {
|
2665
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
2666
|
-
_upb_Message_SetNonExtensionField(msg, &field, &value);
|
2819
|
+
const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2820
|
+
_upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
|
2667
2821
|
}
|
2668
2822
|
|
2669
2823
|
/* envoy.data.accesslog.v3.HTTPResponseProperties.ResponseHeadersEntry */
|