grpc 1.71.0 → 1.72.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +78 -75
- data/include/grpc/event_engine/memory_request.h +3 -3
- data/include/grpc/impl/channel_arg_names.h +70 -50
- data/include/grpc/support/workaround_list.h +1 -4
- data/src/core/{lib/transport → call}/call_arena_allocator.cc +1 -1
- data/src/core/{lib/transport → call}/call_arena_allocator.h +3 -3
- data/src/core/{lib/transport → call}/call_destination.h +4 -4
- data/src/core/{lib/transport → call}/call_filters.cc +2 -2
- data/src/core/{lib/transport → call}/call_filters.h +25 -6
- data/src/core/{lib/channel → call}/call_finalization.h +3 -3
- data/src/core/{lib/transport → call}/call_spine.cc +1 -1
- data/src/core/{lib/transport → call}/call_spine.h +68 -26
- data/src/core/{lib/transport → call}/call_state.cc +1 -1
- data/src/core/{lib/transport → call}/call_state.h +3 -3
- data/src/core/{lib/surface → call}/client_call.cc +9 -7
- data/src/core/{lib/surface → call}/client_call.h +4 -4
- data/src/core/{lib/transport → call}/custom_metadata.h +3 -3
- data/src/core/{lib/transport → call}/interception_chain.cc +5 -5
- data/src/core/{lib/transport → call}/interception_chain.h +7 -7
- data/src/core/{lib/transport → call}/message.cc +1 -1
- data/src/core/{lib/transport → call}/message.h +7 -3
- data/src/core/{lib/transport → call}/metadata.cc +2 -2
- data/src/core/{lib/transport → call}/metadata.h +4 -4
- data/src/core/{lib/transport → call}/metadata_batch.cc +1 -1
- data/src/core/{lib/transport → call}/metadata_batch.h +7 -7
- data/src/core/{lib/transport → call}/metadata_compression_traits.h +3 -3
- data/src/core/{lib/transport → call}/metadata_info.cc +27 -9
- data/src/core/{lib/transport → call}/metadata_info.h +4 -4
- data/src/core/{lib/transport → call}/parsed_metadata.cc +1 -1
- data/src/core/{lib/transport → call}/parsed_metadata.h +3 -3
- data/src/core/call/request_buffer.h +3 -3
- data/src/core/call/security_context.cc +125 -0
- data/src/core/call/security_context.h +114 -0
- data/src/core/{lib/surface → call}/server_call.cc +3 -3
- data/src/core/{lib/surface → call}/server_call.h +5 -5
- data/src/core/{lib/transport → call}/simple_slice_based_metadata.h +4 -4
- data/src/core/{lib/channel → call}/status_util.cc +1 -1
- data/src/core/{lib/channel → call}/status_util.h +3 -3
- data/src/core/client_channel/client_channel.cc +24 -16
- data/src/core/client_channel/client_channel.h +4 -3
- data/src/core/client_channel/client_channel_filter.cc +10 -20
- data/src/core/client_channel/client_channel_filter.h +1 -1
- data/src/core/client_channel/client_channel_internal.h +1 -1
- data/src/core/client_channel/config_selector.h +2 -2
- data/src/core/client_channel/direct_channel.cc +2 -2
- data/src/core/client_channel/dynamic_filters.cc +0 -1
- data/src/core/client_channel/dynamic_filters.h +0 -1
- data/src/core/client_channel/lb_metadata.h +1 -1
- data/src/core/client_channel/load_balanced_call_destination.cc +1 -1
- data/src/core/client_channel/load_balanced_call_destination.h +1 -1
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +43 -41
- data/src/core/client_channel/retry_filter_legacy_call_data.h +6 -6
- data/src/core/client_channel/retry_interceptor.h +1 -1
- data/src/core/client_channel/retry_service_config.cc +1 -1
- data/src/core/client_channel/retry_service_config.h +1 -1
- data/src/core/client_channel/retry_throttle.cc +30 -34
- data/src/core/client_channel/retry_throttle.h +10 -2
- data/src/core/client_channel/subchannel.cc +7 -8
- data/src/core/client_channel/subchannel.h +1 -2
- data/src/core/client_channel/subchannel_stream_client.cc +14 -11
- data/src/core/client_channel/subchannel_stream_client.h +2 -2
- data/src/core/config/core_configuration.h +2 -2
- data/src/core/credentials/call/call_credentials.h +157 -0
- data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.cc +4 -4
- data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.h +4 -4
- data/src/core/{lib/security/credentials/composite/composite_credentials.cc → credentials/call/composite/composite_call_credentials.cc} +4 -57
- data/src/core/credentials/call/composite/composite_call_credentials.h +82 -0
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.cc +6 -6
- data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.h +4 -4
- data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.cc +3 -2
- data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.h +4 -4
- data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +3 -2
- data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.h +6 -6
- data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.h +4 -4
- data/src/core/{lib/security/util → credentials/call}/json_util.cc +1 -1
- data/src/core/{lib/security/util → credentials/call}/json_util.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.cc +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.cc +3 -2
- data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.h +3 -3
- data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.cc +4 -3
- data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.cc +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.cc +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_linux.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_no_op.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_windows.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_client_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_server_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry_init.cc +21 -17
- data/src/core/credentials/transport/composite/composite_channel_credentials.cc +68 -0
- data/src/core/{lib/security/credentials/composite/composite_credentials.h → credentials/transport/composite/composite_channel_credentials.h} +6 -51
- data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.cc +4 -26
- data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.h +5 -37
- data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.cc +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/google_default/credentials_generic.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.cc +31 -19
- data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.cc +2 -2
- data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.cc +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.h +4 -4
- data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.cc +2 -2
- data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.h +6 -6
- data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.cc +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.h +4 -4
- data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_factory.h +3 -3
- data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.cc +1 -1
- data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_match.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.h +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.cc +2 -2
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.h +3 -3
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.h +7 -7
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.h +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots.h +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_fallback.cc +1 -1
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.cc +2 -2
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.h +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_windows.cc +1 -1
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.cc +3 -3
- data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.h +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.cc +4 -4
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.h +5 -5
- data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.cc +6 -6
- data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.h +6 -6
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.cc +1 -1
- data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.h +3 -3
- data/src/core/{lib/security/credentials/credentials.cc → credentials/transport/transport_credentials.cc} +1 -3
- data/src/core/{lib/security/credentials/credentials.h → credentials/transport/transport_credentials.h} +5 -121
- data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.cc +5 -5
- data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.h +6 -6
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +8 -5
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +2 -2
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +2 -2
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +2 -2
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.h +1 -1
- data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
- data/src/core/ext/filters/rbac/rbac_filter.cc +2 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +1 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +3 -3
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +8 -5
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +5 -1
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +1 -3
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +58 -57
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +3 -3
- data/src/core/ext/transport/chttp2/transport/frame.cc +89 -68
- data/src/core/ext/transport/chttp2/transport/frame.h +37 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +2 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +6 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +4 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +10 -8
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_status.h +52 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +11 -14
- data/src/core/ext/transport/chttp2/transport/parsing.cc +36 -23
- data/src/core/ext/transport/chttp2/transport/writing.cc +15 -14
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -1
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +1 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +65 -65
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +28 -28
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +14 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +133 -133
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +71 -71
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +26 -26
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +216 -218
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +66 -66
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +27 -27
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +326 -328
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +103 -103
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +58 -58
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +22 -24
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +29 -29
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +186 -192
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +54 -54
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +54 -54
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +21 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +59 -61
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +15 -15
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +100 -100
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +34 -34
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +12 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +118 -118
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +39 -39
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +19 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +27 -27
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +12 -14
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +41 -41
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +16 -16
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +24 -24
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +139 -139
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +46 -46
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +61 -61
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +20 -20
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +33 -33
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +12 -14
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +52 -54
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +620 -626
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +215 -215
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +13 -13
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +15 -15
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +16 -16
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +10 -10
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +306 -312
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +96 -96
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +61 -61
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +27 -27
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +19 -19
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +6 -6
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +25 -25
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +34 -34
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +9 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +294 -294
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +105 -105
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +23 -23
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +84 -84
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +28 -28
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +87 -87
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +31 -31
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +24 -24
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +5 -5
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +130 -132
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +43 -43
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +60 -60
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +26 -26
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +11 -11
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +85 -89
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +20 -20
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +80 -83
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +27 -27
- data/src/core/ext/upb-gen/google/api/http.upb.h +51 -51
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +22 -22
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +327 -301
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +97 -85
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +9 -11
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +9 -10
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +110 -113
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +25 -25
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +6 -6
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +4 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +21 -22
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +70 -72
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +17 -17
- data/src/core/ext/upb-gen/validate/validate.upb.h +368 -368
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +117 -117
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +9 -10
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +7 -7
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +12 -12
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +2 -2
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +27 -30
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +7 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +1 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +22 -24
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +3 -3
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +98 -87
- data/src/core/{lib/security/transport → filter/auth}/auth_filters.h +8 -7
- data/src/core/{lib/security/transport → filter/auth}/client_auth_filter.cc +7 -6
- data/src/core/{lib/security/transport → filter/auth}/server_auth_filter.cc +5 -4
- data/src/core/handshaker/handshaker.cc +0 -8
- data/src/core/handshaker/security/security_handshaker.cc +1 -1
- data/src/core/handshaker/security/security_handshaker.h +1 -1
- data/src/core/lib/channel/channel_args.h +49 -30
- data/src/core/lib/channel/channel_stack.h +1 -2
- data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -1
- data/src/core/lib/channel/connected_channel.cc +2 -2
- data/src/core/lib/channel/promise_based_filter.h +3 -3
- data/src/core/lib/debug/trace_flags.cc +2 -4
- data/src/core/lib/debug/trace_flags.h +1 -2
- data/src/core/lib/event_engine/default_event_engine_factory.cc +6 -6
- data/src/core/lib/event_engine/default_event_engine_factory.h +1 -1
- data/src/core/lib/event_engine/extensions/iomgr_compatible.h +39 -0
- data/src/core/lib/event_engine/extensions/supports_win_sockets.h +48 -0
- data/src/core/lib/event_engine/extensions/tcp_trace.h +1 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +0 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +1 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +26 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +4 -0
- data/src/core/lib/event_engine/posix_engine/set_socket_dualstack.cc +64 -0
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +0 -11
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +10 -2
- data/src/core/lib/event_engine/shim.cc +9 -16
- data/src/core/lib/event_engine/shim.h +11 -0
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +15 -7
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +2 -1
- data/src/core/lib/event_engine/windows/win_socket.cc +11 -0
- data/src/core/lib/event_engine/windows/win_socket.h +3 -0
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +5 -10
- data/src/core/lib/event_engine/windows/windows_engine.cc +42 -0
- data/src/core/lib/event_engine/windows/windows_engine.h +8 -2
- data/src/core/lib/event_engine/windows/windows_listener.cc +5 -6
- data/src/core/lib/event_engine/windows/windows_listener.h +9 -4
- data/src/core/lib/experiments/experiments.cc +174 -21
- data/src/core/lib/experiments/experiments.h +70 -13
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +43 -16
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +43 -8
- data/src/core/lib/iomgr/error.cc +27 -43
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +13 -1
- data/src/core/lib/iomgr/ev_poll_posix.cc +13 -0
- data/src/core/lib/iomgr/polling_entity.cc +2 -7
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +22 -11
- data/src/core/lib/iomgr/socket_utils_posix.h +12 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -9
- data/src/core/lib/iomgr/tcp_client_posix.cc +11 -15
- data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_posix.cc +58 -31
- data/src/core/lib/iomgr/tcp_posix.h +10 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +9 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -4
- data/src/core/lib/iomgr/tcp_server_windows.cc +27 -16
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +10 -2
- data/src/core/lib/promise/all_ok.h +31 -0
- data/src/core/lib/promise/loop.h +8 -5
- data/src/core/lib/promise/map.h +65 -2
- data/src/core/lib/promise/party.h +5 -1
- data/src/core/lib/promise/poll.h +22 -20
- data/src/core/lib/promise/promise.h +2 -2
- data/src/core/lib/promise/status_flag.h +23 -11
- data/src/core/lib/security/authorization/evaluate_args.cc +1 -1
- data/src/core/lib/security/authorization/evaluate_args.h +1 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -1
- data/src/core/lib/slice/slice.h +6 -0
- data/src/core/lib/surface/call.cc +20 -18
- data/src/core/lib/surface/call_utils.cc +3 -3
- data/src/core/lib/surface/call_utils.h +3 -3
- data/src/core/lib/surface/channel.h +2 -2
- data/src/core/lib/surface/channel_init.h +2 -2
- data/src/core/lib/surface/completion_queue.cc +77 -17
- data/src/core/lib/surface/filter_stack_call.cc +40 -27
- data/src/core/lib/surface/filter_stack_call.h +1 -1
- data/src/core/lib/surface/init.cc +2 -3
- data/src/core/lib/surface/lame_client.cc +1 -1
- data/src/core/lib/surface/legacy_channel.cc +27 -23
- data/src/core/lib/surface/legacy_channel.h +1 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/error_utils.cc +65 -11
- data/src/core/lib/transport/error_utils.h +2 -2
- data/src/core/lib/transport/status_conversion.cc +16 -14
- data/src/core/lib/transport/status_conversion.h +5 -4
- data/src/core/lib/transport/transport.h +5 -5
- data/src/core/lib/transport/transport_op_string.cc +1 -1
- data/src/core/load_balancing/delegating_helper.h +1 -1
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +1 -1
- data/src/core/load_balancing/grpclb/grpclb.cc +1 -2
- data/src/core/load_balancing/pick_first/pick_first.cc +0 -955
- data/src/core/load_balancing/rls/rls.cc +31 -37
- data/src/core/load_balancing/weighted_target/weighted_target.cc +1 -1
- data/src/core/load_balancing/xds/cds.cc +3 -10
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +1 -1
- data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -0
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -2
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +1 -3
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -0
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +1 -1
- data/src/core/resolver/xds/xds_dependency_manager.cc +8 -3
- data/src/core/resolver/xds/xds_resolver.cc +2 -2
- data/src/core/server/server.cc +7 -4
- data/src/core/server/server.h +1 -1
- data/src/core/server/server_call_tracer_filter.cc +1 -1
- data/src/core/server/server_config_selector.h +1 -1
- data/src/core/server/server_config_selector_filter.cc +1 -1
- data/src/core/server/xds_server_config_fetcher.cc +5 -5
- data/src/core/service_config/service_config_channel_arg_filter.cc +1 -1
- data/src/core/telemetry/call_tracer.cc +2 -4
- data/src/core/telemetry/call_tracer.h +3 -3
- data/src/core/telemetry/metrics.cc +30 -12
- data/src/core/telemetry/metrics.h +15 -3
- data/src/core/telemetry/stats_data.cc +75 -2
- data/src/core/telemetry/stats_data.h +46 -4
- data/src/core/telemetry/tcp_tracer.h +90 -84
- data/src/core/{lib/security/context/security_context.cc → transport/auth_context.cc} +1 -96
- data/src/core/{lib/security/context/security_context.h → transport/auth_context.h} +6 -76
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -1
- data/src/core/tsi/ssl_transport_security.cc +1 -1
- data/src/core/util/check_class_size.h +48 -0
- data/src/core/util/gcp_metadata_query.cc +1 -1
- data/src/core/util/http_client/httpcli.cc +3 -3
- data/src/core/util/http_client/httpcli_security_connector.cc +3 -3
- data/src/core/util/load_file.cc +26 -14
- data/src/core/util/status_helper.cc +86 -63
- data/src/core/util/status_helper.h +9 -26
- data/src/core/xds/grpc/certificate_provider_store.cc +1 -1
- data/src/core/xds/grpc/certificate_provider_store.h +3 -3
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +3 -3
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +1 -1
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +10 -7
- data/src/core/xds/grpc/xds_certificate_provider.cc +1 -1
- data/src/core/xds/grpc/xds_certificate_provider.h +2 -2
- data/src/core/xds/grpc/xds_client_grpc.cc +7 -6
- data/src/core/xds/grpc/xds_client_grpc.h +4 -2
- data/src/core/xds/grpc/xds_cluster.h +3 -3
- data/src/core/xds/grpc/xds_cluster_parser.cc +3 -2
- data/src/core/xds/grpc/xds_http_fault_filter.cc +1 -1
- data/src/core/xds/grpc/xds_http_filter.h +1 -1
- data/src/core/xds/grpc/xds_http_filter_registry.h +1 -1
- data/src/core/xds/grpc/xds_route_config.h +1 -1
- data/src/core/xds/grpc/xds_route_config_parser.cc +1 -1
- data/src/core/xds/grpc/xds_route_config_parser.h +1 -1
- data/src/core/xds/grpc/xds_routing.h +1 -1
- data/src/core/xds/grpc/xds_server_grpc.cc +60 -48
- data/src/core/xds/grpc/xds_server_grpc.h +23 -13
- data/src/core/xds/grpc/xds_server_grpc_interface.h +2 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +5 -5
- data/src/core/xds/grpc/xds_transport_grpc.h +5 -3
- data/src/core/xds/xds_client/lrs_client.cc +6 -5
- data/src/core/xds/xds_client/lrs_client.h +7 -7
- data/src/core/xds/xds_client/xds_bootstrap.h +16 -1
- data/src/core/xds/xds_client/xds_client.cc +25 -23
- data/src/core/xds/xds_client/xds_client.h +3 -1
- data/src/core/xds/xds_client/xds_resource_type.h +1 -2
- data/src/core/xds/xds_client/xds_transport.h +1 -1
- data/src/ruby/ext/grpc/extconf.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +20 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +3 -25
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +3 -7
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +13 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +2 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +1 -1
- data/third_party/upb/upb/base/internal/log2.h +3 -1
- data/third_party/upb/upb/base/string_view.h +10 -0
- data/third_party/upb/upb/hash/common.c +5 -1
- data/third_party/upb/upb/json/decode.c +2 -2
- data/third_party/upb/upb/json/decode.h +0 -1
- data/third_party/upb/upb/mem/alloc.h +5 -0
- data/third_party/upb/upb/mem/arena.c +296 -142
- data/third_party/upb/upb/mem/arena.h +47 -11
- data/third_party/upb/upb/mem/arena.hpp +4 -20
- data/third_party/upb/upb/mem/internal/arena.h +4 -6
- data/third_party/upb/upb/message/accessors.h +41 -0
- data/third_party/upb/upb/message/compat.c +11 -14
- data/third_party/upb/upb/message/compat.h +4 -3
- data/third_party/upb/upb/message/copy.c +35 -30
- data/third_party/upb/upb/message/internal/accessors.h +139 -10
- data/third_party/upb/upb/message/internal/extension.c +28 -25
- data/third_party/upb/upb/message/internal/extension.h +21 -5
- data/third_party/upb/upb/message/internal/iterator.c +58 -0
- data/third_party/upb/upb/message/internal/iterator.h +29 -0
- data/third_party/upb/upb/message/internal/map.h +2 -3
- data/third_party/upb/upb/message/internal/map_sorter.h +3 -2
- data/third_party/upb/upb/message/internal/message.c +48 -29
- data/third_party/upb/upb/message/internal/message.h +154 -24
- data/third_party/upb/upb/message/map_sorter.c +20 -8
- data/third_party/upb/upb/message/message.c +90 -38
- data/third_party/upb/upb/message/message.h +58 -2
- data/third_party/upb/upb/message/value.h +9 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +1 -1
- data/third_party/upb/upb/mini_descriptor/decode.c +97 -136
- data/third_party/upb/upb/mini_descriptor/decode.h +4 -3
- data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +1 -1
- data/third_party/upb/upb/mini_table/extension_registry.c +24 -12
- data/third_party/upb/upb/mini_table/extension_registry.h +13 -6
- data/third_party/upb/upb/mini_table/message.c +21 -13
- data/third_party/upb/upb/port/atomic.h +134 -7
- data/third_party/upb/upb/port/def.inc +140 -38
- data/third_party/upb/upb/port/undef.inc +11 -1
- data/third_party/upb/upb/reflection/def.hpp +5 -1
- data/third_party/upb/upb/reflection/def_pool.c +10 -3
- data/third_party/upb/upb/reflection/descriptor_bootstrap.h +1 -1
- data/third_party/upb/upb/reflection/file_def.c +12 -5
- data/third_party/upb/upb/reflection/internal/def_builder.c +1 -1
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +19 -16
- data/third_party/upb/upb/reflection/message.h +3 -1
- data/third_party/upb/upb/text/encode.c +1 -13
- data/third_party/upb/upb/text/internal/encode.c +25 -6
- data/third_party/upb/upb/text/internal/encode.h +4 -0
- data/third_party/upb/upb/wire/decode.c +60 -45
- data/third_party/upb/upb/wire/decode.h +4 -2
- data/third_party/upb/upb/wire/encode.c +77 -42
- data/third_party/upb/upb/wire/encode.h +2 -0
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +18 -20
- data/third_party/upb/upb/wire/internal/decoder.h +4 -11
- data/third_party/utf8_range/utf8_range.c +15 -275
- data/third_party/utf8_range/utf8_range_neon.inc +117 -0
- data/third_party/utf8_range/utf8_range_sse.inc +272 -0
- data/third_party/zlib/deflate.c +40 -15
- data/third_party/zlib/deflate.h +33 -2
- data/third_party/zlib/gzguts.h +2 -6
- data/third_party/zlib/inflate.c +1 -1
- data/third_party/zlib/inftrees.c +3 -3
- data/third_party/zlib/inftrees.h +2 -2
- data/third_party/zlib/trees.c +18 -4
- data/third_party/zlib/zconf.h +1 -9
- data/third_party/zlib/zlib.h +12 -12
- data/third_party/zlib/zutil.h +4 -25
- metadata +155 -145
- data/include/grpc/grpc_cronet.h +0 -37
- data/src/core/lib/transport/http2_errors.h +0 -43
- data/third_party/upb/upb/message/internal/compare_unknown.c +0 -289
- data/third_party/upb/upb/message/internal/compare_unknown.h +0 -49
@@ -443,410 +443,422 @@ UPB_INLINE char* envoy_data_accesslog_v3_AccessLogCommon_serialize_ex(const envo
|
|
443
443
|
return ptr;
|
444
444
|
}
|
445
445
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_sample_rate(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
446
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
446
|
+
const upb_MiniTableField field = {1, UPB_SIZE(144, 120), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
447
447
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
448
448
|
}
|
449
449
|
UPB_INLINE double envoy_data_accesslog_v3_AccessLogCommon_sample_rate(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
450
450
|
double default_val = 0;
|
451
451
|
double ret;
|
452
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
452
|
+
const upb_MiniTableField field = {1, UPB_SIZE(144, 120), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
453
453
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
454
454
|
&default_val, &ret);
|
455
455
|
return ret;
|
456
456
|
}
|
457
457
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
458
|
-
const upb_MiniTableField field = {2, UPB_SIZE(12,
|
458
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 128), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
459
459
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
460
460
|
}
|
461
461
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_downstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
462
462
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
463
463
|
const struct envoy_config_core_v3_Address* ret;
|
464
|
-
const upb_MiniTableField field = {2, UPB_SIZE(12,
|
464
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 128), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
465
465
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
466
466
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
467
467
|
&default_val, &ret);
|
468
468
|
return ret;
|
469
469
|
}
|
470
470
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_downstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
471
|
-
const upb_MiniTableField field = {2, UPB_SIZE(12,
|
471
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 128), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
472
472
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
473
473
|
}
|
474
474
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_local_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
475
|
-
const upb_MiniTableField field = {3, UPB_SIZE(16,
|
475
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 136), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
476
476
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
477
477
|
}
|
478
478
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_downstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
479
479
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
480
480
|
const struct envoy_config_core_v3_Address* ret;
|
481
|
-
const upb_MiniTableField field = {3, UPB_SIZE(16,
|
481
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 136), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
482
482
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
483
483
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
484
484
|
&default_val, &ret);
|
485
485
|
return ret;
|
486
486
|
}
|
487
487
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_downstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
488
|
-
const upb_MiniTableField field = {3, UPB_SIZE(16,
|
488
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 136), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
489
489
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
490
490
|
}
|
491
491
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_tls_properties(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
492
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
492
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 144), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
493
493
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
494
494
|
}
|
495
495
|
UPB_INLINE const envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3_AccessLogCommon_tls_properties(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
496
496
|
const envoy_data_accesslog_v3_TLSProperties* default_val = NULL;
|
497
497
|
const envoy_data_accesslog_v3_TLSProperties* ret;
|
498
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
498
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 144), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
499
499
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties_msg_init);
|
500
500
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
501
501
|
&default_val, &ret);
|
502
502
|
return ret;
|
503
503
|
}
|
504
504
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_tls_properties(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
505
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
505
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 144), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
506
506
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
507
507
|
}
|
508
508
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_start_time(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
509
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
509
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 152), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
510
510
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
511
511
|
}
|
512
512
|
UPB_INLINE const struct google_protobuf_Timestamp* envoy_data_accesslog_v3_AccessLogCommon_start_time(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
513
513
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
514
514
|
const struct google_protobuf_Timestamp* ret;
|
515
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
515
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 152), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
516
516
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
517
517
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
518
518
|
&default_val, &ret);
|
519
519
|
return ret;
|
520
520
|
}
|
521
521
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_start_time(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
522
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
522
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 152), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
523
523
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
524
524
|
}
|
525
525
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
526
|
-
const upb_MiniTableField field = {6, UPB_SIZE(28,
|
526
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 160), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
527
527
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
528
528
|
}
|
529
529
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_time_to_last_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
530
530
|
const struct google_protobuf_Duration* default_val = NULL;
|
531
531
|
const struct google_protobuf_Duration* ret;
|
532
|
-
const upb_MiniTableField field = {6, UPB_SIZE(28,
|
532
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 160), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
533
533
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
534
534
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
535
535
|
&default_val, &ret);
|
536
536
|
return ret;
|
537
537
|
}
|
538
538
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
539
|
-
const upb_MiniTableField field = {6, UPB_SIZE(28,
|
539
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 160), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
540
540
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
541
541
|
}
|
542
542
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_first_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
543
|
-
const upb_MiniTableField field = {7, UPB_SIZE(32,
|
543
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 168), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
544
544
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
545
545
|
}
|
546
546
|
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) {
|
547
547
|
const struct google_protobuf_Duration* default_val = NULL;
|
548
548
|
const struct google_protobuf_Duration* ret;
|
549
|
-
const upb_MiniTableField field = {7, UPB_SIZE(32,
|
549
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 168), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
550
550
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
551
551
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
552
552
|
&default_val, &ret);
|
553
553
|
return ret;
|
554
554
|
}
|
555
555
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_first_upstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
556
|
-
const upb_MiniTableField field = {7, UPB_SIZE(32,
|
556
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 168), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
557
557
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
558
558
|
}
|
559
559
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_upstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
560
|
-
const upb_MiniTableField field = {8, UPB_SIZE(36,
|
560
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 176), 70, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
561
561
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
562
562
|
}
|
563
563
|
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) {
|
564
564
|
const struct google_protobuf_Duration* default_val = NULL;
|
565
565
|
const struct google_protobuf_Duration* ret;
|
566
|
-
const upb_MiniTableField field = {8, UPB_SIZE(36,
|
566
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 176), 70, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
567
567
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
568
568
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
569
569
|
&default_val, &ret);
|
570
570
|
return ret;
|
571
571
|
}
|
572
572
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_upstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
573
|
-
const upb_MiniTableField field = {8, UPB_SIZE(36,
|
573
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 176), 70, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
574
574
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
575
575
|
}
|
576
576
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_first_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
577
|
-
const upb_MiniTableField field = {9, UPB_SIZE(40,
|
577
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 184), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
578
578
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
579
579
|
}
|
580
580
|
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) {
|
581
581
|
const struct google_protobuf_Duration* default_val = NULL;
|
582
582
|
const struct google_protobuf_Duration* ret;
|
583
|
-
const upb_MiniTableField field = {9, UPB_SIZE(40,
|
583
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 184), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
584
584
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
585
585
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
586
586
|
&default_val, &ret);
|
587
587
|
return ret;
|
588
588
|
}
|
589
589
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_first_upstream_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
590
|
-
const upb_MiniTableField field = {9, UPB_SIZE(40,
|
590
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 184), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
591
591
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
592
592
|
}
|
593
593
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_upstream_rx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
594
|
-
const upb_MiniTableField field = {10, UPB_SIZE(44,
|
594
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 192), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
595
595
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
596
596
|
}
|
597
597
|
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) {
|
598
598
|
const struct google_protobuf_Duration* default_val = NULL;
|
599
599
|
const struct google_protobuf_Duration* ret;
|
600
|
-
const upb_MiniTableField field = {10, UPB_SIZE(44,
|
600
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 192), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
601
601
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
602
602
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
603
603
|
&default_val, &ret);
|
604
604
|
return ret;
|
605
605
|
}
|
606
606
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_upstream_rx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
607
|
-
const upb_MiniTableField field = {10, UPB_SIZE(44,
|
607
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 192), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
608
608
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
609
609
|
}
|
610
610
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_first_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
611
|
-
const upb_MiniTableField field = {11, UPB_SIZE(48,
|
611
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 200), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
612
612
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
613
613
|
}
|
614
614
|
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) {
|
615
615
|
const struct google_protobuf_Duration* default_val = NULL;
|
616
616
|
const struct google_protobuf_Duration* ret;
|
617
|
-
const upb_MiniTableField field = {11, UPB_SIZE(48,
|
617
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 200), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
618
618
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
619
619
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
620
620
|
&default_val, &ret);
|
621
621
|
return ret;
|
622
622
|
}
|
623
623
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_first_downstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
624
|
-
const upb_MiniTableField field = {11, UPB_SIZE(48,
|
624
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 200), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
625
625
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
626
626
|
}
|
627
627
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_time_to_last_downstream_tx_byte(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
628
|
-
const upb_MiniTableField field = {12, UPB_SIZE(52,
|
628
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 208), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
629
629
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
630
630
|
}
|
631
631
|
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) {
|
632
632
|
const struct google_protobuf_Duration* default_val = NULL;
|
633
633
|
const struct google_protobuf_Duration* ret;
|
634
|
-
const upb_MiniTableField field = {12, UPB_SIZE(52,
|
634
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 208), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
635
635
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
636
636
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
637
637
|
&default_val, &ret);
|
638
638
|
return ret;
|
639
639
|
}
|
640
640
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_time_to_last_downstream_tx_byte(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
641
|
-
const upb_MiniTableField field = {12, UPB_SIZE(52,
|
641
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 208), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
642
642
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
643
643
|
}
|
644
644
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
645
|
-
const upb_MiniTableField field = {13, UPB_SIZE(56,
|
645
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 216), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
646
646
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
647
647
|
}
|
648
648
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_upstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
649
649
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
650
650
|
const struct envoy_config_core_v3_Address* ret;
|
651
|
-
const upb_MiniTableField field = {13, UPB_SIZE(56,
|
651
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 216), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
652
652
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
653
653
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
654
654
|
&default_val, &ret);
|
655
655
|
return ret;
|
656
656
|
}
|
657
657
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_upstream_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
658
|
-
const upb_MiniTableField field = {13, UPB_SIZE(56,
|
658
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 216), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
659
659
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
660
660
|
}
|
661
661
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_local_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
662
|
-
const upb_MiniTableField field = {14, UPB_SIZE(60,
|
662
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 224), 76, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
663
663
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
664
664
|
}
|
665
665
|
UPB_INLINE const struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLogCommon_upstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
666
666
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
667
667
|
const struct envoy_config_core_v3_Address* ret;
|
668
|
-
const upb_MiniTableField field = {14, UPB_SIZE(60,
|
668
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 224), 76, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
669
669
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
670
670
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
671
671
|
&default_val, &ret);
|
672
672
|
return ret;
|
673
673
|
}
|
674
674
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_upstream_local_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
675
|
-
const upb_MiniTableField field = {14, UPB_SIZE(60,
|
675
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 224), 76, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
676
676
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
677
677
|
}
|
678
678
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_cluster(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
679
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
679
|
+
const upb_MiniTableField field = {15, UPB_SIZE(96, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
680
680
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
681
681
|
}
|
682
682
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_upstream_cluster(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
683
683
|
upb_StringView default_val = upb_StringView_FromString("");
|
684
684
|
upb_StringView ret;
|
685
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
685
|
+
const upb_MiniTableField field = {15, UPB_SIZE(96, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
686
686
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
687
687
|
&default_val, &ret);
|
688
688
|
return ret;
|
689
689
|
}
|
690
690
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_response_flags(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
691
|
-
const upb_MiniTableField field = {16, UPB_SIZE(64,
|
691
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 232), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
692
692
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
693
693
|
}
|
694
694
|
UPB_INLINE const envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3_AccessLogCommon_response_flags(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
695
695
|
const envoy_data_accesslog_v3_ResponseFlags* default_val = NULL;
|
696
696
|
const envoy_data_accesslog_v3_ResponseFlags* ret;
|
697
|
-
const upb_MiniTableField field = {16, UPB_SIZE(64,
|
697
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 232), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
698
698
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__ResponseFlags_msg_init);
|
699
699
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
700
700
|
&default_val, &ret);
|
701
701
|
return ret;
|
702
702
|
}
|
703
703
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_response_flags(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
704
|
-
const upb_MiniTableField field = {16, UPB_SIZE(64,
|
704
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 232), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
705
705
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
706
706
|
}
|
707
707
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_metadata(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
708
|
-
const upb_MiniTableField field = {17, UPB_SIZE(68,
|
708
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 240), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
709
709
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
710
710
|
}
|
711
711
|
UPB_INLINE const struct envoy_config_core_v3_Metadata* envoy_data_accesslog_v3_AccessLogCommon_metadata(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
712
712
|
const struct envoy_config_core_v3_Metadata* default_val = NULL;
|
713
713
|
const struct envoy_config_core_v3_Metadata* ret;
|
714
|
-
const upb_MiniTableField field = {17, UPB_SIZE(68,
|
714
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 240), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
715
715
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
716
716
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
717
717
|
&default_val, &ret);
|
718
718
|
return ret;
|
719
719
|
}
|
720
720
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_metadata(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
721
|
-
const upb_MiniTableField field = {17, UPB_SIZE(68,
|
721
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 240), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
722
722
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
723
723
|
}
|
724
724
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
725
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
725
|
+
const upb_MiniTableField field = {18, UPB_SIZE(104, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
726
726
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
727
727
|
}
|
728
728
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_upstream_transport_failure_reason(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
729
729
|
upb_StringView default_val = upb_StringView_FromString("");
|
730
730
|
upb_StringView ret;
|
731
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
731
|
+
const upb_MiniTableField field = {18, UPB_SIZE(104, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
732
732
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
733
733
|
&default_val, &ret);
|
734
734
|
return ret;
|
735
735
|
}
|
736
736
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_route_name(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
737
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
737
|
+
const upb_MiniTableField field = {19, UPB_SIZE(112, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
738
738
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
739
739
|
}
|
740
740
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_route_name(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
741
741
|
upb_StringView default_val = upb_StringView_FromString("");
|
742
742
|
upb_StringView ret;
|
743
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
743
|
+
const upb_MiniTableField field = {19, UPB_SIZE(112, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
744
744
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
745
745
|
&default_val, &ret);
|
746
746
|
return ret;
|
747
747
|
}
|
748
748
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_direct_remote_address(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
749
|
-
const upb_MiniTableField field = {20, UPB_SIZE(72,
|
749
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 248), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
750
750
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
751
751
|
}
|
752
752
|
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) {
|
753
753
|
const struct envoy_config_core_v3_Address* default_val = NULL;
|
754
754
|
const struct envoy_config_core_v3_Address* ret;
|
755
|
-
const upb_MiniTableField field = {20, UPB_SIZE(72,
|
755
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 248), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
756
756
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
757
757
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
758
758
|
&default_val, &ret);
|
759
759
|
return ret;
|
760
760
|
}
|
761
761
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_downstream_direct_remote_address(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
762
|
-
const upb_MiniTableField field = {20, UPB_SIZE(72,
|
762
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 248), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
763
763
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
764
764
|
}
|
765
765
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_filter_state_objects(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
766
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
766
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
767
767
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
768
768
|
}
|
769
769
|
UPB_INLINE size_t envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_size(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
770
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
770
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
771
771
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
772
772
|
return map ? _upb_Map_Size(map) : 0;
|
773
773
|
}
|
774
774
|
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) {
|
775
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
775
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
776
776
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__FilterStateObjectsEntry_msg_init);
|
777
777
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
778
778
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
779
779
|
if (!map) return false;
|
780
780
|
return _upb_Map_Get(map, &key, 0, val, sizeof(*val));
|
781
781
|
}
|
782
|
-
UPB_INLINE
|
783
|
-
|
782
|
+
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_next(const envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView* key, const struct google_protobuf_Any** val,
|
783
|
+
size_t* iter) {
|
784
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
784
785
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__FilterStateObjectsEntry_msg_init);
|
785
786
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
786
787
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
787
|
-
if (!map) return
|
788
|
-
|
788
|
+
if (!map) return false;
|
789
|
+
upb_MessageValue k;
|
790
|
+
upb_MessageValue v;
|
791
|
+
if (!upb_Map_Next(map, &k, &v, iter)) return false;
|
792
|
+
memcpy(key, &k, sizeof(*key));
|
793
|
+
memcpy(val, &v, sizeof(*val));
|
794
|
+
return true;
|
789
795
|
}
|
790
796
|
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
791
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
797
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
792
798
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__FilterStateObjectsEntry_msg_init);
|
793
799
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
794
800
|
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
795
801
|
}
|
796
802
|
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_mutable_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* a) {
|
797
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
803
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
798
804
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__FilterStateObjectsEntry_msg_init);
|
799
805
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
800
806
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, sizeof(struct google_protobuf_Any*), a);
|
801
807
|
}
|
802
808
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_custom_tags(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
803
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
809
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
804
810
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
805
811
|
}
|
806
812
|
UPB_INLINE size_t envoy_data_accesslog_v3_AccessLogCommon_custom_tags_size(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
807
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
813
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
808
814
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
809
815
|
return map ? _upb_Map_Size(map) : 0;
|
810
816
|
}
|
811
817
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_custom_tags_get(const envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key, upb_StringView* val) {
|
812
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
818
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
813
819
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__CustomTagsEntry_msg_init);
|
814
820
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
815
821
|
if (!map) return false;
|
816
822
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
817
823
|
}
|
818
|
-
UPB_INLINE
|
819
|
-
|
824
|
+
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_custom_tags_next(const envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView* key, upb_StringView* val,
|
825
|
+
size_t* iter) {
|
826
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
820
827
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__CustomTagsEntry_msg_init);
|
821
828
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
822
|
-
if (!map) return
|
823
|
-
|
829
|
+
if (!map) return false;
|
830
|
+
upb_MessageValue k;
|
831
|
+
upb_MessageValue v;
|
832
|
+
if (!upb_Map_Next(map, &k, &v, iter)) return false;
|
833
|
+
memcpy(key, &k, sizeof(*key));
|
834
|
+
memcpy(val, &v, sizeof(*val));
|
835
|
+
return true;
|
824
836
|
}
|
825
837
|
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_custom_tags_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
826
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
838
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
827
839
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__CustomTagsEntry_msg_init);
|
828
840
|
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
829
841
|
}
|
830
842
|
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_AccessLogCommon_custom_tags_mutable_upb_map(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_Arena* a) {
|
831
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
843
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
832
844
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__CustomTagsEntry_msg_init);
|
833
845
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
|
834
846
|
}
|
835
847
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_duration(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
836
|
-
const upb_MiniTableField field = {23, UPB_SIZE(84,
|
848
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 272), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
837
849
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
838
850
|
}
|
839
851
|
UPB_INLINE const struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCommon_duration(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
840
852
|
const struct google_protobuf_Duration* default_val = NULL;
|
841
853
|
const struct google_protobuf_Duration* ret;
|
842
|
-
const upb_MiniTableField field = {23, UPB_SIZE(84,
|
854
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 272), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
843
855
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
844
856
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
845
857
|
&default_val, &ret);
|
846
858
|
return ret;
|
847
859
|
}
|
848
860
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_has_duration(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
849
|
-
const upb_MiniTableField field = {23, UPB_SIZE(84,
|
861
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 272), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
850
862
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
851
863
|
}
|
852
864
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_request_attempt_count(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
@@ -862,120 +874,120 @@ UPB_INLINE uint32_t envoy_data_accesslog_v3_AccessLogCommon_upstream_request_att
|
|
862
874
|
return ret;
|
863
875
|
}
|
864
876
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_connection_termination_details(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
865
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
877
|
+
const upb_MiniTableField field = {25, UPB_SIZE(120, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
866
878
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
867
879
|
}
|
868
880
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_connection_termination_details(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
869
881
|
upb_StringView default_val = upb_StringView_FromString("");
|
870
882
|
upb_StringView ret;
|
871
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
883
|
+
const upb_MiniTableField field = {25, UPB_SIZE(120, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
872
884
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
873
885
|
&default_val, &ret);
|
874
886
|
return ret;
|
875
887
|
}
|
876
888
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_stream_id(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
877
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
889
|
+
const upb_MiniTableField field = {26, UPB_SIZE(128, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
878
890
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
879
891
|
}
|
880
892
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_stream_id(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
881
893
|
upb_StringView default_val = upb_StringView_FromString("");
|
882
894
|
upb_StringView ret;
|
883
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
895
|
+
const upb_MiniTableField field = {26, UPB_SIZE(128, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
884
896
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
885
897
|
&default_val, &ret);
|
886
898
|
return ret;
|
887
899
|
}
|
888
900
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_intermediate_log_entry(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
889
|
-
const upb_MiniTableField field = {27,
|
901
|
+
const upb_MiniTableField field = {27, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
890
902
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
891
903
|
}
|
892
904
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_intermediate_log_entry(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
893
905
|
bool default_val = false;
|
894
906
|
bool ret;
|
895
|
-
const upb_MiniTableField field = {27,
|
907
|
+
const upb_MiniTableField field = {27, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
896
908
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
897
909
|
&default_val, &ret);
|
898
910
|
return ret;
|
899
911
|
}
|
900
912
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
901
|
-
const upb_MiniTableField field = {28, UPB_SIZE(
|
913
|
+
const upb_MiniTableField field = {28, UPB_SIZE(136, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
902
914
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
903
915
|
}
|
904
916
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_AccessLogCommon_downstream_transport_failure_reason(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
905
917
|
upb_StringView default_val = upb_StringView_FromString("");
|
906
918
|
upb_StringView ret;
|
907
|
-
const upb_MiniTableField field = {28, UPB_SIZE(
|
919
|
+
const upb_MiniTableField field = {28, UPB_SIZE(136, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
908
920
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
909
921
|
&default_val, &ret);
|
910
922
|
return ret;
|
911
923
|
}
|
912
924
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
913
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
925
|
+
const upb_MiniTableField field = {29, UPB_SIZE(152, 280), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
914
926
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
915
927
|
}
|
916
928
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_downstream_wire_bytes_sent(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
917
929
|
uint64_t default_val = (uint64_t)0ull;
|
918
930
|
uint64_t ret;
|
919
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
931
|
+
const upb_MiniTableField field = {29, UPB_SIZE(152, 280), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
920
932
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
921
933
|
&default_val, &ret);
|
922
934
|
return ret;
|
923
935
|
}
|
924
936
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_downstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
925
|
-
const upb_MiniTableField field = {30, UPB_SIZE(
|
937
|
+
const upb_MiniTableField field = {30, UPB_SIZE(160, 288), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
926
938
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
927
939
|
}
|
928
940
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_downstream_wire_bytes_received(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
929
941
|
uint64_t default_val = (uint64_t)0ull;
|
930
942
|
uint64_t ret;
|
931
|
-
const upb_MiniTableField field = {30, UPB_SIZE(
|
943
|
+
const upb_MiniTableField field = {30, UPB_SIZE(160, 288), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
932
944
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
933
945
|
&default_val, &ret);
|
934
946
|
return ret;
|
935
947
|
}
|
936
948
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
937
|
-
const upb_MiniTableField field = {31, UPB_SIZE(
|
949
|
+
const upb_MiniTableField field = {31, UPB_SIZE(168, 296), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
938
950
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
939
951
|
}
|
940
952
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_upstream_wire_bytes_sent(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
941
953
|
uint64_t default_val = (uint64_t)0ull;
|
942
954
|
uint64_t ret;
|
943
|
-
const upb_MiniTableField field = {31, UPB_SIZE(
|
955
|
+
const upb_MiniTableField field = {31, UPB_SIZE(168, 296), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
944
956
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
945
957
|
&default_val, &ret);
|
946
958
|
return ret;
|
947
959
|
}
|
948
960
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_upstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
949
|
-
const upb_MiniTableField field = {32, UPB_SIZE(
|
961
|
+
const upb_MiniTableField field = {32, UPB_SIZE(176, 304), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
950
962
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
951
963
|
}
|
952
964
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_AccessLogCommon_upstream_wire_bytes_received(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
953
965
|
uint64_t default_val = (uint64_t)0ull;
|
954
966
|
uint64_t ret;
|
955
|
-
const upb_MiniTableField field = {32, UPB_SIZE(
|
967
|
+
const upb_MiniTableField field = {32, UPB_SIZE(176, 304), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
956
968
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
957
969
|
&default_val, &ret);
|
958
970
|
return ret;
|
959
971
|
}
|
960
972
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_clear_access_log_type(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
961
|
-
const upb_MiniTableField field = {33, UPB_SIZE(
|
973
|
+
const upb_MiniTableField field = {33, UPB_SIZE(92, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
962
974
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
963
975
|
}
|
964
976
|
UPB_INLINE int32_t envoy_data_accesslog_v3_AccessLogCommon_access_log_type(const envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
965
977
|
int32_t default_val = 0;
|
966
978
|
int32_t ret;
|
967
|
-
const upb_MiniTableField field = {33, UPB_SIZE(
|
979
|
+
const upb_MiniTableField field = {33, UPB_SIZE(92, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
968
980
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
969
981
|
&default_val, &ret);
|
970
982
|
return ret;
|
971
983
|
}
|
972
984
|
|
973
985
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_sample_rate(envoy_data_accesslog_v3_AccessLogCommon *msg, double value) {
|
974
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
986
|
+
const upb_MiniTableField field = {1, UPB_SIZE(144, 120), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
975
987
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
976
988
|
}
|
977
989
|
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) {
|
978
|
-
const upb_MiniTableField field = {2, UPB_SIZE(12,
|
990
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 128), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
979
991
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
980
992
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
981
993
|
}
|
@@ -988,7 +1000,7 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
988
1000
|
return sub;
|
989
1001
|
}
|
990
1002
|
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) {
|
991
|
-
const upb_MiniTableField field = {3, UPB_SIZE(16,
|
1003
|
+
const upb_MiniTableField field = {3, UPB_SIZE(16, 136), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
992
1004
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
993
1005
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
994
1006
|
}
|
@@ -1001,7 +1013,7 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
1001
1013
|
return sub;
|
1002
1014
|
}
|
1003
1015
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_tls_properties(envoy_data_accesslog_v3_AccessLogCommon *msg, envoy_data_accesslog_v3_TLSProperties* value) {
|
1004
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
1016
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 144), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1005
1017
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties_msg_init);
|
1006
1018
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1007
1019
|
}
|
@@ -1014,7 +1026,7 @@ UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties* envoy_data_accesslog_v3
|
|
1014
1026
|
return sub;
|
1015
1027
|
}
|
1016
1028
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_start_time(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Timestamp* value) {
|
1017
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
1029
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 152), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1018
1030
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
1019
1031
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1020
1032
|
}
|
@@ -1027,7 +1039,7 @@ UPB_INLINE struct google_protobuf_Timestamp* envoy_data_accesslog_v3_AccessLogCo
|
|
1027
1039
|
return sub;
|
1028
1040
|
}
|
1029
1041
|
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) {
|
1030
|
-
const upb_MiniTableField field = {6, UPB_SIZE(28,
|
1042
|
+
const upb_MiniTableField field = {6, UPB_SIZE(28, 160), 68, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1031
1043
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1032
1044
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1033
1045
|
}
|
@@ -1040,7 +1052,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1040
1052
|
return sub;
|
1041
1053
|
}
|
1042
1054
|
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) {
|
1043
|
-
const upb_MiniTableField field = {7, UPB_SIZE(32,
|
1055
|
+
const upb_MiniTableField field = {7, UPB_SIZE(32, 168), 69, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1044
1056
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1045
1057
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1046
1058
|
}
|
@@ -1053,7 +1065,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1053
1065
|
return sub;
|
1054
1066
|
}
|
1055
1067
|
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) {
|
1056
|
-
const upb_MiniTableField field = {8, UPB_SIZE(36,
|
1068
|
+
const upb_MiniTableField field = {8, UPB_SIZE(36, 176), 70, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1057
1069
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1058
1070
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1059
1071
|
}
|
@@ -1066,7 +1078,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1066
1078
|
return sub;
|
1067
1079
|
}
|
1068
1080
|
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) {
|
1069
|
-
const upb_MiniTableField field = {9, UPB_SIZE(40,
|
1081
|
+
const upb_MiniTableField field = {9, UPB_SIZE(40, 184), 71, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1070
1082
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1071
1083
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1072
1084
|
}
|
@@ -1079,7 +1091,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1079
1091
|
return sub;
|
1080
1092
|
}
|
1081
1093
|
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) {
|
1082
|
-
const upb_MiniTableField field = {10, UPB_SIZE(44,
|
1094
|
+
const upb_MiniTableField field = {10, UPB_SIZE(44, 192), 72, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1083
1095
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1084
1096
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1085
1097
|
}
|
@@ -1092,7 +1104,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1092
1104
|
return sub;
|
1093
1105
|
}
|
1094
1106
|
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) {
|
1095
|
-
const upb_MiniTableField field = {11, UPB_SIZE(48,
|
1107
|
+
const upb_MiniTableField field = {11, UPB_SIZE(48, 200), 73, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1096
1108
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1097
1109
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1098
1110
|
}
|
@@ -1105,7 +1117,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1105
1117
|
return sub;
|
1106
1118
|
}
|
1107
1119
|
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) {
|
1108
|
-
const upb_MiniTableField field = {12, UPB_SIZE(52,
|
1120
|
+
const upb_MiniTableField field = {12, UPB_SIZE(52, 208), 74, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1109
1121
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1110
1122
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1111
1123
|
}
|
@@ -1118,7 +1130,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_data_accesslog_v3_AccessLogCom
|
|
1118
1130
|
return sub;
|
1119
1131
|
}
|
1120
1132
|
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) {
|
1121
|
-
const upb_MiniTableField field = {13, UPB_SIZE(56,
|
1133
|
+
const upb_MiniTableField field = {13, UPB_SIZE(56, 216), 75, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1122
1134
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
1123
1135
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1124
1136
|
}
|
@@ -1131,7 +1143,7 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
1131
1143
|
return sub;
|
1132
1144
|
}
|
1133
1145
|
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) {
|
1134
|
-
const upb_MiniTableField field = {14, UPB_SIZE(60,
|
1146
|
+
const upb_MiniTableField field = {14, UPB_SIZE(60, 224), 76, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1135
1147
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
1136
1148
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1137
1149
|
}
|
@@ -1144,11 +1156,11 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
1144
1156
|
return sub;
|
1145
1157
|
}
|
1146
1158
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_cluster(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1147
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
1159
|
+
const upb_MiniTableField field = {15, UPB_SIZE(96, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1148
1160
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1149
1161
|
}
|
1150
1162
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_response_flags(envoy_data_accesslog_v3_AccessLogCommon *msg, envoy_data_accesslog_v3_ResponseFlags* value) {
|
1151
|
-
const upb_MiniTableField field = {16, UPB_SIZE(64,
|
1163
|
+
const upb_MiniTableField field = {16, UPB_SIZE(64, 232), 77, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1152
1164
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__ResponseFlags_msg_init);
|
1153
1165
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1154
1166
|
}
|
@@ -1161,7 +1173,7 @@ UPB_INLINE struct envoy_data_accesslog_v3_ResponseFlags* envoy_data_accesslog_v3
|
|
1161
1173
|
return sub;
|
1162
1174
|
}
|
1163
1175
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_metadata(envoy_data_accesslog_v3_AccessLogCommon *msg, struct envoy_config_core_v3_Metadata* value) {
|
1164
|
-
const upb_MiniTableField field = {17, UPB_SIZE(68,
|
1176
|
+
const upb_MiniTableField field = {17, UPB_SIZE(68, 240), 78, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1165
1177
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
1166
1178
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1167
1179
|
}
|
@@ -1174,15 +1186,15 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_data_accesslog_v3_AccessL
|
|
1174
1186
|
return sub;
|
1175
1187
|
}
|
1176
1188
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1177
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
1189
|
+
const upb_MiniTableField field = {18, UPB_SIZE(104, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1178
1190
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1179
1191
|
}
|
1180
1192
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_route_name(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1181
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
1193
|
+
const upb_MiniTableField field = {19, UPB_SIZE(112, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1182
1194
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1183
1195
|
}
|
1184
1196
|
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) {
|
1185
|
-
const upb_MiniTableField field = {20, UPB_SIZE(72,
|
1197
|
+
const upb_MiniTableField field = {20, UPB_SIZE(72, 248), 79, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1186
1198
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Address_msg_init);
|
1187
1199
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1188
1200
|
}
|
@@ -1195,13 +1207,13 @@ UPB_INLINE struct envoy_config_core_v3_Address* envoy_data_accesslog_v3_AccessLo
|
|
1195
1207
|
return sub;
|
1196
1208
|
}
|
1197
1209
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_clear(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
1198
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
1210
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1199
1211
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1200
1212
|
if (!map) return;
|
1201
1213
|
_upb_Map_Clear(map);
|
1202
1214
|
}
|
1203
1215
|
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) {
|
1204
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
1216
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1205
1217
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__FilterStateObjectsEntry_msg_init);
|
1206
1218
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1207
1219
|
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
@@ -1210,27 +1222,19 @@ UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_set
|
|
1210
1222
|
kUpb_MapInsertStatus_OutOfMemory;
|
1211
1223
|
}
|
1212
1224
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_filter_state_objects_delete(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key) {
|
1213
|
-
const upb_MiniTableField field = {21, UPB_SIZE(76,
|
1225
|
+
const upb_MiniTableField field = {21, UPB_SIZE(76, 256), 0, 16, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1214
1226
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1215
1227
|
if (!map) return false;
|
1216
1228
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
1217
1229
|
}
|
1218
|
-
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) {
|
1219
|
-
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)};
|
1220
|
-
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__FilterStateObjectsEntry_msg_init);
|
1221
|
-
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
1222
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1223
|
-
if (!map) return NULL;
|
1224
|
-
return (envoy_data_accesslog_v3_AccessLogCommon_FilterStateObjectsEntry*)_upb_map_next(map, iter);
|
1225
|
-
}
|
1226
1230
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_custom_tags_clear(envoy_data_accesslog_v3_AccessLogCommon* msg) {
|
1227
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
1231
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1228
1232
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1229
1233
|
if (!map) return;
|
1230
1234
|
_upb_Map_Clear(map);
|
1231
1235
|
}
|
1232
1236
|
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) {
|
1233
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
1237
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1234
1238
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__CustomTagsEntry_msg_init);
|
1235
1239
|
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
1236
1240
|
&field, 0, 0, a);
|
@@ -1238,20 +1242,13 @@ UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_custom_tags_set(envoy_da
|
|
1238
1242
|
kUpb_MapInsertStatus_OutOfMemory;
|
1239
1243
|
}
|
1240
1244
|
UPB_INLINE bool envoy_data_accesslog_v3_AccessLogCommon_custom_tags_delete(envoy_data_accesslog_v3_AccessLogCommon* msg, upb_StringView key) {
|
1241
|
-
const upb_MiniTableField field = {22, UPB_SIZE(80,
|
1245
|
+
const upb_MiniTableField field = {22, UPB_SIZE(80, 264), 0, 17, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1242
1246
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1243
1247
|
if (!map) return false;
|
1244
1248
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
1245
1249
|
}
|
1246
|
-
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) {
|
1247
|
-
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)};
|
1248
|
-
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__AccessLogCommon__CustomTagsEntry_msg_init);
|
1249
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
1250
|
-
if (!map) return NULL;
|
1251
|
-
return (envoy_data_accesslog_v3_AccessLogCommon_CustomTagsEntry*)_upb_map_next(map, iter);
|
1252
|
-
}
|
1253
1250
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_duration(envoy_data_accesslog_v3_AccessLogCommon *msg, struct google_protobuf_Duration* value) {
|
1254
|
-
const upb_MiniTableField field = {23, UPB_SIZE(84,
|
1251
|
+
const upb_MiniTableField field = {23, UPB_SIZE(84, 272), 80, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1255
1252
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
1256
1253
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1257
1254
|
}
|
@@ -1268,39 +1265,39 @@ UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_request_att
|
|
1268
1265
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1269
1266
|
}
|
1270
1267
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_connection_termination_details(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1271
|
-
const upb_MiniTableField field = {25, UPB_SIZE(
|
1268
|
+
const upb_MiniTableField field = {25, UPB_SIZE(120, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1272
1269
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1273
1270
|
}
|
1274
1271
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_stream_id(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1275
|
-
const upb_MiniTableField field = {26, UPB_SIZE(
|
1272
|
+
const upb_MiniTableField field = {26, UPB_SIZE(128, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1276
1273
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1277
1274
|
}
|
1278
1275
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_intermediate_log_entry(envoy_data_accesslog_v3_AccessLogCommon *msg, bool value) {
|
1279
|
-
const upb_MiniTableField field = {27,
|
1276
|
+
const upb_MiniTableField field = {27, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1280
1277
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1281
1278
|
}
|
1282
1279
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_transport_failure_reason(envoy_data_accesslog_v3_AccessLogCommon *msg, upb_StringView value) {
|
1283
|
-
const upb_MiniTableField field = {28, UPB_SIZE(
|
1280
|
+
const upb_MiniTableField field = {28, UPB_SIZE(136, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1284
1281
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1285
1282
|
}
|
1286
1283
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1287
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
1284
|
+
const upb_MiniTableField field = {29, UPB_SIZE(152, 280), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1288
1285
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1289
1286
|
}
|
1290
1287
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_downstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1291
|
-
const upb_MiniTableField field = {30, UPB_SIZE(
|
1288
|
+
const upb_MiniTableField field = {30, UPB_SIZE(160, 288), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1292
1289
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1293
1290
|
}
|
1294
1291
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_wire_bytes_sent(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1295
|
-
const upb_MiniTableField field = {31, UPB_SIZE(
|
1292
|
+
const upb_MiniTableField field = {31, UPB_SIZE(168, 296), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1296
1293
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1297
1294
|
}
|
1298
1295
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_upstream_wire_bytes_received(envoy_data_accesslog_v3_AccessLogCommon *msg, uint64_t value) {
|
1299
|
-
const upb_MiniTableField field = {32, UPB_SIZE(
|
1296
|
+
const upb_MiniTableField field = {32, UPB_SIZE(176, 304), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1300
1297
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1301
1298
|
}
|
1302
1299
|
UPB_INLINE void envoy_data_accesslog_v3_AccessLogCommon_set_access_log_type(envoy_data_accesslog_v3_AccessLogCommon *msg, int32_t value) {
|
1303
|
-
const upb_MiniTableField field = {33, UPB_SIZE(
|
1300
|
+
const upb_MiniTableField field = {33, UPB_SIZE(92, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1304
1301
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1305
1302
|
}
|
1306
1303
|
|
@@ -1523,198 +1520,198 @@ UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_rate_limited(const envoy_d
|
|
1523
1520
|
return ret;
|
1524
1521
|
}
|
1525
1522
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_unauthorized_details(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1526
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1523
|
+
const upb_MiniTableField field = {13, UPB_SIZE(36, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1527
1524
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1528
1525
|
}
|
1529
1526
|
UPB_INLINE const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data_accesslog_v3_ResponseFlags_unauthorized_details(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1530
1527
|
const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* default_val = NULL;
|
1531
1528
|
const envoy_data_accesslog_v3_ResponseFlags_Unauthorized* ret;
|
1532
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1529
|
+
const upb_MiniTableField field = {13, UPB_SIZE(36, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1533
1530
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init);
|
1534
1531
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1535
1532
|
&default_val, &ret);
|
1536
1533
|
return ret;
|
1537
1534
|
}
|
1538
1535
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_has_unauthorized_details(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1539
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1536
|
+
const upb_MiniTableField field = {13, UPB_SIZE(36, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1540
1537
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1541
1538
|
}
|
1542
1539
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_rate_limit_service_error(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1543
|
-
const upb_MiniTableField field = {14,
|
1540
|
+
const upb_MiniTableField field = {14, 21, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1544
1541
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1545
1542
|
}
|
1546
1543
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_rate_limit_service_error(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1547
1544
|
bool default_val = false;
|
1548
1545
|
bool ret;
|
1549
|
-
const upb_MiniTableField field = {14,
|
1546
|
+
const upb_MiniTableField field = {14, 21, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1550
1547
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1551
1548
|
&default_val, &ret);
|
1552
1549
|
return ret;
|
1553
1550
|
}
|
1554
1551
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_downstream_connection_termination(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1555
|
-
const upb_MiniTableField field = {15,
|
1552
|
+
const upb_MiniTableField field = {15, 22, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1556
1553
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1557
1554
|
}
|
1558
1555
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_downstream_connection_termination(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1559
1556
|
bool default_val = false;
|
1560
1557
|
bool ret;
|
1561
|
-
const upb_MiniTableField field = {15,
|
1558
|
+
const upb_MiniTableField field = {15, 22, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1562
1559
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1563
1560
|
&default_val, &ret);
|
1564
1561
|
return ret;
|
1565
1562
|
}
|
1566
1563
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_retry_limit_exceeded(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1567
|
-
const upb_MiniTableField field = {16,
|
1564
|
+
const upb_MiniTableField field = {16, 23, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1568
1565
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1569
1566
|
}
|
1570
1567
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_retry_limit_exceeded(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1571
1568
|
bool default_val = false;
|
1572
1569
|
bool ret;
|
1573
|
-
const upb_MiniTableField field = {16,
|
1570
|
+
const upb_MiniTableField field = {16, 23, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1574
1571
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1575
1572
|
&default_val, &ret);
|
1576
1573
|
return ret;
|
1577
1574
|
}
|
1578
1575
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_stream_idle_timeout(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1579
|
-
const upb_MiniTableField field = {17,
|
1576
|
+
const upb_MiniTableField field = {17, 24, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1580
1577
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1581
1578
|
}
|
1582
1579
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_stream_idle_timeout(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1583
1580
|
bool default_val = false;
|
1584
1581
|
bool ret;
|
1585
|
-
const upb_MiniTableField field = {17,
|
1582
|
+
const upb_MiniTableField field = {17, 24, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1586
1583
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1587
1584
|
&default_val, &ret);
|
1588
1585
|
return ret;
|
1589
1586
|
}
|
1590
1587
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_invalid_envoy_request_headers(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1591
|
-
const upb_MiniTableField field = {18,
|
1588
|
+
const upb_MiniTableField field = {18, 25, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1592
1589
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1593
1590
|
}
|
1594
1591
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_invalid_envoy_request_headers(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1595
1592
|
bool default_val = false;
|
1596
1593
|
bool ret;
|
1597
|
-
const upb_MiniTableField field = {18,
|
1594
|
+
const upb_MiniTableField field = {18, 25, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1598
1595
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1599
1596
|
&default_val, &ret);
|
1600
1597
|
return ret;
|
1601
1598
|
}
|
1602
1599
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_downstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1603
|
-
const upb_MiniTableField field = {19,
|
1600
|
+
const upb_MiniTableField field = {19, 26, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1604
1601
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1605
1602
|
}
|
1606
1603
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_downstream_protocol_error(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1607
1604
|
bool default_val = false;
|
1608
1605
|
bool ret;
|
1609
|
-
const upb_MiniTableField field = {19,
|
1606
|
+
const upb_MiniTableField field = {19, 26, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1610
1607
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1611
1608
|
&default_val, &ret);
|
1612
1609
|
return ret;
|
1613
1610
|
}
|
1614
1611
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_max_stream_duration_reached(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1615
|
-
const upb_MiniTableField field = {20,
|
1612
|
+
const upb_MiniTableField field = {20, 27, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1616
1613
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1617
1614
|
}
|
1618
1615
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_max_stream_duration_reached(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1619
1616
|
bool default_val = false;
|
1620
1617
|
bool ret;
|
1621
|
-
const upb_MiniTableField field = {20,
|
1618
|
+
const upb_MiniTableField field = {20, 27, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1622
1619
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1623
1620
|
&default_val, &ret);
|
1624
1621
|
return ret;
|
1625
1622
|
}
|
1626
1623
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_response_from_cache_filter(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1627
|
-
const upb_MiniTableField field = {21,
|
1624
|
+
const upb_MiniTableField field = {21, 28, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1628
1625
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1629
1626
|
}
|
1630
1627
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_response_from_cache_filter(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1631
1628
|
bool default_val = false;
|
1632
1629
|
bool ret;
|
1633
|
-
const upb_MiniTableField field = {21,
|
1630
|
+
const upb_MiniTableField field = {21, 28, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1634
1631
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1635
1632
|
&default_val, &ret);
|
1636
1633
|
return ret;
|
1637
1634
|
}
|
1638
1635
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_no_filter_config_found(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1639
|
-
const upb_MiniTableField field = {22,
|
1636
|
+
const upb_MiniTableField field = {22, 29, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1640
1637
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1641
1638
|
}
|
1642
1639
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_no_filter_config_found(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1643
1640
|
bool default_val = false;
|
1644
1641
|
bool ret;
|
1645
|
-
const upb_MiniTableField field = {22,
|
1642
|
+
const upb_MiniTableField field = {22, 29, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1646
1643
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1647
1644
|
&default_val, &ret);
|
1648
1645
|
return ret;
|
1649
1646
|
}
|
1650
1647
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_duration_timeout(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1651
|
-
const upb_MiniTableField field = {23,
|
1648
|
+
const upb_MiniTableField field = {23, 30, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1652
1649
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1653
1650
|
}
|
1654
1651
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_duration_timeout(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1655
1652
|
bool default_val = false;
|
1656
1653
|
bool ret;
|
1657
|
-
const upb_MiniTableField field = {23,
|
1654
|
+
const upb_MiniTableField field = {23, 30, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1658
1655
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1659
1656
|
&default_val, &ret);
|
1660
1657
|
return ret;
|
1661
1658
|
}
|
1662
1659
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_upstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1663
|
-
const upb_MiniTableField field = {24,
|
1660
|
+
const upb_MiniTableField field = {24, 31, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1664
1661
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1665
1662
|
}
|
1666
1663
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_upstream_protocol_error(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1667
1664
|
bool default_val = false;
|
1668
1665
|
bool ret;
|
1669
|
-
const upb_MiniTableField field = {24,
|
1666
|
+
const upb_MiniTableField field = {24, 31, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1670
1667
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1671
1668
|
&default_val, &ret);
|
1672
1669
|
return ret;
|
1673
1670
|
}
|
1674
1671
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_no_cluster_found(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1675
|
-
const upb_MiniTableField field = {25,
|
1672
|
+
const upb_MiniTableField field = {25, 32, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1676
1673
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1677
1674
|
}
|
1678
1675
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_no_cluster_found(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1679
1676
|
bool default_val = false;
|
1680
1677
|
bool ret;
|
1681
|
-
const upb_MiniTableField field = {25,
|
1678
|
+
const upb_MiniTableField field = {25, 32, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1682
1679
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1683
1680
|
&default_val, &ret);
|
1684
1681
|
return ret;
|
1685
1682
|
}
|
1686
1683
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_overload_manager(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1687
|
-
const upb_MiniTableField field = {26,
|
1684
|
+
const upb_MiniTableField field = {26, 33, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1688
1685
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1689
1686
|
}
|
1690
1687
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_overload_manager(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1691
1688
|
bool default_val = false;
|
1692
1689
|
bool ret;
|
1693
|
-
const upb_MiniTableField field = {26,
|
1690
|
+
const upb_MiniTableField field = {26, 33, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1694
1691
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1695
1692
|
&default_val, &ret);
|
1696
1693
|
return ret;
|
1697
1694
|
}
|
1698
1695
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_dns_resolution_failure(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1699
|
-
const upb_MiniTableField field = {27,
|
1696
|
+
const upb_MiniTableField field = {27, 34, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1700
1697
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1701
1698
|
}
|
1702
1699
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_dns_resolution_failure(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1703
1700
|
bool default_val = false;
|
1704
1701
|
bool ret;
|
1705
|
-
const upb_MiniTableField field = {27,
|
1702
|
+
const upb_MiniTableField field = {27, 34, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1706
1703
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1707
1704
|
&default_val, &ret);
|
1708
1705
|
return ret;
|
1709
1706
|
}
|
1710
1707
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_clear_downstream_remote_reset(envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1711
|
-
const upb_MiniTableField field = {28,
|
1708
|
+
const upb_MiniTableField field = {28, 35, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1712
1709
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1713
1710
|
}
|
1714
1711
|
UPB_INLINE bool envoy_data_accesslog_v3_ResponseFlags_downstream_remote_reset(const envoy_data_accesslog_v3_ResponseFlags* msg) {
|
1715
1712
|
bool default_val = false;
|
1716
1713
|
bool ret;
|
1717
|
-
const upb_MiniTableField field = {28,
|
1714
|
+
const upb_MiniTableField field = {28, 35, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1718
1715
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1719
1716
|
&default_val, &ret);
|
1720
1717
|
return ret;
|
@@ -1769,7 +1766,7 @@ UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_rate_limited(envoy_dat
|
|
1769
1766
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1770
1767
|
}
|
1771
1768
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_unauthorized_details(envoy_data_accesslog_v3_ResponseFlags *msg, envoy_data_accesslog_v3_ResponseFlags_Unauthorized* value) {
|
1772
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
1769
|
+
const upb_MiniTableField field = {13, UPB_SIZE(36, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1773
1770
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__ResponseFlags__Unauthorized_msg_init);
|
1774
1771
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1775
1772
|
}
|
@@ -1782,63 +1779,63 @@ UPB_INLINE struct envoy_data_accesslog_v3_ResponseFlags_Unauthorized* envoy_data
|
|
1782
1779
|
return sub;
|
1783
1780
|
}
|
1784
1781
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_rate_limit_service_error(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1785
|
-
const upb_MiniTableField field = {14,
|
1782
|
+
const upb_MiniTableField field = {14, 21, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1786
1783
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1787
1784
|
}
|
1788
1785
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_downstream_connection_termination(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1789
|
-
const upb_MiniTableField field = {15,
|
1786
|
+
const upb_MiniTableField field = {15, 22, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1790
1787
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1791
1788
|
}
|
1792
1789
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_retry_limit_exceeded(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1793
|
-
const upb_MiniTableField field = {16,
|
1790
|
+
const upb_MiniTableField field = {16, 23, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1794
1791
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1795
1792
|
}
|
1796
1793
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_stream_idle_timeout(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1797
|
-
const upb_MiniTableField field = {17,
|
1794
|
+
const upb_MiniTableField field = {17, 24, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1798
1795
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1799
1796
|
}
|
1800
1797
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_invalid_envoy_request_headers(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1801
|
-
const upb_MiniTableField field = {18,
|
1798
|
+
const upb_MiniTableField field = {18, 25, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1802
1799
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1803
1800
|
}
|
1804
1801
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_downstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1805
|
-
const upb_MiniTableField field = {19,
|
1802
|
+
const upb_MiniTableField field = {19, 26, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1806
1803
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1807
1804
|
}
|
1808
1805
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_max_stream_duration_reached(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1809
|
-
const upb_MiniTableField field = {20,
|
1806
|
+
const upb_MiniTableField field = {20, 27, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1810
1807
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1811
1808
|
}
|
1812
1809
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_response_from_cache_filter(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1813
|
-
const upb_MiniTableField field = {21,
|
1810
|
+
const upb_MiniTableField field = {21, 28, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1814
1811
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1815
1812
|
}
|
1816
1813
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_no_filter_config_found(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1817
|
-
const upb_MiniTableField field = {22,
|
1814
|
+
const upb_MiniTableField field = {22, 29, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1818
1815
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1819
1816
|
}
|
1820
1817
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_duration_timeout(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1821
|
-
const upb_MiniTableField field = {23,
|
1818
|
+
const upb_MiniTableField field = {23, 30, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1822
1819
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1823
1820
|
}
|
1824
1821
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_upstream_protocol_error(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1825
|
-
const upb_MiniTableField field = {24,
|
1822
|
+
const upb_MiniTableField field = {24, 31, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1826
1823
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1827
1824
|
}
|
1828
1825
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_no_cluster_found(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1829
|
-
const upb_MiniTableField field = {25,
|
1826
|
+
const upb_MiniTableField field = {25, 32, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1830
1827
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1831
1828
|
}
|
1832
1829
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_overload_manager(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1833
|
-
const upb_MiniTableField field = {26,
|
1830
|
+
const upb_MiniTableField field = {26, 33, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1834
1831
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1835
1832
|
}
|
1836
1833
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_dns_resolution_failure(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1837
|
-
const upb_MiniTableField field = {27,
|
1834
|
+
const upb_MiniTableField field = {27, 34, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1838
1835
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1839
1836
|
}
|
1840
1837
|
UPB_INLINE void envoy_data_accesslog_v3_ResponseFlags_set_downstream_remote_reset(envoy_data_accesslog_v3_ResponseFlags *msg, bool value) {
|
1841
|
-
const upb_MiniTableField field = {28,
|
1838
|
+
const upb_MiniTableField field = {28, 35, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1842
1839
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1843
1840
|
}
|
1844
1841
|
|
@@ -1945,88 +1942,88 @@ UPB_INLINE int32_t envoy_data_accesslog_v3_TLSProperties_tls_version(const envoy
|
|
1945
1942
|
return ret;
|
1946
1943
|
}
|
1947
1944
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_tls_cipher_suite(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1948
|
-
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)};
|
1945
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1949
1946
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1950
1947
|
}
|
1951
1948
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_TLSProperties_tls_cipher_suite(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1952
1949
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
1953
1950
|
const struct google_protobuf_UInt32Value* ret;
|
1954
|
-
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)};
|
1951
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1955
1952
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
1956
1953
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1957
1954
|
&default_val, &ret);
|
1958
1955
|
return ret;
|
1959
1956
|
}
|
1960
1957
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_has_tls_cipher_suite(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1961
|
-
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)};
|
1958
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1962
1959
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1963
1960
|
}
|
1964
1961
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_tls_sni_hostname(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1965
|
-
const upb_MiniTableField field = {3, UPB_SIZE(28,
|
1962
|
+
const upb_MiniTableField field = {3, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1966
1963
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1967
1964
|
}
|
1968
1965
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_tls_sni_hostname(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1969
1966
|
upb_StringView default_val = upb_StringView_FromString("");
|
1970
1967
|
upb_StringView ret;
|
1971
|
-
const upb_MiniTableField field = {3, UPB_SIZE(28,
|
1968
|
+
const upb_MiniTableField field = {3, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
1972
1969
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1973
1970
|
&default_val, &ret);
|
1974
1971
|
return ret;
|
1975
1972
|
}
|
1976
1973
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_local_certificate_properties(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1977
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
1974
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1978
1975
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1979
1976
|
}
|
1980
1977
|
UPB_INLINE const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_data_accesslog_v3_TLSProperties_local_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1981
1978
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* default_val = NULL;
|
1982
1979
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* ret;
|
1983
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
1980
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1984
1981
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init);
|
1985
1982
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1986
1983
|
&default_val, &ret);
|
1987
1984
|
return ret;
|
1988
1985
|
}
|
1989
1986
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_has_local_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1990
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
1987
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1991
1988
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1992
1989
|
}
|
1993
1990
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_peer_certificate_properties(envoy_data_accesslog_v3_TLSProperties* msg) {
|
1994
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
1991
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 80), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1995
1992
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1996
1993
|
}
|
1997
1994
|
UPB_INLINE const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* envoy_data_accesslog_v3_TLSProperties_peer_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
1998
1995
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* default_val = NULL;
|
1999
1996
|
const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* ret;
|
2000
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
1997
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 80), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2001
1998
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init);
|
2002
1999
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2003
2000
|
&default_val, &ret);
|
2004
2001
|
return ret;
|
2005
2002
|
}
|
2006
2003
|
UPB_INLINE bool envoy_data_accesslog_v3_TLSProperties_has_peer_certificate_properties(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
2007
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
2004
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 80), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2008
2005
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2009
2006
|
}
|
2010
2007
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_tls_session_id(envoy_data_accesslog_v3_TLSProperties* msg) {
|
2011
|
-
const upb_MiniTableField field = {6, UPB_SIZE(36,
|
2008
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2012
2009
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2013
2010
|
}
|
2014
2011
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_tls_session_id(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
2015
2012
|
upb_StringView default_val = upb_StringView_FromString("");
|
2016
2013
|
upb_StringView ret;
|
2017
|
-
const upb_MiniTableField field = {6, UPB_SIZE(36,
|
2014
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2018
2015
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2019
2016
|
&default_val, &ret);
|
2020
2017
|
return ret;
|
2021
2018
|
}
|
2022
2019
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_clear_ja3_fingerprint(envoy_data_accesslog_v3_TLSProperties* msg) {
|
2023
|
-
const upb_MiniTableField field = {7, UPB_SIZE(44,
|
2020
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2024
2021
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2025
2022
|
}
|
2026
2023
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_ja3_fingerprint(const envoy_data_accesslog_v3_TLSProperties* msg) {
|
2027
2024
|
upb_StringView default_val = upb_StringView_FromString("");
|
2028
2025
|
upb_StringView ret;
|
2029
|
-
const upb_MiniTableField field = {7, UPB_SIZE(44,
|
2026
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2030
2027
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2031
2028
|
&default_val, &ret);
|
2032
2029
|
return ret;
|
@@ -2037,7 +2034,7 @@ UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_version(envoy_data
|
|
2037
2034
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2038
2035
|
}
|
2039
2036
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_cipher_suite(envoy_data_accesslog_v3_TLSProperties *msg, struct google_protobuf_UInt32Value* value) {
|
2040
|
-
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)};
|
2037
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2041
2038
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
2042
2039
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2043
2040
|
}
|
@@ -2050,11 +2047,11 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_TLSProper
|
|
2050
2047
|
return sub;
|
2051
2048
|
}
|
2052
2049
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_sni_hostname(envoy_data_accesslog_v3_TLSProperties *msg, upb_StringView value) {
|
2053
|
-
const upb_MiniTableField field = {3, UPB_SIZE(28,
|
2050
|
+
const upb_MiniTableField field = {3, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2054
2051
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2055
2052
|
}
|
2056
2053
|
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) {
|
2057
|
-
const upb_MiniTableField field = {4, UPB_SIZE(20,
|
2054
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2058
2055
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init);
|
2059
2056
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2060
2057
|
}
|
@@ -2067,7 +2064,7 @@ UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* e
|
|
2067
2064
|
return sub;
|
2068
2065
|
}
|
2069
2066
|
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) {
|
2070
|
-
const upb_MiniTableField field = {5, UPB_SIZE(24,
|
2067
|
+
const upb_MiniTableField field = {5, UPB_SIZE(24, 80), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2071
2068
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties_msg_init);
|
2072
2069
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2073
2070
|
}
|
@@ -2080,11 +2077,11 @@ UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties* e
|
|
2080
2077
|
return sub;
|
2081
2078
|
}
|
2082
2079
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_tls_session_id(envoy_data_accesslog_v3_TLSProperties *msg, upb_StringView value) {
|
2083
|
-
const upb_MiniTableField field = {6, UPB_SIZE(36,
|
2080
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2084
2081
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2085
2082
|
}
|
2086
2083
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_set_ja3_fingerprint(envoy_data_accesslog_v3_TLSProperties *msg, upb_StringView value) {
|
2087
|
-
const upb_MiniTableField field = {7, UPB_SIZE(44,
|
2084
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2088
2085
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2089
2086
|
}
|
2090
2087
|
|
@@ -2125,11 +2122,11 @@ UPB_INLINE char* envoy_data_accesslog_v3_TLSProperties_CertificateProperties_ser
|
|
2125
2122
|
return ptr;
|
2126
2123
|
}
|
2127
2124
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_clear_subject_alt_name(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
2128
|
-
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)};
|
2125
|
+
const upb_MiniTableField field = {1, UPB_SIZE(8, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2129
2126
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2130
2127
|
}
|
2131
2128
|
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) {
|
2132
|
-
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)};
|
2129
|
+
const upb_MiniTableField field = {1, UPB_SIZE(8, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2133
2130
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init);
|
2134
2131
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2135
2132
|
if (arr) {
|
@@ -2141,7 +2138,7 @@ UPB_INLINE const envoy_data_accesslog_v3_TLSProperties_CertificateProperties_Sub
|
|
2141
2138
|
}
|
2142
2139
|
}
|
2143
2140
|
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) {
|
2144
|
-
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)};
|
2141
|
+
const upb_MiniTableField field = {1, UPB_SIZE(8, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2145
2142
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init);
|
2146
2143
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2147
2144
|
if (size) {
|
@@ -2150,7 +2147,7 @@ UPB_INLINE const upb_Array* _envoy_data_accesslog_v3_TLSProperties_CertificatePr
|
|
2150
2147
|
return arr;
|
2151
2148
|
}
|
2152
2149
|
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) {
|
2153
|
-
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)};
|
2150
|
+
const upb_MiniTableField field = {1, UPB_SIZE(8, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2154
2151
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init);
|
2155
2152
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2156
2153
|
&field, arena);
|
@@ -2160,32 +2157,32 @@ UPB_INLINE upb_Array* _envoy_data_accesslog_v3_TLSProperties_CertificateProperti
|
|
2160
2157
|
return arr;
|
2161
2158
|
}
|
2162
2159
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_clear_subject(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
2163
|
-
const upb_MiniTableField field = {2, UPB_SIZE(12,
|
2160
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2164
2161
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2165
2162
|
}
|
2166
2163
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_CertificateProperties_subject(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
2167
2164
|
upb_StringView default_val = upb_StringView_FromString("");
|
2168
2165
|
upb_StringView ret;
|
2169
|
-
const upb_MiniTableField field = {2, UPB_SIZE(12,
|
2166
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2170
2167
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2171
2168
|
&default_val, &ret);
|
2172
2169
|
return ret;
|
2173
2170
|
}
|
2174
2171
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_clear_issuer(envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
2175
|
-
const upb_MiniTableField field = {3, UPB_SIZE(20,
|
2172
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2176
2173
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2177
2174
|
}
|
2178
2175
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_TLSProperties_CertificateProperties_issuer(const envoy_data_accesslog_v3_TLSProperties_CertificateProperties* msg) {
|
2179
2176
|
upb_StringView default_val = upb_StringView_FromString("");
|
2180
2177
|
upb_StringView ret;
|
2181
|
-
const upb_MiniTableField field = {3, UPB_SIZE(20,
|
2178
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2182
2179
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2183
2180
|
&default_val, &ret);
|
2184
2181
|
return ret;
|
2185
2182
|
}
|
2186
2183
|
|
2187
2184
|
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) {
|
2188
|
-
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2185
|
+
upb_MiniTableField field = {1, UPB_SIZE(8, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2189
2186
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init);
|
2190
2187
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2191
2188
|
if (arr) {
|
@@ -2197,12 +2194,12 @@ UPB_INLINE envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAl
|
|
2197
2194
|
}
|
2198
2195
|
}
|
2199
2196
|
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) {
|
2200
|
-
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2197
|
+
upb_MiniTableField field = {1, UPB_SIZE(8, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2201
2198
|
return (envoy_data_accesslog_v3_TLSProperties_CertificateProperties_SubjectAltName**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2202
2199
|
&field, size, arena);
|
2203
2200
|
}
|
2204
2201
|
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) {
|
2205
|
-
upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2202
|
+
upb_MiniTableField field = {1, UPB_SIZE(8, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2206
2203
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__TLSProperties__CertificateProperties__SubjectAltName_msg_init);
|
2207
2204
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2208
2205
|
UPB_UPCAST(msg), &field, arena);
|
@@ -2217,11 +2214,11 @@ UPB_INLINE struct envoy_data_accesslog_v3_TLSProperties_CertificateProperties_Su
|
|
2217
2214
|
return sub;
|
2218
2215
|
}
|
2219
2216
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_set_subject(envoy_data_accesslog_v3_TLSProperties_CertificateProperties *msg, upb_StringView value) {
|
2220
|
-
const upb_MiniTableField field = {2, UPB_SIZE(12,
|
2217
|
+
const upb_MiniTableField field = {2, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2221
2218
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2222
2219
|
}
|
2223
2220
|
UPB_INLINE void envoy_data_accesslog_v3_TLSProperties_CertificateProperties_set_issuer(envoy_data_accesslog_v3_TLSProperties_CertificateProperties *msg, upb_StringView value) {
|
2224
|
-
const upb_MiniTableField field = {3, UPB_SIZE(20,
|
2221
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2225
2222
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2226
2223
|
}
|
2227
2224
|
|
@@ -2386,90 +2383,90 @@ UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_authorit
|
|
2386
2383
|
return ret;
|
2387
2384
|
}
|
2388
2385
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_port(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2389
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2386
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 144), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2390
2387
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2391
2388
|
}
|
2392
2389
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPRequestProperties_port(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2393
2390
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
2394
2391
|
const struct google_protobuf_UInt32Value* ret;
|
2395
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2392
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 144), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2396
2393
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
2397
2394
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2398
2395
|
&default_val, &ret);
|
2399
2396
|
return ret;
|
2400
2397
|
}
|
2401
2398
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_has_port(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2402
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2399
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 144), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2403
2400
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2404
2401
|
}
|
2405
2402
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_path(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2406
|
-
const upb_MiniTableField field = {5, UPB_SIZE(40,
|
2403
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2407
2404
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2408
2405
|
}
|
2409
2406
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_path(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2410
2407
|
upb_StringView default_val = upb_StringView_FromString("");
|
2411
2408
|
upb_StringView ret;
|
2412
|
-
const upb_MiniTableField field = {5, UPB_SIZE(40,
|
2409
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2413
2410
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2414
2411
|
&default_val, &ret);
|
2415
2412
|
return ret;
|
2416
2413
|
}
|
2417
2414
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_user_agent(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2418
|
-
const upb_MiniTableField field = {6, UPB_SIZE(48,
|
2415
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2419
2416
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2420
2417
|
}
|
2421
2418
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_user_agent(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2422
2419
|
upb_StringView default_val = upb_StringView_FromString("");
|
2423
2420
|
upb_StringView ret;
|
2424
|
-
const upb_MiniTableField field = {6, UPB_SIZE(48,
|
2421
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2425
2422
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2426
2423
|
&default_val, &ret);
|
2427
2424
|
return ret;
|
2428
2425
|
}
|
2429
2426
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_referer(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2430
|
-
const upb_MiniTableField field = {7, UPB_SIZE(56,
|
2427
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2431
2428
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2432
2429
|
}
|
2433
2430
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_referer(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2434
2431
|
upb_StringView default_val = upb_StringView_FromString("");
|
2435
2432
|
upb_StringView ret;
|
2436
|
-
const upb_MiniTableField field = {7, UPB_SIZE(56,
|
2433
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2437
2434
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2438
2435
|
&default_val, &ret);
|
2439
2436
|
return ret;
|
2440
2437
|
}
|
2441
2438
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_forwarded_for(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2442
|
-
const upb_MiniTableField field = {8, UPB_SIZE(64,
|
2439
|
+
const upb_MiniTableField field = {8, UPB_SIZE(64, 96), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2443
2440
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2444
2441
|
}
|
2445
2442
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_forwarded_for(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2446
2443
|
upb_StringView default_val = upb_StringView_FromString("");
|
2447
2444
|
upb_StringView ret;
|
2448
|
-
const upb_MiniTableField field = {8, UPB_SIZE(64,
|
2445
|
+
const upb_MiniTableField field = {8, UPB_SIZE(64, 96), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2449
2446
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2450
2447
|
&default_val, &ret);
|
2451
2448
|
return ret;
|
2452
2449
|
}
|
2453
2450
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_request_id(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2454
|
-
const upb_MiniTableField field = {9, UPB_SIZE(72,
|
2451
|
+
const upb_MiniTableField field = {9, UPB_SIZE(72, 112), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2455
2452
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2456
2453
|
}
|
2457
2454
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_request_id(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2458
2455
|
upb_StringView default_val = upb_StringView_FromString("");
|
2459
2456
|
upb_StringView ret;
|
2460
|
-
const upb_MiniTableField field = {9, UPB_SIZE(72,
|
2457
|
+
const upb_MiniTableField field = {9, UPB_SIZE(72, 112), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2461
2458
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2462
2459
|
&default_val, &ret);
|
2463
2460
|
return ret;
|
2464
2461
|
}
|
2465
2462
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_clear_original_path(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2466
|
-
const upb_MiniTableField field = {10, UPB_SIZE(80,
|
2463
|
+
const upb_MiniTableField field = {10, UPB_SIZE(80, 128), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2467
2464
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2468
2465
|
}
|
2469
2466
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPRequestProperties_original_path(const envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2470
2467
|
upb_StringView default_val = upb_StringView_FromString("");
|
2471
2468
|
upb_StringView ret;
|
2472
|
-
const upb_MiniTableField field = {10, UPB_SIZE(80,
|
2469
|
+
const upb_MiniTableField field = {10, UPB_SIZE(80, 128), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2473
2470
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2474
2471
|
&default_val, &ret);
|
2475
2472
|
return ret;
|
@@ -2514,12 +2511,18 @@ UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_ge
|
|
2514
2511
|
if (!map) return false;
|
2515
2512
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
2516
2513
|
}
|
2517
|
-
UPB_INLINE
|
2514
|
+
UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_next(const envoy_data_accesslog_v3_HTTPRequestProperties* msg, upb_StringView* key, upb_StringView* val,
|
2515
|
+
size_t* iter) {
|
2518
2516
|
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)};
|
2519
2517
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPRequestProperties__RequestHeadersEntry_msg_init);
|
2520
2518
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2521
|
-
if (!map) return
|
2522
|
-
|
2519
|
+
if (!map) return false;
|
2520
|
+
upb_MessageValue k;
|
2521
|
+
upb_MessageValue v;
|
2522
|
+
if (!upb_Map_Next(map, &k, &v, iter)) return false;
|
2523
|
+
memcpy(key, &k, sizeof(*key));
|
2524
|
+
memcpy(val, &v, sizeof(*val));
|
2525
|
+
return true;
|
2523
2526
|
}
|
2524
2527
|
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_upb_map(envoy_data_accesslog_v3_HTTPRequestProperties* msg) {
|
2525
2528
|
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)};
|
@@ -2569,7 +2572,7 @@ UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_authority(envo
|
|
2569
2572
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2570
2573
|
}
|
2571
2574
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_port(envoy_data_accesslog_v3_HTTPRequestProperties *msg, struct google_protobuf_UInt32Value* value) {
|
2572
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2575
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 144), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2573
2576
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
2574
2577
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2575
2578
|
}
|
@@ -2582,27 +2585,27 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPReque
|
|
2582
2585
|
return sub;
|
2583
2586
|
}
|
2584
2587
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_path(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2585
|
-
const upb_MiniTableField field = {5, UPB_SIZE(40,
|
2588
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2586
2589
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2587
2590
|
}
|
2588
2591
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_user_agent(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2589
|
-
const upb_MiniTableField field = {6, UPB_SIZE(48,
|
2592
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2590
2593
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2591
2594
|
}
|
2592
2595
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_referer(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2593
|
-
const upb_MiniTableField field = {7, UPB_SIZE(56,
|
2596
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2594
2597
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2595
2598
|
}
|
2596
2599
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_forwarded_for(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2597
|
-
const upb_MiniTableField field = {8, UPB_SIZE(64,
|
2600
|
+
const upb_MiniTableField field = {8, UPB_SIZE(64, 96), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2598
2601
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2599
2602
|
}
|
2600
2603
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_request_id(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2601
|
-
const upb_MiniTableField field = {9, UPB_SIZE(72,
|
2604
|
+
const upb_MiniTableField field = {9, UPB_SIZE(72, 112), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2602
2605
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2603
2606
|
}
|
2604
2607
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_original_path(envoy_data_accesslog_v3_HTTPRequestProperties *msg, upb_StringView value) {
|
2605
|
-
const upb_MiniTableField field = {10, UPB_SIZE(80,
|
2608
|
+
const upb_MiniTableField field = {10, UPB_SIZE(80, 128), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2606
2609
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2607
2610
|
}
|
2608
2611
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_request_headers_bytes(envoy_data_accesslog_v3_HTTPRequestProperties *msg, uint64_t value) {
|
@@ -2633,13 +2636,6 @@ UPB_INLINE bool envoy_data_accesslog_v3_HTTPRequestProperties_request_headers_de
|
|
2633
2636
|
if (!map) return false;
|
2634
2637
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
2635
2638
|
}
|
2636
|
-
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) {
|
2637
|
-
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)};
|
2638
|
-
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPRequestProperties__RequestHeadersEntry_msg_init);
|
2639
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2640
|
-
if (!map) return NULL;
|
2641
|
-
return (envoy_data_accesslog_v3_HTTPRequestProperties_RequestHeadersEntry*)_upb_map_next(map, iter);
|
2642
|
-
}
|
2643
2639
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPRequestProperties_set_upstream_header_bytes_sent(envoy_data_accesslog_v3_HTTPRequestProperties *msg, uint64_t value) {
|
2644
2640
|
const upb_MiniTableField field = {14, UPB_SIZE(104, 176), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2645
2641
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
@@ -2703,120 +2699,132 @@ UPB_INLINE char* envoy_data_accesslog_v3_HTTPResponseProperties_serialize_ex(con
|
|
2703
2699
|
return ptr;
|
2704
2700
|
}
|
2705
2701
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_code(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2706
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
2702
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2707
2703
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2708
2704
|
}
|
2709
2705
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPResponseProperties_response_code(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2710
2706
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
2711
2707
|
const struct google_protobuf_UInt32Value* ret;
|
2712
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
2708
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2713
2709
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
2714
2710
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2715
2711
|
&default_val, &ret);
|
2716
2712
|
return ret;
|
2717
2713
|
}
|
2718
2714
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_has_response_code(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2719
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
2715
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2720
2716
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2721
2717
|
}
|
2722
2718
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_headers_bytes(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2723
|
-
const upb_MiniTableField field = {2,
|
2719
|
+
const upb_MiniTableField field = {2, UPB_SIZE(32, 40), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2724
2720
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2725
2721
|
}
|
2726
2722
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_bytes(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2727
2723
|
uint64_t default_val = (uint64_t)0ull;
|
2728
2724
|
uint64_t ret;
|
2729
|
-
const upb_MiniTableField field = {2,
|
2725
|
+
const upb_MiniTableField field = {2, UPB_SIZE(32, 40), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2730
2726
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2731
2727
|
&default_val, &ret);
|
2732
2728
|
return ret;
|
2733
2729
|
}
|
2734
2730
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_body_bytes(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2735
|
-
const upb_MiniTableField field = {3,
|
2731
|
+
const upb_MiniTableField field = {3, UPB_SIZE(40, 48), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2736
2732
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2737
2733
|
}
|
2738
2734
|
UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPResponseProperties_response_body_bytes(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2739
2735
|
uint64_t default_val = (uint64_t)0ull;
|
2740
2736
|
uint64_t ret;
|
2741
|
-
const upb_MiniTableField field = {3,
|
2737
|
+
const upb_MiniTableField field = {3, UPB_SIZE(40, 48), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2742
2738
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2743
2739
|
&default_val, &ret);
|
2744
2740
|
return ret;
|
2745
2741
|
}
|
2746
2742
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_headers(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2747
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2743
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2748
2744
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2749
2745
|
}
|
2750
2746
|
UPB_INLINE size_t envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_size(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2751
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2747
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2752
2748
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2753
2749
|
return map ? _upb_Map_Size(map) : 0;
|
2754
2750
|
}
|
2755
2751
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_get(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key, upb_StringView* val) {
|
2756
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2752
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2757
2753
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseHeadersEntry_msg_init);
|
2758
2754
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2759
2755
|
if (!map) return false;
|
2760
2756
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
2761
2757
|
}
|
2762
|
-
UPB_INLINE
|
2763
|
-
|
2758
|
+
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_next(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView* key, upb_StringView* val,
|
2759
|
+
size_t* iter) {
|
2760
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2764
2761
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseHeadersEntry_msg_init);
|
2765
2762
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2766
|
-
if (!map) return
|
2767
|
-
|
2763
|
+
if (!map) return false;
|
2764
|
+
upb_MessageValue k;
|
2765
|
+
upb_MessageValue v;
|
2766
|
+
if (!upb_Map_Next(map, &k, &v, iter)) return false;
|
2767
|
+
memcpy(key, &k, sizeof(*key));
|
2768
|
+
memcpy(val, &v, sizeof(*val));
|
2769
|
+
return true;
|
2768
2770
|
}
|
2769
2771
|
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2770
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2772
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2771
2773
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseHeadersEntry_msg_init);
|
2772
2774
|
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2773
2775
|
}
|
2774
2776
|
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_mutable_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_Arena* a) {
|
2775
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2777
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2776
2778
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseHeadersEntry_msg_init);
|
2777
2779
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
|
2778
2780
|
}
|
2779
2781
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_trailers(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2780
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2782
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2781
2783
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2782
2784
|
}
|
2783
2785
|
UPB_INLINE size_t envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_size(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2784
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2786
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2785
2787
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2786
2788
|
return map ? _upb_Map_Size(map) : 0;
|
2787
2789
|
}
|
2788
2790
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_get(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key, upb_StringView* val) {
|
2789
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2791
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2790
2792
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseTrailersEntry_msg_init);
|
2791
2793
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2792
2794
|
if (!map) return false;
|
2793
2795
|
return _upb_Map_Get(map, &key, 0, val, 0);
|
2794
2796
|
}
|
2795
|
-
UPB_INLINE
|
2796
|
-
|
2797
|
+
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_next(const envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView* key, upb_StringView* val,
|
2798
|
+
size_t* iter) {
|
2799
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2797
2800
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseTrailersEntry_msg_init);
|
2798
2801
|
const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2799
|
-
if (!map) return
|
2800
|
-
|
2802
|
+
if (!map) return false;
|
2803
|
+
upb_MessageValue k;
|
2804
|
+
upb_MessageValue v;
|
2805
|
+
if (!upb_Map_Next(map, &k, &v, iter)) return false;
|
2806
|
+
memcpy(key, &k, sizeof(*key));
|
2807
|
+
memcpy(val, &v, sizeof(*val));
|
2808
|
+
return true;
|
2801
2809
|
}
|
2802
2810
|
UPB_INLINE const upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2803
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2811
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2804
2812
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseTrailersEntry_msg_init);
|
2805
2813
|
return upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2806
2814
|
}
|
2807
2815
|
UPB_INLINE upb_Map* _envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_mutable_upb_map(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_Arena* a) {
|
2808
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2816
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2809
2817
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseTrailersEntry_msg_init);
|
2810
2818
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, 0, a);
|
2811
2819
|
}
|
2812
2820
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_clear_response_code_details(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2813
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2821
|
+
const upb_MiniTableField field = {6, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2814
2822
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2815
2823
|
}
|
2816
2824
|
UPB_INLINE upb_StringView envoy_data_accesslog_v3_HTTPResponseProperties_response_code_details(const envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2817
2825
|
upb_StringView default_val = upb_StringView_FromString("");
|
2818
2826
|
upb_StringView ret;
|
2819
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2827
|
+
const upb_MiniTableField field = {6, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2820
2828
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2821
2829
|
&default_val, &ret);
|
2822
2830
|
return ret;
|
@@ -2847,7 +2855,7 @@ UPB_INLINE uint64_t envoy_data_accesslog_v3_HTTPResponseProperties_downstream_he
|
|
2847
2855
|
}
|
2848
2856
|
|
2849
2857
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_code(envoy_data_accesslog_v3_HTTPResponseProperties *msg, struct google_protobuf_UInt32Value* value) {
|
2850
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
2858
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2851
2859
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
2852
2860
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2853
2861
|
}
|
@@ -2860,21 +2868,21 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_data_accesslog_v3_HTTPRespo
|
|
2860
2868
|
return sub;
|
2861
2869
|
}
|
2862
2870
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_headers_bytes(envoy_data_accesslog_v3_HTTPResponseProperties *msg, uint64_t value) {
|
2863
|
-
const upb_MiniTableField field = {2,
|
2871
|
+
const upb_MiniTableField field = {2, UPB_SIZE(32, 40), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2864
2872
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2865
2873
|
}
|
2866
2874
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_body_bytes(envoy_data_accesslog_v3_HTTPResponseProperties *msg, uint64_t value) {
|
2867
|
-
const upb_MiniTableField field = {3,
|
2875
|
+
const upb_MiniTableField field = {3, UPB_SIZE(40, 48), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2868
2876
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2869
2877
|
}
|
2870
2878
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_clear(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2871
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2879
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2872
2880
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2873
2881
|
if (!map) return;
|
2874
2882
|
_upb_Map_Clear(map);
|
2875
2883
|
}
|
2876
2884
|
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) {
|
2877
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2885
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2878
2886
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseHeadersEntry_msg_init);
|
2879
2887
|
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
2880
2888
|
&field, 0, 0, a);
|
@@ -2882,26 +2890,19 @@ UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_
|
|
2882
2890
|
kUpb_MapInsertStatus_OutOfMemory;
|
2883
2891
|
}
|
2884
2892
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_headers_delete(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key) {
|
2885
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
2893
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2886
2894
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2887
2895
|
if (!map) return false;
|
2888
2896
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
2889
2897
|
}
|
2890
|
-
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) {
|
2891
|
-
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)};
|
2892
|
-
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseHeadersEntry_msg_init);
|
2893
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2894
|
-
if (!map) return NULL;
|
2895
|
-
return (envoy_data_accesslog_v3_HTTPResponseProperties_ResponseHeadersEntry*)_upb_map_next(map, iter);
|
2896
|
-
}
|
2897
2898
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_clear(envoy_data_accesslog_v3_HTTPResponseProperties* msg) {
|
2898
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2899
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2899
2900
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2900
2901
|
if (!map) return;
|
2901
2902
|
_upb_Map_Clear(map);
|
2902
2903
|
}
|
2903
2904
|
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) {
|
2904
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2905
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2905
2906
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseTrailersEntry_msg_init);
|
2906
2907
|
upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg),
|
2907
2908
|
&field, 0, 0, a);
|
@@ -2909,20 +2910,13 @@ UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers
|
|
2909
2910
|
kUpb_MapInsertStatus_OutOfMemory;
|
2910
2911
|
}
|
2911
2912
|
UPB_INLINE bool envoy_data_accesslog_v3_HTTPResponseProperties_response_trailers_delete(envoy_data_accesslog_v3_HTTPResponseProperties* msg, upb_StringView key) {
|
2912
|
-
const upb_MiniTableField field = {5, UPB_SIZE(20,
|
2913
|
+
const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 2, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2913
2914
|
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2914
2915
|
if (!map) return false;
|
2915
2916
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
2916
2917
|
}
|
2917
|
-
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) {
|
2918
|
-
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)};
|
2919
|
-
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__data__accesslog__v3__HTTPResponseProperties__ResponseTrailersEntry_msg_init);
|
2920
|
-
upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field);
|
2921
|
-
if (!map) return NULL;
|
2922
|
-
return (envoy_data_accesslog_v3_HTTPResponseProperties_ResponseTrailersEntry*)_upb_map_next(map, iter);
|
2923
|
-
}
|
2924
2918
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_response_code_details(envoy_data_accesslog_v3_HTTPResponseProperties *msg, upb_StringView value) {
|
2925
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
2919
|
+
const upb_MiniTableField field = {6, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
2926
2920
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2927
2921
|
}
|
2928
2922
|
UPB_INLINE void envoy_data_accesslog_v3_HTTPResponseProperties_set_upstream_header_bytes_received(envoy_data_accesslog_v3_HTTPResponseProperties *msg, uint64_t value) {
|