grpc 1.83.1 → 1.84.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 +21 -17
- data/include/grpc/credentials.h +10 -0
- data/include/grpc/grpc_security_constants.h +2 -0
- data/include/grpc/impl/channel_arg_names.h +9 -0
- data/src/core/call/call_filters.h +4 -2
- data/src/core/call/client_call.cc +20 -8
- data/src/core/call/client_call.h +4 -0
- data/src/core/call/interception_chain.cc +2 -0
- data/src/core/call/interception_chain.h +14 -1
- data/src/core/call/metadata.cc +1 -3
- data/src/core/call/metadata_batch.h +13 -5
- data/src/core/call/server_call.cc +31 -14
- data/src/core/call/server_call.h +4 -0
- data/src/core/channelz/text_encode.cc +9 -4
- data/src/core/channelz/v2tov1/convert.cc +2 -2
- data/src/core/client_channel/backup_poller.cc +1 -2
- data/src/core/client_channel/client_channel.cc +6 -33
- data/src/core/client_channel/client_channel_filter.cc +22 -55
- data/src/core/client_channel/client_channel_filter.h +2 -2
- data/src/core/client_channel/client_channel_service_config.cc +3 -19
- data/src/core/client_channel/direct_channel.cc +7 -1
- data/src/core/client_channel/direct_channel.h +2 -2
- data/src/core/client_channel/load_balanced_call_destination.cc +5 -3
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +5 -12
- data/src/core/client_channel/subchannel.cc +310 -1058
- data/src/core/client_channel/subchannel.h +44 -329
- data/src/core/client_channel/subchannel_metrics.cc +48 -0
- data/src/core/client_channel/subchannel_metrics.h +60 -0
- data/src/core/credentials/call/external/file_external_account_credentials.cc +1 -1
- data/src/core/credentials/call/external/url_external_account_credentials.cc +2 -3
- data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +8 -24
- data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.h +3 -6
- data/src/core/credentials/call/gdch_service_account/gdch_service_account_credentials.cc +525 -0
- data/src/core/credentials/call/gdch_service_account/gdch_service_account_credentials.h +138 -0
- data/src/core/credentials/call/json_util.h +1 -0
- data/src/core/credentials/call/jwt/json_token.cc +10 -2
- data/src/core/credentials/call/jwt/jwt_verifier.cc +15 -1
- data/src/core/credentials/call/jwt_token_file/jwt_token_file_call_credentials.cc +1 -1
- data/src/core/credentials/call/oauth2/oauth2_credentials.cc +42 -79
- data/src/core/credentials/call/oauth2/oauth2_credentials.h +2 -5
- data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.cc +52 -31
- data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.h +21 -8
- data/src/core/credentials/transport/google_default/google_default_credentials.cc +3 -4
- data/src/core/credentials/transport/ssl/ssl_credentials.cc +59 -72
- data/src/core/credentials/transport/ssl/ssl_credentials.h +9 -8
- data/src/core/credentials/transport/ssl/ssl_security_connector.cc +12 -6
- data/src/core/credentials/transport/ssl/ssl_security_connector.h +4 -4
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +29 -18
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +9 -6
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +45 -56
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +5 -4
- data/src/core/credentials/transport/tls/grpc_tls_certificate_selector.h +26 -0
- data/src/core/credentials/transport/tls/grpc_tls_crl_provider.cc +1 -1
- data/src/core/credentials/transport/tls/load_system_roots.h +2 -6
- data/src/core/credentials/transport/tls/load_system_roots_fallback.cc +2 -4
- data/src/core/credentials/transport/tls/load_system_roots_supported.cc +13 -15
- data/src/core/credentials/transport/tls/load_system_roots_supported.h +3 -2
- data/src/core/credentials/transport/tls/load_system_roots_windows.cc +5 -8
- data/src/core/credentials/transport/tls/spiffe_utils.cc +1 -1
- data/src/core/credentials/transport/tls/ssl_utils.cc +39 -28
- data/src/core/credentials/transport/tls/ssl_utils.h +12 -49
- data/src/core/credentials/transport/tls/tls_security_connector.cc +48 -33
- data/src/core/credentials/transport/tls/tls_security_connector.h +31 -10
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +15 -11
- data/src/core/ext/filters/http/http_filters_plugin.cc +20 -9
- data/src/core/ext/filters/rbac/rbac_filter.cc +43 -21
- data/src/core/ext/filters/rbac/rbac_filter.h +21 -3
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +2 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +6 -20
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +32 -67
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +2 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +78 -4
- data/src/core/ext/transport/chttp2/transport/frame.h +2 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/goaway.h +7 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +5 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +3 -1
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.cc +141 -130
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.h +22 -22
- data/src/core/ext/transport/chttp2/transport/http2_server_transport.cc +402 -269
- data/src/core/ext/transport/chttp2/transport/http2_server_transport.h +80 -49
- data/src/core/ext/transport/chttp2/transport/http2_settings_promises.h +1 -2
- data/src/core/ext/transport/chttp2/transport/http2_status.h +38 -37
- data/src/core/ext/transport/chttp2/transport/http2_transport.cc +178 -5
- data/src/core/ext/transport/chttp2/transport/http2_transport.h +345 -5
- data/src/core/ext/transport/chttp2/transport/parsing.cc +5 -5
- data/src/core/ext/transport/chttp2/transport/ping_promise.cc +3 -2
- data/src/core/ext/transport/chttp2/transport/ping_promise.h +25 -5
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/read_context.h +30 -3
- data/src/core/ext/transport/chttp2/transport/stream.h +65 -23
- data/src/core/ext/transport/chttp2/transport/writing.cc +0 -3
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -5
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +4 -17
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/ext_proc/v3/ext_proc.upb.h +1912 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/ext_proc/v3/ext_proc.upb_minitable.c +300 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/ext_proc/v3/ext_proc.upb_minitable.h +37 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/ext_proc/v3/processing_mode.upb.h +187 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/ext_proc/v3/processing_mode.upb_minitable.c +64 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/ext_proc/v3/processing_mode.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/service/ext_proc/v3/external_processor.upb.h +2362 -0
- data/src/core/ext/upb-gen/envoy/service/ext_proc/v3/external_processor.upb_minitable.c +556 -0
- data/src/core/ext/upb-gen/envoy/service/ext_proc/v3/external_processor.upb_minitable.h +47 -0
- data/src/core/ext/upb-gen/{src/proto/grpc/channelz → grpc/channelz/v1}/channelz.upb.h +5 -5
- data/src/core/ext/upb-gen/{src/proto/grpc/channelz → grpc/channelz/v1}/channelz.upb_minitable.c +3 -3
- data/src/core/ext/upb-gen/{src/proto/grpc/channelz → grpc/channelz/v1}/channelz.upb_minitable.h +5 -5
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/ext_proc/v3/ext_proc.upbdefs.c +453 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/ext_proc/v3/ext_proc.upbdefs.h +67 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/ext_proc/v3/processing_mode.upbdefs.c +142 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/ext_proc/v3/processing_mode.upbdefs.h +37 -0
- data/src/core/ext/upbdefs-gen/grpc/channelz/v1/channelz.upbdefs.c +715 -0
- data/src/core/ext/upbdefs-gen/{src/proto/grpc/channelz → grpc/channelz/v1}/channelz.upbdefs.h +44 -44
- data/src/core/filter/auth/server_auth_filter.cc +2 -3
- data/src/core/filter/composite/composite_filter.cc +45 -33
- data/src/core/filter/composite/composite_filter.h +5 -4
- data/src/core/filter/ext_proc/ext_proc_filter.cc +224 -0
- data/src/core/filter/ext_proc/ext_proc_filter.h +155 -0
- data/src/core/filter/ext_proc/ext_proc_messages.cc +701 -0
- data/src/core/filter/ext_proc/ext_proc_messages.h +297 -0
- data/src/core/filter/filter_args.h +13 -2
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +30 -3
- data/src/core/handshaker/security/security_handshaker.cc +9 -6
- data/src/core/lib/channel/channel_stack.cc +3 -0
- data/src/core/lib/channel/channel_stack.h +2 -0
- data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -2
- data/src/core/lib/channel/promise_based_filter.cc +132 -20
- data/src/core/lib/channel/promise_based_filter.h +42 -12
- data/src/core/lib/compression/compression_internal.cc +4 -5
- data/src/core/lib/debug/trace_flags.cc +8 -0
- data/src/core/lib/debug/trace_flags.h +3 -0
- data/src/core/lib/event_engine/ares_resolver.cc +54 -50
- data/src/core/lib/event_engine/ares_resolver.h +3 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +3 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +4 -10
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +74 -33
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +4 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +6 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +3 -0
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +3 -0
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +1 -3
- data/src/core/lib/experiments/experiments.cc +60 -96
- data/src/core/lib/experiments/experiments.h +34 -50
- data/src/core/lib/iomgr/cfstream_handle.cc +2 -6
- data/src/core/lib/iomgr/endpoint_cfstream.cc +3 -10
- data/src/core/lib/iomgr/error.cc +2 -6
- data/src/core/lib/iomgr/error_cfstream.cc +1 -1
- data/src/core/lib/iomgr/ev_poll_posix.cc +5 -9
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +1 -1
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +1 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +1 -2
- data/src/core/lib/iomgr/iomgr_posix.cc +0 -4
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +0 -4
- data/src/core/lib/iomgr/iomgr_windows.cc +0 -4
- data/src/core/lib/iomgr/socket_factory_posix.h +1 -1
- data/src/core/lib/iomgr/socket_utils_posix.cc +3 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
- data/src/core/lib/iomgr/systemd_utils.cc +0 -1
- data/src/core/lib/iomgr/tcp_client.h +1 -1
- data/src/core/lib/iomgr/tcp_posix.cc +23 -15
- data/src/core/lib/iomgr/tcp_server.h +1 -1
- data/src/core/lib/iomgr/tcp_server_posix.cc +2 -3
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -1
- data/src/core/lib/iomgr/tcp_server_windows.cc +0 -1
- data/src/core/lib/iomgr/tcp_windows.cc +5 -10
- data/src/core/lib/iomgr/unix_sockets_posix.cc +2 -4
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -1
- data/src/core/lib/iomgr/vsock.h +3 -1
- data/src/core/lib/resource_quota/memory_quota.cc +1 -1
- data/src/core/lib/security/authorization/rbac_policy.cc +139 -56
- data/src/core/lib/security/authorization/rbac_policy.h +21 -3
- data/src/core/lib/surface/call.cc +3 -9
- data/src/core/lib/surface/call_utils.h +113 -0
- data/src/core/lib/surface/channel_create.cc +1 -1
- data/src/core/lib/surface/channel_create.h +0 -2
- data/src/core/lib/surface/channel_init.cc +77 -38
- data/src/core/lib/surface/channel_init.h +30 -16
- data/src/core/lib/surface/filter_stack_call.cc +5 -10
- data/src/core/lib/surface/init.cc +13 -27
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/error_utils.cc +0 -27
- data/src/core/lib/transport/error_utils.h +0 -16
- data/src/core/lib/transport/transport.h +7 -5
- data/src/core/load_balancing/pick_first/pick_first.cc +2 -0
- data/src/core/load_balancing/rls/rls.cc +28 -11
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +33 -42
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.h +0 -2
- data/src/core/load_balancing/xds/cds.cc +3 -1
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +0 -1
- data/src/core/mitigation_engine/mitigation.h +14 -5
- data/src/core/mitigation_engine/mitigation_engine.h +7 -3
- data/src/core/mitigation_engine/mitigation_provider.h +2 -1
- data/src/core/plugin_registry/grpc_plugin_registry.cc +39 -8
- data/src/core/resolver/dns/{event_engine/event_engine_client_channel_resolver.cc → dns_resolver.cc} +42 -41
- data/src/core/resolver/dns/{event_engine/event_engine_client_channel_resolver.h → dns_resolver.h} +8 -5
- data/src/core/resolver/dns/{event_engine/service_config_helper.cc → service_config_helper.cc} +1 -1
- data/src/core/resolver/dns/{event_engine/service_config_helper.h → service_config_helper.h} +3 -3
- data/src/core/resolver/endpoint_addresses.h +3 -0
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +2 -1
- data/src/core/resolver/xds/xds_resolver.cc +35 -9
- data/src/core/server/server.cc +2 -6
- data/src/core/server/server_config_selector.h +18 -3
- data/src/core/server/server_config_selector_filter.cc +178 -91
- data/src/core/server/server_config_selector_filter.h +58 -3
- data/src/core/server/xds_server_config_fetcher.cc +196 -129
- data/src/core/server/xds_server_config_fetcher.h +49 -0
- data/src/core/server/xds_server_config_fetcher_legacy.cc +41 -37
- data/src/core/telemetry/histogram.h +94 -14
- data/src/core/telemetry/instrument.cc +179 -74
- data/src/core/telemetry/instrument.h +78 -30
- data/src/core/telemetry/metrics.h +5 -0
- data/src/core/{resolver/dns/dns_resolver_plugin.h → telemetry/telemetry_label.h} +12 -8
- data/src/core/tsi/alts/crypt/aes_gcm.cc +10 -13
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +2 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +3 -1
- data/src/core/tsi/ssl_telemetry_utils.cc +216 -259
- data/src/core/tsi/ssl_telemetry_utils.h +12 -2
- data/src/core/tsi/ssl_transport_security.cc +238 -80
- data/src/core/tsi/ssl_transport_security.h +63 -33
- data/src/core/tsi/tls_telemetry.cc +31 -0
- data/src/core/tsi/tls_telemetry.h +47 -0
- data/src/core/tsi/transport_security.cc +2 -2
- data/src/core/tsi/transport_security.h +1 -1
- data/src/core/tsi/transport_security_interface.h +1 -1
- data/src/core/{resolver/dns/native/dns_resolver.h → util/address_sorting_init.cc} +21 -8
- data/src/core/{resolver/dns/c_ares/grpc_ares_wrapper_posix.cc → util/address_sorting_init.h} +7 -8
- data/src/core/util/http_client/httpcli.cc +16 -53
- data/src/core/util/http_client/httpcli.h +0 -7
- data/src/core/util/http_client/httpcli_security_connector.cc +13 -8
- data/src/core/util/linux/cpu.cc +1 -1
- data/src/core/util/load_file.cc +3 -9
- data/src/core/util/load_file.h +3 -4
- data/src/core/util/matchers.h +8 -0
- data/src/core/util/posix/cpu.cc +1 -1
- data/src/core/util/status_helper.cc +0 -20
- data/src/core/util/status_helper.h +3 -14
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +51 -31
- data/src/core/xds/grpc/xds_audit_logger_registry.h +17 -3
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +2 -10
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +8 -6
- data/src/core/xds/grpc/xds_bootstrap_grpc_builder.cc +488 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc_builder.h +97 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +7 -7
- data/src/core/xds/grpc/xds_client_grpc.cc +4 -8
- data/src/core/xds/grpc/xds_client_grpc.h +0 -4
- data/src/core/xds/grpc/xds_cluster.h +1 -0
- data/src/core/xds/grpc/xds_cluster_parser.cc +1 -5
- data/src/core/xds/grpc/xds_cluster_parser.h +0 -2
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +0 -2
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +0 -2
- data/src/core/xds/grpc/xds_common_types.cc +0 -91
- data/src/core/xds/grpc/xds_common_types.h +1 -47
- data/src/core/xds/grpc/xds_common_types_parser.cc +84 -378
- data/src/core/xds/grpc/xds_common_types_parser.h +9 -11
- data/src/core/xds/grpc/xds_endpoint_parser.cc +0 -2
- data/src/core/xds/grpc/xds_grpc_service_parser.cc +177 -0
- data/src/core/{resolver/dns/c_ares/dns_resolver_ares.h → xds/grpc/xds_grpc_service_parser.h} +14 -9
- data/src/core/xds/grpc/xds_http_composite_filter.cc +26 -21
- data/src/core/xds/grpc/xds_http_composite_filter.h +4 -3
- data/src/core/xds/grpc/xds_http_ext_proc_filter.cc +418 -0
- data/src/core/xds/grpc/xds_http_ext_proc_filter.h +89 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +9 -12
- data/src/core/xds/grpc/xds_http_fault_filter.h +1 -4
- data/src/core/xds/grpc/xds_http_filter.cc +2 -1
- data/src/core/xds/grpc/xds_http_filter.h +6 -5
- data/src/core/xds/grpc/xds_http_filter_registry.cc +10 -127
- data/src/core/xds/grpc/xds_http_filter_registry.h +7 -59
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +13 -14
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +3 -2
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +403 -25
- data/src/core/xds/grpc/xds_http_rbac_filter.h +1 -3
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +8 -13
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +1 -4
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +0 -292
- data/src/core/xds/grpc/xds_lb_policy_registry.h +7 -3
- data/src/core/xds/grpc/xds_listener.cc +2 -0
- data/src/core/xds/grpc/xds_listener.h +5 -0
- data/src/core/xds/grpc/xds_listener_parser.cc +16 -11
- data/src/core/xds/grpc/xds_matcher_parse.h +3 -1
- data/src/core/xds/grpc/xds_metadata_parser.cc +6 -1
- data/src/core/xds/grpc/xds_metadata_parser.h +2 -0
- data/src/core/xds/grpc/xds_route_config.cc +2 -0
- data/src/core/xds/grpc/xds_route_config.h +3 -1
- data/src/core/xds/grpc/xds_route_config_parser.cc +13 -79
- data/src/core/xds/grpc/xds_route_config_parser.h +0 -3
- data/src/core/xds/grpc/xds_routing.cc +116 -69
- data/src/core/xds/grpc/xds_routing.h +19 -8
- data/src/core/xds/grpc/xds_tls_context.cc +117 -0
- data/src/core/xds/grpc/xds_tls_context.h +76 -0
- data/src/core/xds/grpc/xds_tls_context_parser.cc +275 -0
- data/src/core/xds/grpc/xds_tls_context_parser.h +35 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +41 -38
- data/src/core/xds/grpc/xds_transport_grpc.h +4 -2
- data/src/ruby/ext/grpc/rb_call.c +26 -15
- data/src/ruby/ext/grpc/rb_completion_queue.c +6 -5
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/test/client.rb +5 -4
- data/src/ruby/spec/call_spec.rb +14 -0
- data/src/ruby/spec/generic/server_interceptors_spec.rb +3 -6
- metadata +50 -35
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/channelz.upbdefs.c +0 -716
- data/src/core/lib/iomgr/resolve_address.cc +0 -59
- data/src/core/lib/iomgr/resolve_address.h +0 -125
- data/src/core/lib/iomgr/resolve_address_impl.h +0 -58
- data/src/core/lib/iomgr/resolve_address_posix.cc +0 -184
- data/src/core/lib/iomgr/resolve_address_posix.h +0 -78
- data/src/core/lib/iomgr/resolve_address_windows.cc +0 -169
- data/src/core/lib/iomgr/resolve_address_windows.h +0 -76
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +0 -781
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +0 -93
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +0 -203
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +0 -838
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +0 -1237
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +0 -130
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +0 -35
- data/src/core/resolver/dns/dns_resolver_plugin.cc +0 -64
- data/src/core/resolver/dns/native/dns_resolver.cc +0 -173
- data/src/core/util/json/json_util.cc +0 -101
- data/src/core/util/json/json_util.h +0 -163
|
@@ -0,0 +1,556 @@
|
|
|
1
|
+
/* This file was generated by upb_generator from the input file:
|
|
2
|
+
*
|
|
3
|
+
* envoy/service/ext_proc/v3/external_processor.proto
|
|
4
|
+
*
|
|
5
|
+
* Do not edit -- your changes will be discarded when the file is
|
|
6
|
+
* regenerated.
|
|
7
|
+
* NO CHECKED-IN PROTOBUF GENCODE */
|
|
8
|
+
|
|
9
|
+
#include <stddef.h>
|
|
10
|
+
#include "upb/generated_code_support.h"
|
|
11
|
+
#include "envoy/service/ext_proc/v3/external_processor.upb_minitable.h"
|
|
12
|
+
#include "envoy/config/core/v3/base.upb_minitable.h"
|
|
13
|
+
#include "envoy/extensions/filters/http/ext_proc/v3/processing_mode.upb_minitable.h"
|
|
14
|
+
#include "envoy/type/v3/http_status.upb_minitable.h"
|
|
15
|
+
#include "google/protobuf/duration.upb_minitable.h"
|
|
16
|
+
#include "google/protobuf/struct.upb_minitable.h"
|
|
17
|
+
#include "xds/annotations/v3/status.upb_minitable.h"
|
|
18
|
+
#include "envoy/annotations/deprecation.upb_minitable.h"
|
|
19
|
+
#include "udpa/annotations/status.upb_minitable.h"
|
|
20
|
+
#include "validate/validate.upb_minitable.h"
|
|
21
|
+
|
|
22
|
+
// Must be last.
|
|
23
|
+
#include "upb/port/def.inc"
|
|
24
|
+
|
|
25
|
+
extern const UPB_PRIVATE(upb_GeneratedExtensionListEntry)* UPB_PRIVATE(upb_generated_extension_list);
|
|
26
|
+
typedef struct {
|
|
27
|
+
upb_MiniTableField fields[3];
|
|
28
|
+
} envoy__service__ext_0proc__v3__ProtocolConfiguration_msg_init_Fields;
|
|
29
|
+
|
|
30
|
+
static const envoy__service__ext_0proc__v3__ProtocolConfiguration_msg_init_Fields envoy_service_ext_proc_v3_ProtocolConfiguration__fields = {{
|
|
31
|
+
{1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
|
32
|
+
{2, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
|
33
|
+
{3, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
34
|
+
}};
|
|
35
|
+
|
|
36
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__ProtocolConfiguration_msg_init = {
|
|
37
|
+
&envoy_service_ext_proc_v3_ProtocolConfiguration__fields.fields[0],
|
|
38
|
+
24, 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
|
|
39
|
+
#ifdef UPB_TRACING_ENABLED
|
|
40
|
+
"envoy.service.ext_proc.v3.ProtocolConfiguration",
|
|
41
|
+
#endif
|
|
42
|
+
UPB_FASTTABLE_INIT({
|
|
43
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
44
|
+
{0x000c00003f000008, &upb_DecodeFast_Varint32_Scalar_Tag1Byte},
|
|
45
|
+
{0x001000003f000010, &upb_DecodeFast_Varint32_Scalar_Tag1Byte},
|
|
46
|
+
{0x000800003f000018, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
47
|
+
})
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
typedef struct {
|
|
51
|
+
upb_MiniTableField fields[10];
|
|
52
|
+
upb_MiniTableSubInternal subs[9];
|
|
53
|
+
} envoy__service__ext_0proc__v3__ProcessingRequest_msg_init_Fields;
|
|
54
|
+
|
|
55
|
+
static const envoy__service__ext_0proc__v3__ProcessingRequest_msg_init_Fields envoy_service_ext_proc_v3_ProcessingRequest__fields = {{
|
|
56
|
+
{2, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
57
|
+
{3, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(28, 29), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
58
|
+
{4, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(26, 28), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
59
|
+
{5, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(24, 27), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
60
|
+
{6, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(22, 26), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
61
|
+
{7, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(20, 25), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
62
|
+
{8, UPB_SIZE(12, 16), 64, UPB_SIZE(18, 24), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
63
|
+
{9, UPB_SIZE(16, 24), 0, UPB_SIZE(16, 23), 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
64
|
+
{10, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
65
|
+
{11, UPB_SIZE(20, 32), 65, UPB_SIZE(11, 19), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HttpHeaders_msg_init},
|
|
69
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HttpHeaders_msg_init},
|
|
70
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HttpBody_msg_init},
|
|
71
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HttpBody_msg_init},
|
|
72
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HttpTrailers_msg_init},
|
|
73
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HttpTrailers_msg_init},
|
|
74
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__Metadata_msg_init},
|
|
75
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__ProcessingRequest__AttributesEntry_msg_init},
|
|
76
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__ProtocolConfiguration_msg_init},
|
|
77
|
+
}};
|
|
78
|
+
|
|
79
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__ProcessingRequest_msg_init = {
|
|
80
|
+
&envoy_service_ext_proc_v3_ProcessingRequest__fields.fields[0],
|
|
81
|
+
UPB_SIZE(32, 48), 10, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(120), 0,
|
|
82
|
+
#ifdef UPB_TRACING_ENABLED
|
|
83
|
+
"envoy.service.ext_proc.v3.ProcessingRequest",
|
|
84
|
+
#endif
|
|
85
|
+
UPB_FASTTABLE_INIT({
|
|
86
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
87
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
88
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
89
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
90
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
91
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
92
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
93
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
94
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
95
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
96
|
+
{0x000900003f000050, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
97
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
98
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
99
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
100
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
101
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
102
|
+
})
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
typedef struct {
|
|
106
|
+
upb_MiniTableField fields[2];
|
|
107
|
+
upb_MiniTableSubInternal subs[1];
|
|
108
|
+
} envoy__service__ext_0proc__v3__ProcessingRequest__AttributesEntry_msg_init_Fields;
|
|
109
|
+
|
|
110
|
+
static const envoy__service__ext_0proc__v3__ProcessingRequest__AttributesEntry_msg_init_Fields envoy_service_ext_proc_v3_ProcessingRequest_AttributesEntry__fields = {{
|
|
111
|
+
{1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
112
|
+
{2, 32, 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
{.UPB_PRIVATE(submsg) = &google__protobuf__Struct_msg_init},
|
|
116
|
+
}};
|
|
117
|
+
|
|
118
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__ProcessingRequest__AttributesEntry_msg_init = {
|
|
119
|
+
&envoy_service_ext_proc_v3_ProcessingRequest_AttributesEntry__fields.fields[0],
|
|
120
|
+
48, 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(8), 0,
|
|
121
|
+
#ifdef UPB_TRACING_ENABLED
|
|
122
|
+
"envoy.service.ext_proc.v3.ProcessingRequest.AttributesEntry",
|
|
123
|
+
#endif
|
|
124
|
+
UPB_FASTTABLE_INIT({
|
|
125
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
126
|
+
{0x001000003f00000a, &upb_DecodeFast_String_Scalar_Tag1Byte},
|
|
127
|
+
})
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
typedef struct {
|
|
131
|
+
upb_MiniTableField fields[11];
|
|
132
|
+
upb_MiniTableSubInternal subs[10];
|
|
133
|
+
} envoy__service__ext_0proc__v3__ProcessingResponse_msg_init_Fields;
|
|
134
|
+
|
|
135
|
+
static const envoy__service__ext_0proc__v3__ProcessingResponse_msg_init_Fields envoy_service_ext_proc_v3_ProcessingResponse__fields = {{
|
|
136
|
+
{1, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(33, 34), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
137
|
+
{2, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(31, 33), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
138
|
+
{3, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(29, 32), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
139
|
+
{4, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(27, 31), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
140
|
+
{5, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(25, 30), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
141
|
+
{6, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(23, 29), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
142
|
+
{7, UPB_SIZE(28, 40), UPB_SIZE(-25, -13), UPB_SIZE(21, 28), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
143
|
+
{8, UPB_SIZE(12, 16), 64, UPB_SIZE(19, 27), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
144
|
+
{9, UPB_SIZE(16, 24), 65, UPB_SIZE(17, 26), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
145
|
+
{10, UPB_SIZE(20, 32), 66, UPB_SIZE(15, 25), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
146
|
+
{11, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HeadersResponse_msg_init},
|
|
150
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HeadersResponse_msg_init},
|
|
151
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__BodyResponse_msg_init},
|
|
152
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__BodyResponse_msg_init},
|
|
153
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__TrailersResponse_msg_init},
|
|
154
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__TrailersResponse_msg_init},
|
|
155
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__ImmediateResponse_msg_init},
|
|
156
|
+
{.UPB_PRIVATE(submsg) = &google__protobuf__Struct_msg_init},
|
|
157
|
+
{.UPB_PRIVATE(submsg) = &envoy__extensions__filters__http__ext_0proc__v3__ProcessingMode_msg_init},
|
|
158
|
+
{.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
|
|
159
|
+
}};
|
|
160
|
+
|
|
161
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__ProcessingResponse_msg_init = {
|
|
162
|
+
&envoy_service_ext_proc_v3_ProcessingResponse__fields.fields[0],
|
|
163
|
+
UPB_SIZE(32, 48), 11, kUpb_ExtMode_NonExtendable, 11, UPB_FASTTABLE_MASK(120), 0,
|
|
164
|
+
#ifdef UPB_TRACING_ENABLED
|
|
165
|
+
"envoy.service.ext_proc.v3.ProcessingResponse",
|
|
166
|
+
#endif
|
|
167
|
+
UPB_FASTTABLE_INIT({
|
|
168
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
169
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
170
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
171
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
172
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
173
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
174
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
175
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
176
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
177
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
178
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
179
|
+
{0x000900003f000058, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
180
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
181
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
182
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
183
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
184
|
+
})
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
typedef struct {
|
|
188
|
+
upb_MiniTableField fields[3];
|
|
189
|
+
upb_MiniTableSubInternal subs[2];
|
|
190
|
+
} envoy__service__ext_0proc__v3__HttpHeaders_msg_init_Fields;
|
|
191
|
+
|
|
192
|
+
static const envoy__service__ext_0proc__v3__HttpHeaders_msg_init_Fields envoy_service_ext_proc_v3_HttpHeaders__fields = {{
|
|
193
|
+
{1, UPB_SIZE(12, 16), 64, UPB_SIZE(9, 10), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
194
|
+
{2, UPB_SIZE(16, 24), 0, UPB_SIZE(7, 9), 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
195
|
+
{3, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__HeaderMap_msg_init},
|
|
199
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HttpHeaders__AttributesEntry_msg_init},
|
|
200
|
+
}};
|
|
201
|
+
|
|
202
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__HttpHeaders_msg_init = {
|
|
203
|
+
&envoy_service_ext_proc_v3_HttpHeaders__fields.fields[0],
|
|
204
|
+
UPB_SIZE(24, 32), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
|
|
205
|
+
#ifdef UPB_TRACING_ENABLED
|
|
206
|
+
"envoy.service.ext_proc.v3.HttpHeaders",
|
|
207
|
+
#endif
|
|
208
|
+
UPB_FASTTABLE_INIT({
|
|
209
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
210
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
211
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
212
|
+
{0x000900003f000018, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
213
|
+
})
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
typedef struct {
|
|
217
|
+
upb_MiniTableField fields[2];
|
|
218
|
+
upb_MiniTableSubInternal subs[1];
|
|
219
|
+
} envoy__service__ext_0proc__v3__HttpHeaders__AttributesEntry_msg_init_Fields;
|
|
220
|
+
|
|
221
|
+
static const envoy__service__ext_0proc__v3__HttpHeaders__AttributesEntry_msg_init_Fields envoy_service_ext_proc_v3_HttpHeaders_AttributesEntry__fields = {{
|
|
222
|
+
{1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
223
|
+
{2, 32, 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
{.UPB_PRIVATE(submsg) = &google__protobuf__Struct_msg_init},
|
|
227
|
+
}};
|
|
228
|
+
|
|
229
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__HttpHeaders__AttributesEntry_msg_init = {
|
|
230
|
+
&envoy_service_ext_proc_v3_HttpHeaders_AttributesEntry__fields.fields[0],
|
|
231
|
+
48, 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(8), 0,
|
|
232
|
+
#ifdef UPB_TRACING_ENABLED
|
|
233
|
+
"envoy.service.ext_proc.v3.HttpHeaders.AttributesEntry",
|
|
234
|
+
#endif
|
|
235
|
+
UPB_FASTTABLE_INIT({
|
|
236
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
237
|
+
{0x001000003f00000a, &upb_DecodeFast_String_Scalar_Tag1Byte},
|
|
238
|
+
})
|
|
239
|
+
};
|
|
240
|
+
|
|
241
|
+
typedef struct {
|
|
242
|
+
upb_MiniTableField fields[4];
|
|
243
|
+
} envoy__service__ext_0proc__v3__HttpBody_msg_init_Fields;
|
|
244
|
+
|
|
245
|
+
static const envoy__service__ext_0proc__v3__HttpBody_msg_init_Fields envoy_service_ext_proc_v3_HttpBody__fields = {{
|
|
246
|
+
{1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
247
|
+
{2, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
248
|
+
{3, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
249
|
+
{4, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
250
|
+
}};
|
|
251
|
+
|
|
252
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__HttpBody_msg_init = {
|
|
253
|
+
&envoy_service_ext_proc_v3_HttpBody__fields.fields[0],
|
|
254
|
+
UPB_SIZE(24, 32), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
|
|
255
|
+
#ifdef UPB_TRACING_ENABLED
|
|
256
|
+
"envoy.service.ext_proc.v3.HttpBody",
|
|
257
|
+
#endif
|
|
258
|
+
UPB_FASTTABLE_INIT({
|
|
259
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
260
|
+
{0x001000003f00000a, &upb_DecodeFast_Bytes_Scalar_Tag1Byte},
|
|
261
|
+
{0x000800003f000010, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
262
|
+
{0x000900003f000018, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
263
|
+
{0x000a00003f000020, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
264
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
265
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
266
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
267
|
+
})
|
|
268
|
+
};
|
|
269
|
+
|
|
270
|
+
typedef struct {
|
|
271
|
+
upb_MiniTableField fields[1];
|
|
272
|
+
upb_MiniTableSubInternal subs[1];
|
|
273
|
+
} envoy__service__ext_0proc__v3__HttpTrailers_msg_init_Fields;
|
|
274
|
+
|
|
275
|
+
static const envoy__service__ext_0proc__v3__HttpTrailers_msg_init_Fields envoy_service_ext_proc_v3_HttpTrailers__fields = {{
|
|
276
|
+
{1, UPB_SIZE(12, 16), 64, UPB_SIZE(3, 4), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__HeaderMap_msg_init},
|
|
280
|
+
}};
|
|
281
|
+
|
|
282
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__HttpTrailers_msg_init = {
|
|
283
|
+
&envoy_service_ext_proc_v3_HttpTrailers__fields.fields[0],
|
|
284
|
+
UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(255), 0,
|
|
285
|
+
#ifdef UPB_TRACING_ENABLED
|
|
286
|
+
"envoy.service.ext_proc.v3.HttpTrailers",
|
|
287
|
+
#endif
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
typedef struct {
|
|
291
|
+
upb_MiniTableField fields[1];
|
|
292
|
+
upb_MiniTableSubInternal subs[1];
|
|
293
|
+
} envoy__service__ext_0proc__v3__HeadersResponse_msg_init_Fields;
|
|
294
|
+
|
|
295
|
+
static const envoy__service__ext_0proc__v3__HeadersResponse_msg_init_Fields envoy_service_ext_proc_v3_HeadersResponse__fields = {{
|
|
296
|
+
{1, UPB_SIZE(12, 16), 64, UPB_SIZE(3, 4), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__CommonResponse_msg_init},
|
|
300
|
+
}};
|
|
301
|
+
|
|
302
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__HeadersResponse_msg_init = {
|
|
303
|
+
&envoy_service_ext_proc_v3_HeadersResponse__fields.fields[0],
|
|
304
|
+
UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(255), 0,
|
|
305
|
+
#ifdef UPB_TRACING_ENABLED
|
|
306
|
+
"envoy.service.ext_proc.v3.HeadersResponse",
|
|
307
|
+
#endif
|
|
308
|
+
};
|
|
309
|
+
|
|
310
|
+
typedef struct {
|
|
311
|
+
upb_MiniTableField fields[1];
|
|
312
|
+
upb_MiniTableSubInternal subs[1];
|
|
313
|
+
} envoy__service__ext_0proc__v3__BodyResponse_msg_init_Fields;
|
|
314
|
+
|
|
315
|
+
static const envoy__service__ext_0proc__v3__BodyResponse_msg_init_Fields envoy_service_ext_proc_v3_BodyResponse__fields = {{
|
|
316
|
+
{1, UPB_SIZE(12, 16), 64, UPB_SIZE(3, 4), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__CommonResponse_msg_init},
|
|
320
|
+
}};
|
|
321
|
+
|
|
322
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__BodyResponse_msg_init = {
|
|
323
|
+
&envoy_service_ext_proc_v3_BodyResponse__fields.fields[0],
|
|
324
|
+
UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(255), 0,
|
|
325
|
+
#ifdef UPB_TRACING_ENABLED
|
|
326
|
+
"envoy.service.ext_proc.v3.BodyResponse",
|
|
327
|
+
#endif
|
|
328
|
+
};
|
|
329
|
+
|
|
330
|
+
typedef struct {
|
|
331
|
+
upb_MiniTableField fields[1];
|
|
332
|
+
upb_MiniTableSubInternal subs[1];
|
|
333
|
+
} envoy__service__ext_0proc__v3__TrailersResponse_msg_init_Fields;
|
|
334
|
+
|
|
335
|
+
static const envoy__service__ext_0proc__v3__TrailersResponse_msg_init_Fields envoy_service_ext_proc_v3_TrailersResponse__fields = {{
|
|
336
|
+
{1, UPB_SIZE(12, 16), 64, UPB_SIZE(3, 4), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HeaderMutation_msg_init},
|
|
340
|
+
}};
|
|
341
|
+
|
|
342
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__TrailersResponse_msg_init = {
|
|
343
|
+
&envoy_service_ext_proc_v3_TrailersResponse__fields.fields[0],
|
|
344
|
+
UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(255), 0,
|
|
345
|
+
#ifdef UPB_TRACING_ENABLED
|
|
346
|
+
"envoy.service.ext_proc.v3.TrailersResponse",
|
|
347
|
+
#endif
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
typedef struct {
|
|
351
|
+
upb_MiniTableField fields[5];
|
|
352
|
+
upb_MiniTableSubInternal subs[3];
|
|
353
|
+
} envoy__service__ext_0proc__v3__CommonResponse_msg_init_Fields;
|
|
354
|
+
|
|
355
|
+
static const envoy__service__ext_0proc__v3__CommonResponse_msg_init_Fields envoy_service_ext_proc_v3_CommonResponse__fields = {{
|
|
356
|
+
{1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
|
357
|
+
{2, 16, 64, UPB_SIZE(12, 13), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
358
|
+
{3, UPB_SIZE(20, 24), 65, UPB_SIZE(10, 12), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
359
|
+
{4, UPB_SIZE(24, 32), 66, UPB_SIZE(8, 11), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
360
|
+
{5, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HeaderMutation_msg_init},
|
|
364
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__BodyMutation_msg_init},
|
|
365
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__HeaderMap_msg_init},
|
|
366
|
+
}};
|
|
367
|
+
|
|
368
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__CommonResponse_msg_init = {
|
|
369
|
+
&envoy_service_ext_proc_v3_CommonResponse__fields.fields[0],
|
|
370
|
+
UPB_SIZE(32, 40), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
|
|
371
|
+
#ifdef UPB_TRACING_ENABLED
|
|
372
|
+
"envoy.service.ext_proc.v3.CommonResponse",
|
|
373
|
+
#endif
|
|
374
|
+
UPB_FASTTABLE_INIT({
|
|
375
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
376
|
+
{0x000c00003f000008, &upb_DecodeFast_Varint32_Scalar_Tag1Byte},
|
|
377
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
378
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
379
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
380
|
+
{0x000900003f000028, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
381
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
382
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
383
|
+
})
|
|
384
|
+
};
|
|
385
|
+
|
|
386
|
+
typedef struct {
|
|
387
|
+
upb_MiniTableField fields[5];
|
|
388
|
+
upb_MiniTableSubInternal subs[3];
|
|
389
|
+
} envoy__service__ext_0proc__v3__ImmediateResponse_msg_init_Fields;
|
|
390
|
+
|
|
391
|
+
static const envoy__service__ext_0proc__v3__ImmediateResponse_msg_init_Fields envoy_service_ext_proc_v3_ImmediateResponse__fields = {{
|
|
392
|
+
{1, UPB_SIZE(12, 48), 64, UPB_SIZE(15, 16), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
393
|
+
{2, UPB_SIZE(16, 56), 65, UPB_SIZE(13, 15), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
394
|
+
{3, UPB_SIZE(24, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
395
|
+
{4, UPB_SIZE(20, 64), 66, UPB_SIZE(8, 11), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
396
|
+
{5, 32, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
{.UPB_PRIVATE(submsg) = &envoy__type__v3__HttpStatus_msg_init},
|
|
400
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__HeaderMutation_msg_init},
|
|
401
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__GrpcStatus_msg_init},
|
|
402
|
+
}};
|
|
403
|
+
|
|
404
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__ImmediateResponse_msg_init = {
|
|
405
|
+
&envoy_service_ext_proc_v3_ImmediateResponse__fields.fields[0],
|
|
406
|
+
UPB_SIZE(40, 72), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
|
|
407
|
+
#ifdef UPB_TRACING_ENABLED
|
|
408
|
+
"envoy.service.ext_proc.v3.ImmediateResponse",
|
|
409
|
+
#endif
|
|
410
|
+
UPB_FASTTABLE_INIT({
|
|
411
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
412
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
413
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
414
|
+
{0x001000003f00001a, &upb_DecodeFast_Bytes_Scalar_Tag1Byte},
|
|
415
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
416
|
+
{0x002000003f00002a, &upb_DecodeFast_String_Scalar_Tag1Byte},
|
|
417
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
418
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
419
|
+
})
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
typedef struct {
|
|
423
|
+
upb_MiniTableField fields[1];
|
|
424
|
+
} envoy__service__ext_0proc__v3__GrpcStatus_msg_init_Fields;
|
|
425
|
+
|
|
426
|
+
static const envoy__service__ext_0proc__v3__GrpcStatus_msg_init_Fields envoy_service_ext_proc_v3_GrpcStatus__fields = {{
|
|
427
|
+
{1, 8, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
|
|
428
|
+
}};
|
|
429
|
+
|
|
430
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__GrpcStatus_msg_init = {
|
|
431
|
+
&envoy_service_ext_proc_v3_GrpcStatus__fields.fields[0],
|
|
432
|
+
16, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
|
|
433
|
+
#ifdef UPB_TRACING_ENABLED
|
|
434
|
+
"envoy.service.ext_proc.v3.GrpcStatus",
|
|
435
|
+
#endif
|
|
436
|
+
UPB_FASTTABLE_INIT({
|
|
437
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
438
|
+
{0x000800003f000008, &upb_DecodeFast_Varint32_Scalar_Tag1Byte},
|
|
439
|
+
})
|
|
440
|
+
};
|
|
441
|
+
|
|
442
|
+
typedef struct {
|
|
443
|
+
upb_MiniTableField fields[2];
|
|
444
|
+
upb_MiniTableSubInternal subs[1];
|
|
445
|
+
} envoy__service__ext_0proc__v3__HeaderMutation_msg_init_Fields;
|
|
446
|
+
|
|
447
|
+
static const envoy__service__ext_0proc__v3__HeaderMutation_msg_init_Fields envoy_service_ext_proc_v3_HeaderMutation__fields = {{
|
|
448
|
+
{1, 8, 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
449
|
+
{2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
{.UPB_PRIVATE(submsg) = &envoy__config__core__v3__HeaderValueOption_msg_init},
|
|
453
|
+
}};
|
|
454
|
+
|
|
455
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__HeaderMutation_msg_init = {
|
|
456
|
+
&envoy_service_ext_proc_v3_HeaderMutation__fields.fields[0],
|
|
457
|
+
UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
|
|
458
|
+
#ifdef UPB_TRACING_ENABLED
|
|
459
|
+
"envoy.service.ext_proc.v3.HeaderMutation",
|
|
460
|
+
#endif
|
|
461
|
+
UPB_FASTTABLE_INIT({
|
|
462
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
463
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
464
|
+
{0x001000003f000012, &upb_DecodeFast_String_Repeated_Tag1Byte},
|
|
465
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
466
|
+
})
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
typedef struct {
|
|
470
|
+
upb_MiniTableField fields[4];
|
|
471
|
+
} envoy__service__ext_0proc__v3__StreamedBodyResponse_msg_init_Fields;
|
|
472
|
+
|
|
473
|
+
static const envoy__service__ext_0proc__v3__StreamedBodyResponse_msg_init_Fields envoy_service_ext_proc_v3_StreamedBodyResponse__fields = {{
|
|
474
|
+
{1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
475
|
+
{2, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
476
|
+
{3, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
477
|
+
{4, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
478
|
+
}};
|
|
479
|
+
|
|
480
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__StreamedBodyResponse_msg_init = {
|
|
481
|
+
&envoy_service_ext_proc_v3_StreamedBodyResponse__fields.fields[0],
|
|
482
|
+
UPB_SIZE(24, 32), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
|
|
483
|
+
#ifdef UPB_TRACING_ENABLED
|
|
484
|
+
"envoy.service.ext_proc.v3.StreamedBodyResponse",
|
|
485
|
+
#endif
|
|
486
|
+
UPB_FASTTABLE_INIT({
|
|
487
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
488
|
+
{0x001000003f00000a, &upb_DecodeFast_Bytes_Scalar_Tag1Byte},
|
|
489
|
+
{0x000800003f000010, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
490
|
+
{0x000900003f000018, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
491
|
+
{0x000a00003f000020, &upb_DecodeFast_Bool_Scalar_Tag1Byte},
|
|
492
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
493
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
494
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
495
|
+
})
|
|
496
|
+
};
|
|
497
|
+
|
|
498
|
+
typedef struct {
|
|
499
|
+
upb_MiniTableField fields[3];
|
|
500
|
+
upb_MiniTableSubInternal subs[1];
|
|
501
|
+
} envoy__service__ext_0proc__v3__BodyMutation_msg_init_Fields;
|
|
502
|
+
|
|
503
|
+
static const envoy__service__ext_0proc__v3__BodyMutation_msg_init_Fields envoy_service_ext_proc_v3_BodyMutation__fields = {{
|
|
504
|
+
{1, UPB_SIZE(12, 16), -9, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
|
|
505
|
+
{2, UPB_SIZE(12, 16), -9, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
|
|
506
|
+
{3, UPB_SIZE(12, 16), -9, UPB_SIZE(3, 4), 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
{.UPB_PRIVATE(submsg) = &envoy__service__ext_0proc__v3__StreamedBodyResponse_msg_init},
|
|
510
|
+
}};
|
|
511
|
+
|
|
512
|
+
const upb_MiniTable envoy__service__ext_0proc__v3__BodyMutation_msg_init = {
|
|
513
|
+
&envoy_service_ext_proc_v3_BodyMutation__fields.fields[0],
|
|
514
|
+
UPB_SIZE(24, 32), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
|
|
515
|
+
#ifdef UPB_TRACING_ENABLED
|
|
516
|
+
"envoy.service.ext_proc.v3.BodyMutation",
|
|
517
|
+
#endif
|
|
518
|
+
UPB_FASTTABLE_INIT({
|
|
519
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
520
|
+
{0x001000080100000a, &upb_DecodeFast_Bytes_Oneof_Tag1Byte},
|
|
521
|
+
{0x0010000802000010, &upb_DecodeFast_Bool_Oneof_Tag1Byte},
|
|
522
|
+
{0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
|
|
523
|
+
})
|
|
524
|
+
};
|
|
525
|
+
|
|
526
|
+
static const upb_MiniTable *messages_layout[17] = {
|
|
527
|
+
&envoy__service__ext_0proc__v3__ProtocolConfiguration_msg_init,
|
|
528
|
+
&envoy__service__ext_0proc__v3__ProcessingRequest_msg_init,
|
|
529
|
+
&envoy__service__ext_0proc__v3__ProcessingRequest__AttributesEntry_msg_init,
|
|
530
|
+
&envoy__service__ext_0proc__v3__ProcessingResponse_msg_init,
|
|
531
|
+
&envoy__service__ext_0proc__v3__HttpHeaders_msg_init,
|
|
532
|
+
&envoy__service__ext_0proc__v3__HttpHeaders__AttributesEntry_msg_init,
|
|
533
|
+
&envoy__service__ext_0proc__v3__HttpBody_msg_init,
|
|
534
|
+
&envoy__service__ext_0proc__v3__HttpTrailers_msg_init,
|
|
535
|
+
&envoy__service__ext_0proc__v3__HeadersResponse_msg_init,
|
|
536
|
+
&envoy__service__ext_0proc__v3__BodyResponse_msg_init,
|
|
537
|
+
&envoy__service__ext_0proc__v3__TrailersResponse_msg_init,
|
|
538
|
+
&envoy__service__ext_0proc__v3__CommonResponse_msg_init,
|
|
539
|
+
&envoy__service__ext_0proc__v3__ImmediateResponse_msg_init,
|
|
540
|
+
&envoy__service__ext_0proc__v3__GrpcStatus_msg_init,
|
|
541
|
+
&envoy__service__ext_0proc__v3__HeaderMutation_msg_init,
|
|
542
|
+
&envoy__service__ext_0proc__v3__StreamedBodyResponse_msg_init,
|
|
543
|
+
&envoy__service__ext_0proc__v3__BodyMutation_msg_init,
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
const upb_MiniTableFile envoy_service_ext_proc_v3_external_processor_proto_upb_file_layout = {
|
|
547
|
+
messages_layout,
|
|
548
|
+
NULL,
|
|
549
|
+
NULL,
|
|
550
|
+
17,
|
|
551
|
+
0,
|
|
552
|
+
0,
|
|
553
|
+
};
|
|
554
|
+
|
|
555
|
+
#include "upb/port/undef.inc"
|
|
556
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/* This file was generated by upb_generator from the input file:
|
|
2
|
+
*
|
|
3
|
+
* envoy/service/ext_proc/v3/external_processor.proto
|
|
4
|
+
*
|
|
5
|
+
* Do not edit -- your changes will be discarded when the file is
|
|
6
|
+
* regenerated.
|
|
7
|
+
* NO CHECKED-IN PROTOBUF GENCODE */
|
|
8
|
+
|
|
9
|
+
#ifndef ENVOY_SERVICE_EXT_PROC_V3_EXTERNAL_PROCESSOR_PROTO_UPB_H__UPB_MINITABLE_H_
|
|
10
|
+
#define ENVOY_SERVICE_EXT_PROC_V3_EXTERNAL_PROCESSOR_PROTO_UPB_H__UPB_MINITABLE_H_
|
|
11
|
+
|
|
12
|
+
#include "upb/generated_code_support.h"
|
|
13
|
+
|
|
14
|
+
// Must be last.
|
|
15
|
+
#include "upb/port/def.inc"
|
|
16
|
+
|
|
17
|
+
#ifdef __cplusplus
|
|
18
|
+
extern "C" {
|
|
19
|
+
#endif
|
|
20
|
+
|
|
21
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__ProtocolConfiguration_msg_init;
|
|
22
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__ProcessingRequest_msg_init;
|
|
23
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__ProcessingRequest__AttributesEntry_msg_init;
|
|
24
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__ProcessingResponse_msg_init;
|
|
25
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__HttpHeaders_msg_init;
|
|
26
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__HttpHeaders__AttributesEntry_msg_init;
|
|
27
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__HttpBody_msg_init;
|
|
28
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__HttpTrailers_msg_init;
|
|
29
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__HeadersResponse_msg_init;
|
|
30
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__BodyResponse_msg_init;
|
|
31
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__TrailersResponse_msg_init;
|
|
32
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__CommonResponse_msg_init;
|
|
33
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__ImmediateResponse_msg_init;
|
|
34
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__GrpcStatus_msg_init;
|
|
35
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__HeaderMutation_msg_init;
|
|
36
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__StreamedBodyResponse_msg_init;
|
|
37
|
+
extern const upb_MiniTable envoy__service__ext_0proc__v3__BodyMutation_msg_init;
|
|
38
|
+
|
|
39
|
+
extern const upb_MiniTableFile envoy_service_ext_proc_v3_external_processor_proto_upb_file_layout;
|
|
40
|
+
|
|
41
|
+
#ifdef __cplusplus
|
|
42
|
+
} /* extern "C" */
|
|
43
|
+
#endif
|
|
44
|
+
|
|
45
|
+
#include "upb/port/undef.inc"
|
|
46
|
+
|
|
47
|
+
#endif /* ENVOY_SERVICE_EXT_PROC_V3_EXTERNAL_PROCESSOR_PROTO_UPB_H__UPB_MINITABLE_H_ */
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/* This file was generated by upb_generator from the input file:
|
|
2
2
|
*
|
|
3
|
-
*
|
|
3
|
+
* grpc/channelz/v1/channelz.proto
|
|
4
4
|
*
|
|
5
5
|
* Do not edit -- your changes will be discarded when the file is
|
|
6
6
|
* regenerated.
|
|
7
7
|
* NO CHECKED-IN PROTOBUF GENCODE */
|
|
8
8
|
|
|
9
|
-
#ifndef
|
|
10
|
-
#define
|
|
9
|
+
#ifndef GRPC_CHANNELZ_V1_CHANNELZ_PROTO_UPB_H__UPB_H_
|
|
10
|
+
#define GRPC_CHANNELZ_V1_CHANNELZ_PROTO_UPB_H__UPB_H_
|
|
11
11
|
|
|
12
12
|
#include "upb/generated_code_support.h"
|
|
13
|
-
#include "
|
|
13
|
+
#include "grpc/channelz/v1/channelz.upb_minitable.h"
|
|
14
14
|
#include "google/protobuf/any.upb_minitable.h"
|
|
15
15
|
#include "google/protobuf/duration.upb_minitable.h"
|
|
16
16
|
#include "google/protobuf/timestamp.upb_minitable.h"
|
|
@@ -5352,4 +5352,4 @@ UPB_INLINE struct grpc_channelz_v1_Socket* grpc_channelz_v1_GetSocketResponse_mu
|
|
|
5352
5352
|
|
|
5353
5353
|
#include "upb/port/undef.inc"
|
|
5354
5354
|
|
|
5355
|
-
#endif /*
|
|
5355
|
+
#endif /* GRPC_CHANNELZ_V1_CHANNELZ_PROTO_UPB_H__UPB_H_ */
|
data/src/core/ext/upb-gen/{src/proto/grpc/channelz → grpc/channelz/v1}/channelz.upb_minitable.c
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* This file was generated by upb_generator from the input file:
|
|
2
2
|
*
|
|
3
|
-
*
|
|
3
|
+
* grpc/channelz/v1/channelz.proto
|
|
4
4
|
*
|
|
5
5
|
* Do not edit -- your changes will be discarded when the file is
|
|
6
6
|
* regenerated.
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
#include <stddef.h>
|
|
10
10
|
#include "upb/generated_code_support.h"
|
|
11
|
-
#include "
|
|
11
|
+
#include "grpc/channelz/v1/channelz.upb_minitable.h"
|
|
12
12
|
#include "google/protobuf/any.upb_minitable.h"
|
|
13
13
|
#include "google/protobuf/duration.upb_minitable.h"
|
|
14
14
|
#include "google/protobuf/timestamp.upb_minitable.h"
|
|
@@ -1124,7 +1124,7 @@ static const upb_MiniTable *messages_layout[39] = {
|
|
|
1124
1124
|
&grpc__channelz__v1__GetSocketResponse_msg_init,
|
|
1125
1125
|
};
|
|
1126
1126
|
|
|
1127
|
-
const upb_MiniTableFile
|
|
1127
|
+
const upb_MiniTableFile grpc_channelz_v1_channelz_proto_upb_file_layout = {
|
|
1128
1128
|
messages_layout,
|
|
1129
1129
|
NULL,
|
|
1130
1130
|
NULL,
|