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
data/src/core/ext/upb-gen/{src/proto/grpc/channelz → grpc/channelz/v1}/channelz.upb_minitable.h
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
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_MINITABLE_H_
|
|
10
|
+
#define GRPC_CHANNELZ_V1_CHANNELZ_PROTO_UPB_H__UPB_MINITABLE_H_
|
|
11
11
|
|
|
12
12
|
#include "upb/generated_code_support.h"
|
|
13
13
|
|
|
@@ -58,7 +58,7 @@ extern const upb_MiniTable grpc__channelz__v1__GetSubchannelResponse_msg_init;
|
|
|
58
58
|
extern const upb_MiniTable grpc__channelz__v1__GetSocketRequest_msg_init;
|
|
59
59
|
extern const upb_MiniTable grpc__channelz__v1__GetSocketResponse_msg_init;
|
|
60
60
|
|
|
61
|
-
extern const upb_MiniTableFile
|
|
61
|
+
extern const upb_MiniTableFile grpc_channelz_v1_channelz_proto_upb_file_layout;
|
|
62
62
|
|
|
63
63
|
#ifdef __cplusplus
|
|
64
64
|
} /* extern "C" */
|
|
@@ -66,4 +66,4 @@ extern const upb_MiniTableFile src_proto_grpc_channelz_channelz_proto_upb_file_l
|
|
|
66
66
|
|
|
67
67
|
#include "upb/port/undef.inc"
|
|
68
68
|
|
|
69
|
-
#endif /*
|
|
69
|
+
#endif /* GRPC_CHANNELZ_V1_CHANNELZ_PROTO_UPB_H__UPB_MINITABLE_H_ */
|
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
/* This file was generated by upb_generator from the input file:
|
|
2
|
+
*
|
|
3
|
+
* envoy/extensions/filters/http/ext_proc/v3/ext_proc.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
|
+
|
|
10
|
+
#include "upb/reflection/def.h"
|
|
11
|
+
#include "envoy/extensions/filters/http/ext_proc/v3/ext_proc.upbdefs.h"
|
|
12
|
+
#include "envoy/extensions/filters/http/ext_proc/v3/ext_proc.upb_minitable.h"
|
|
13
|
+
|
|
14
|
+
extern _upb_DefPool_Init envoy_config_common_mutation_rules_v3_mutation_rules_proto_upbdefinit;
|
|
15
|
+
extern _upb_DefPool_Init envoy_config_core_v3_base_proto_upbdefinit;
|
|
16
|
+
extern _upb_DefPool_Init envoy_config_core_v3_extension_proto_upbdefinit;
|
|
17
|
+
extern _upb_DefPool_Init envoy_config_core_v3_grpc_service_proto_upbdefinit;
|
|
18
|
+
extern _upb_DefPool_Init envoy_config_core_v3_http_service_proto_upbdefinit;
|
|
19
|
+
extern _upb_DefPool_Init envoy_extensions_filters_http_ext_proc_v3_processing_mode_proto_upbdefinit;
|
|
20
|
+
extern _upb_DefPool_Init envoy_type_matcher_v3_string_proto_upbdefinit;
|
|
21
|
+
extern _upb_DefPool_Init envoy_type_v3_http_status_proto_upbdefinit;
|
|
22
|
+
extern _upb_DefPool_Init google_protobuf_duration_proto_upbdefinit;
|
|
23
|
+
extern _upb_DefPool_Init google_protobuf_struct_proto_upbdefinit;
|
|
24
|
+
extern _upb_DefPool_Init google_protobuf_wrappers_proto_upbdefinit;
|
|
25
|
+
extern _upb_DefPool_Init xds_annotations_v3_status_proto_upbdefinit;
|
|
26
|
+
extern _upb_DefPool_Init envoy_annotations_deprecation_proto_upbdefinit;
|
|
27
|
+
extern _upb_DefPool_Init udpa_annotations_migrate_proto_upbdefinit;
|
|
28
|
+
extern _upb_DefPool_Init udpa_annotations_status_proto_upbdefinit;
|
|
29
|
+
extern _upb_DefPool_Init validate_validate_proto_upbdefinit;
|
|
30
|
+
|
|
31
|
+
static const char descriptor[4719] = {
|
|
32
|
+
'\n', '8', 'e', 'n', 'v', 'o', 'y', '/', 'e', 'x', 't', 'e',
|
|
33
|
+
'n', 's', 'i', 'o', 'n', 's', '/', 'f', 'i', 'l', 't', 'e',
|
|
34
|
+
'r', 's', '/', 'h', 't', 't', 'p', '/', 'e', 'x', 't', '_',
|
|
35
|
+
'p', 'r', 'o', 'c', '/', 'v', '3', '/', 'e', 'x', 't', '_',
|
|
36
|
+
'p', 'r', 'o', 'c', '.', 'p', 'r', 'o', 't', 'o', '\022', ')',
|
|
37
|
+
'e', 'n', 'v', 'o', 'y', '.', 'e', 'x', 't', 'e', 'n', 's',
|
|
38
|
+
'i', 'o', 'n', 's', '.', 'f', 'i', 'l', 't', 'e', 'r', 's',
|
|
39
|
+
'.', 'h', 't', 't', 'p', '.', 'e', 'x', 't', '_', 'p', 'r',
|
|
40
|
+
'o', 'c', '.', 'v', '3', '\032', ':', 'e', 'n', 'v', 'o', 'y',
|
|
41
|
+
'/', 'c', 'o', 'n', 'f', 'i', 'g', '/', 'c', 'o', 'm', 'm',
|
|
42
|
+
'o', 'n', '/', 'm', 'u', 't', 'a', 't', 'i', 'o', 'n', '_',
|
|
43
|
+
'r', 'u', 'l', 'e', 's', '/', 'v', '3', '/', 'm', 'u', 't',
|
|
44
|
+
'a', 't', 'i', 'o', 'n', '_', 'r', 'u', 'l', 'e', 's', '.',
|
|
45
|
+
'p', 'r', 'o', 't', 'o', '\032', '\037', 'e', 'n', 'v', 'o', 'y',
|
|
46
|
+
'/', 'c', 'o', 'n', 'f', 'i', 'g', '/', 'c', 'o', 'r', 'e',
|
|
47
|
+
'/', 'v', '3', '/', 'b', 'a', 's', 'e', '.', 'p', 'r', 'o',
|
|
48
|
+
't', 'o', '\032', '$', 'e', 'n', 'v', 'o', 'y', '/', 'c', 'o',
|
|
49
|
+
'n', 'f', 'i', 'g', '/', 'c', 'o', 'r', 'e', '/', 'v', '3',
|
|
50
|
+
'/', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', '.', 'p',
|
|
51
|
+
'r', 'o', 't', 'o', '\032', '\'', 'e', 'n', 'v', 'o', 'y', '/',
|
|
52
|
+
'c', 'o', 'n', 'f', 'i', 'g', '/', 'c', 'o', 'r', 'e', '/',
|
|
53
|
+
'v', '3', '/', 'g', 'r', 'p', 'c', '_', 's', 'e', 'r', 'v',
|
|
54
|
+
'i', 'c', 'e', '.', 'p', 'r', 'o', 't', 'o', '\032', '\'', 'e',
|
|
55
|
+
'n', 'v', 'o', 'y', '/', 'c', 'o', 'n', 'f', 'i', 'g', '/',
|
|
56
|
+
'c', 'o', 'r', 'e', '/', 'v', '3', '/', 'h', 't', 't', 'p',
|
|
57
|
+
'_', 's', 'e', 'r', 'v', 'i', 'c', 'e', '.', 'p', 'r', 'o',
|
|
58
|
+
't', 'o', '\032', '?', 'e', 'n', 'v', 'o', 'y', '/', 'e', 'x',
|
|
59
|
+
't', 'e', 'n', 's', 'i', 'o', 'n', 's', '/', 'f', 'i', 'l',
|
|
60
|
+
't', 'e', 'r', 's', '/', 'h', 't', 't', 'p', '/', 'e', 'x',
|
|
61
|
+
't', '_', 'p', 'r', 'o', 'c', '/', 'v', '3', '/', 'p', 'r',
|
|
62
|
+
'o', 'c', 'e', 's', 's', 'i', 'n', 'g', '_', 'm', 'o', 'd',
|
|
63
|
+
'e', '.', 'p', 'r', 'o', 't', 'o', '\032', '\"', 'e', 'n', 'v',
|
|
64
|
+
'o', 'y', '/', 't', 'y', 'p', 'e', '/', 'm', 'a', 't', 'c',
|
|
65
|
+
'h', 'e', 'r', '/', 'v', '3', '/', 's', 't', 'r', 'i', 'n',
|
|
66
|
+
'g', '.', 'p', 'r', 'o', 't', 'o', '\032', '\037', 'e', 'n', 'v',
|
|
67
|
+
'o', 'y', '/', 't', 'y', 'p', 'e', '/', 'v', '3', '/', 'h',
|
|
68
|
+
't', 't', 'p', '_', 's', 't', 'a', 't', 'u', 's', '.', 'p',
|
|
69
|
+
'r', 'o', 't', 'o', '\032', '\036', 'g', 'o', 'o', 'g', 'l', 'e',
|
|
70
|
+
'/', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '/', 'd', 'u',
|
|
71
|
+
'r', 'a', 't', 'i', 'o', 'n', '.', 'p', 'r', 'o', 't', 'o',
|
|
72
|
+
'\032', '\034', 'g', 'o', 'o', 'g', 'l', 'e', '/', 'p', 'r', 'o',
|
|
73
|
+
't', 'o', 'b', 'u', 'f', '/', 's', 't', 'r', 'u', 'c', 't',
|
|
74
|
+
'.', 'p', 'r', 'o', 't', 'o', '\032', '\036', 'g', 'o', 'o', 'g',
|
|
75
|
+
'l', 'e', '/', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '/',
|
|
76
|
+
'w', 'r', 'a', 'p', 'p', 'e', 'r', 's', '.', 'p', 'r', 'o',
|
|
77
|
+
't', 'o', '\032', '\037', 'x', 'd', 's', '/', 'a', 'n', 'n', 'o',
|
|
78
|
+
't', 'a', 't', 'i', 'o', 'n', 's', '/', 'v', '3', '/', 's',
|
|
79
|
+
't', 'a', 't', 'u', 's', '.', 'p', 'r', 'o', 't', 'o', '\032',
|
|
80
|
+
'#', 'e', 'n', 'v', 'o', 'y', '/', 'a', 'n', 'n', 'o', 't',
|
|
81
|
+
'a', 't', 'i', 'o', 'n', 's', '/', 'd', 'e', 'p', 'r', 'e',
|
|
82
|
+
'c', 'a', 't', 'i', 'o', 'n', '.', 'p', 'r', 'o', 't', 'o',
|
|
83
|
+
'\032', '\036', 'u', 'd', 'p', 'a', '/', 'a', 'n', 'n', 'o', 't',
|
|
84
|
+
'a', 't', 'i', 'o', 'n', 's', '/', 'm', 'i', 'g', 'r', 'a',
|
|
85
|
+
't', 'e', '.', 'p', 'r', 'o', 't', 'o', '\032', '\035', 'u', 'd',
|
|
86
|
+
'p', 'a', '/', 'a', 'n', 'n', 'o', 't', 'a', 't', 'i', 'o',
|
|
87
|
+
'n', 's', '/', 's', 't', 'a', 't', 'u', 's', '.', 'p', 'r',
|
|
88
|
+
'o', 't', 'o', '\032', '\027', 'v', 'a', 'l', 'i', 'd', 'a', 't',
|
|
89
|
+
'e', '/', 'v', 'a', 'l', 'i', 'd', 'a', 't', 'e', '.', 'p',
|
|
90
|
+
'r', 'o', 't', 'o', '\"', '\334', '\020', '\n', '\021', 'E', 'x', 't',
|
|
91
|
+
'e', 'r', 'n', 'a', 'l', 'P', 'r', 'o', 'c', 'e', 's', 's',
|
|
92
|
+
'o', 'r', '\022', 'c', '\n', '\014', 'g', 'r', 'p', 'c', '_', 's',
|
|
93
|
+
'e', 'r', 'v', 'i', 'c', 'e', '\030', '\001', ' ', '\001', '(', '\013',
|
|
94
|
+
'2', '!', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
95
|
+
'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3', '.',
|
|
96
|
+
'G', 'r', 'p', 'c', 'S', 'e', 'r', 'v', 'i', 'c', 'e', 'B',
|
|
97
|
+
'\035', '\362', '\230', '\376', '\217', '\005', '\027', '\022', '\025', 'e', 'x', 't',
|
|
98
|
+
'_', 'p', 'r', 'o', 'c', '_', 's', 'e', 'r', 'v', 'i', 'c',
|
|
99
|
+
'e', '_', 't', 'y', 'p', 'e', 'R', '\013', 'g', 'r', 'p', 'c',
|
|
100
|
+
'S', 'e', 'r', 'v', 'i', 'c', 'e', '\022', '\207', '\001', '\n', '\014',
|
|
101
|
+
'h', 't', 't', 'p', '_', 's', 'e', 'r', 'v', 'i', 'c', 'e',
|
|
102
|
+
'\030', '\024', ' ', '\001', '(', '\013', '2', '=', '.', 'e', 'n', 'v',
|
|
103
|
+
'o', 'y', '.', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n',
|
|
104
|
+
's', '.', 'f', 'i', 'l', 't', 'e', 'r', 's', '.', 'h', 't',
|
|
105
|
+
't', 'p', '.', 'e', 'x', 't', '_', 'p', 'r', 'o', 'c', '.',
|
|
106
|
+
'v', '3', '.', 'E', 'x', 't', 'P', 'r', 'o', 'c', 'H', 't',
|
|
107
|
+
't', 'p', 'S', 'e', 'r', 'v', 'i', 'c', 'e', 'B', '%', '\362',
|
|
108
|
+
'\230', '\376', '\217', '\005', '\027', '\022', '\025', 'e', 'x', 't', '_', 'p',
|
|
109
|
+
'r', 'o', 'c', '_', 's', 'e', 'r', 'v', 'i', 'c', 'e', '_',
|
|
110
|
+
't', 'y', 'p', 'e', '\322', '\306', '\244', '\341', '\006', '\002', '\010', '\001',
|
|
111
|
+
'R', '\013', 'h', 't', 't', 'p', 'S', 'e', 'r', 'v', 'i', 'c',
|
|
112
|
+
'e', '\022', ',', '\n', '\022', 'f', 'a', 'i', 'l', 'u', 'r', 'e',
|
|
113
|
+
'_', 'm', 'o', 'd', 'e', '_', 'a', 'l', 'l', 'o', 'w', '\030',
|
|
114
|
+
'\002', ' ', '\001', '(', '\010', 'R', '\020', 'f', 'a', 'i', 'l', 'u',
|
|
115
|
+
'r', 'e', 'M', 'o', 'd', 'e', 'A', 'l', 'l', 'o', 'w', '\022',
|
|
116
|
+
'b', '\n', '\017', 'p', 'r', 'o', 'c', 'e', 's', 's', 'i', 'n',
|
|
117
|
+
'g', '_', 'm', 'o', 'd', 'e', '\030', '\003', ' ', '\001', '(', '\013',
|
|
118
|
+
'2', '9', '.', 'e', 'n', 'v', 'o', 'y', '.', 'e', 'x', 't',
|
|
119
|
+
'e', 'n', 's', 'i', 'o', 'n', 's', '.', 'f', 'i', 'l', 't',
|
|
120
|
+
'e', 'r', 's', '.', 'h', 't', 't', 'p', '.', 'e', 'x', 't',
|
|
121
|
+
'_', 'p', 'r', 'o', 'c', '.', 'v', '3', '.', 'P', 'r', 'o',
|
|
122
|
+
'c', 'e', 's', 's', 'i', 'n', 'g', 'M', 'o', 'd', 'e', 'R',
|
|
123
|
+
'\016', 'p', 'r', 'o', 'c', 'e', 's', 's', 'i', 'n', 'g', 'M',
|
|
124
|
+
'o', 'd', 'e', '\022', '-', '\n', '\022', 'r', 'e', 'q', 'u', 'e',
|
|
125
|
+
's', 't', '_', 'a', 't', 't', 'r', 'i', 'b', 'u', 't', 'e',
|
|
126
|
+
's', '\030', '\005', ' ', '\003', '(', '\t', 'R', '\021', 'r', 'e', 'q',
|
|
127
|
+
'u', 'e', 's', 't', 'A', 't', 't', 'r', 'i', 'b', 'u', 't',
|
|
128
|
+
'e', 's', '\022', '/', '\n', '\023', 'r', 'e', 's', 'p', 'o', 'n',
|
|
129
|
+
's', 'e', '_', 'a', 't', 't', 'r', 'i', 'b', 'u', 't', 'e',
|
|
130
|
+
's', '\030', '\006', ' ', '\003', '(', '\t', 'R', '\022', 'r', 'e', 's',
|
|
131
|
+
'p', 'o', 'n', 's', 'e', 'A', 't', 't', 'r', 'i', 'b', 'u',
|
|
132
|
+
't', 'e', 's', '\022', 'Q', '\n', '\017', 'm', 'e', 's', 's', 'a',
|
|
133
|
+
'g', 'e', '_', 't', 'i', 'm', 'e', 'o', 'u', 't', '\030', '\007',
|
|
134
|
+
' ', '\001', '(', '\013', '2', '\031', '.', 'g', 'o', 'o', 'g', 'l',
|
|
135
|
+
'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '.', 'D',
|
|
136
|
+
'u', 'r', 'a', 't', 'i', 'o', 'n', 'B', '\r', '\372', 'B', '\n',
|
|
137
|
+
'\252', '\001', '\007', '\"', '\003', '\010', '\220', '\034', '2', '\000', 'R', '\016',
|
|
138
|
+
'm', 'e', 's', 's', 'a', 'g', 'e', 'T', 'i', 'm', 'e', 'o',
|
|
139
|
+
'u', 't', '\022', '\037', '\n', '\013', 's', 't', 'a', 't', '_', 'p',
|
|
140
|
+
'r', 'e', 'f', 'i', 'x', '\030', '\010', ' ', '\001', '(', '\t', 'R',
|
|
141
|
+
'\n', 's', 't', 'a', 't', 'P', 'r', 'e', 'f', 'i', 'x', '\022',
|
|
142
|
+
'a', '\n', '\016', 'm', 'u', 't', 'a', 't', 'i', 'o', 'n', '_',
|
|
143
|
+
'r', 'u', 'l', 'e', 's', '\030', '\t', ' ', '\001', '(', '\013', '2',
|
|
144
|
+
':', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f',
|
|
145
|
+
'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'u',
|
|
146
|
+
't', 'a', 't', 'i', 'o', 'n', '_', 'r', 'u', 'l', 'e', 's',
|
|
147
|
+
'.', 'v', '3', '.', 'H', 'e', 'a', 'd', 'e', 'r', 'M', 'u',
|
|
148
|
+
't', 'a', 't', 'i', 'o', 'n', 'R', 'u', 'l', 'e', 's', 'R',
|
|
149
|
+
'\r', 'm', 'u', 't', 'a', 't', 'i', 'o', 'n', 'R', 'u', 'l',
|
|
150
|
+
'e', 's', '\022', 'X', '\n', '\023', 'm', 'a', 'x', '_', 'm', 'e',
|
|
151
|
+
's', 's', 'a', 'g', 'e', '_', 't', 'i', 'm', 'e', 'o', 'u',
|
|
152
|
+
't', '\030', '\n', ' ', '\001', '(', '\013', '2', '\031', '.', 'g', 'o',
|
|
153
|
+
'o', 'g', 'l', 'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u',
|
|
154
|
+
'f', '.', 'D', 'u', 'r', 'a', 't', 'i', 'o', 'n', 'B', '\r',
|
|
155
|
+
'\372', 'B', '\n', '\252', '\001', '\007', '\"', '\003', '\010', '\220', '\034', '2',
|
|
156
|
+
'\000', 'R', '\021', 'm', 'a', 'x', 'M', 'e', 's', 's', 'a', 'g',
|
|
157
|
+
'e', 'T', 'i', 'm', 'e', 'o', 'u', 't', '\022', 'e', '\n', '\r',
|
|
158
|
+
'f', 'o', 'r', 'w', 'a', 'r', 'd', '_', 'r', 'u', 'l', 'e',
|
|
159
|
+
's', '\030', '\014', ' ', '\001', '(', '\013', '2', '@', '.', 'e', 'n',
|
|
160
|
+
'v', 'o', 'y', '.', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o',
|
|
161
|
+
'n', 's', '.', 'f', 'i', 'l', 't', 'e', 'r', 's', '.', 'h',
|
|
162
|
+
't', 't', 'p', '.', 'e', 'x', 't', '_', 'p', 'r', 'o', 'c',
|
|
163
|
+
'.', 'v', '3', '.', 'H', 'e', 'a', 'd', 'e', 'r', 'F', 'o',
|
|
164
|
+
'r', 'w', 'a', 'r', 'd', 'i', 'n', 'g', 'R', 'u', 'l', 'e',
|
|
165
|
+
's', 'R', '\014', 'f', 'o', 'r', 'w', 'a', 'r', 'd', 'R', 'u',
|
|
166
|
+
'l', 'e', 's', '\022', '@', '\n', '\017', 'f', 'i', 'l', 't', 'e',
|
|
167
|
+
'r', '_', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a', '\030', '\r',
|
|
168
|
+
' ', '\001', '(', '\013', '2', '\027', '.', 'g', 'o', 'o', 'g', 'l',
|
|
169
|
+
'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '.', 'S',
|
|
170
|
+
't', 'r', 'u', 'c', 't', 'R', '\016', 'f', 'i', 'l', 't', 'e',
|
|
171
|
+
'r', 'M', 'e', 't', 'a', 'd', 'a', 't', 'a', '\022', '.', '\n',
|
|
172
|
+
'\023', 'a', 'l', 'l', 'o', 'w', '_', 'm', 'o', 'd', 'e', '_',
|
|
173
|
+
'o', 'v', 'e', 'r', 'r', 'i', 'd', 'e', '\030', '\016', ' ', '\001',
|
|
174
|
+
'(', '\010', 'R', '\021', 'a', 'l', 'l', 'o', 'w', 'M', 'o', 'd',
|
|
175
|
+
'e', 'O', 'v', 'e', 'r', 'r', 'i', 'd', 'e', '\022', '<', '\n',
|
|
176
|
+
'\032', 'd', 'i', 's', 'a', 'b', 'l', 'e', '_', 'i', 'm', 'm',
|
|
177
|
+
'e', 'd', 'i', 'a', 't', 'e', '_', 'r', 'e', 's', 'p', 'o',
|
|
178
|
+
'n', 's', 'e', '\030', '\017', ' ', '\001', '(', '\010', 'R', '\030', 'd',
|
|
179
|
+
'i', 's', 'a', 'b', 'l', 'e', 'I', 'm', 'm', 'e', 'd', 'i',
|
|
180
|
+
'a', 't', 'e', 'R', 'e', 's', 'p', 'o', 'n', 's', 'e', '\022',
|
|
181
|
+
'e', '\n', '\020', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a', '_',
|
|
182
|
+
'o', 'p', 't', 'i', 'o', 'n', 's', '\030', '\020', ' ', '\001', '(',
|
|
183
|
+
'\013', '2', ':', '.', 'e', 'n', 'v', 'o', 'y', '.', 'e', 'x',
|
|
184
|
+
't', 'e', 'n', 's', 'i', 'o', 'n', 's', '.', 'f', 'i', 'l',
|
|
185
|
+
't', 'e', 'r', 's', '.', 'h', 't', 't', 'p', '.', 'e', 'x',
|
|
186
|
+
't', '_', 'p', 'r', 'o', 'c', '.', 'v', '3', '.', 'M', 'e',
|
|
187
|
+
't', 'a', 'd', 'a', 't', 'a', 'O', 'p', 't', 'i', 'o', 'n',
|
|
188
|
+
's', 'R', '\017', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a', 'O',
|
|
189
|
+
'p', 't', 'i', 'o', 'n', 's', '\022', '-', '\n', '\022', 'o', 'b',
|
|
190
|
+
's', 'e', 'r', 'v', 'a', 'b', 'i', 'l', 'i', 't', 'y', '_',
|
|
191
|
+
'm', 'o', 'd', 'e', '\030', '\021', ' ', '\001', '(', '\010', 'R', '\021',
|
|
192
|
+
'o', 'b', 's', 'e', 'r', 'v', 'a', 'b', 'i', 'l', 'i', 't',
|
|
193
|
+
'y', 'M', 'o', 'd', 'e', '\022', 'Y', '\n', '\031', 'd', 'i', 's',
|
|
194
|
+
'a', 'b', 'l', 'e', '_', 'c', 'l', 'e', 'a', 'r', '_', 'r',
|
|
195
|
+
'o', 'u', 't', 'e', '_', 'c', 'a', 'c', 'h', 'e', '\030', '\013',
|
|
196
|
+
' ', '\001', '(', '\010', 'B', '\036', '\362', '\230', '\376', '\217', '\005', '\030',
|
|
197
|
+
'\022', '\026', 'c', 'l', 'e', 'a', 'r', '_', 'r', 'o', 'u', 't',
|
|
198
|
+
'e', '_', 'c', 'a', 'c', 'h', 'e', '_', 't', 'y', 'p', 'e',
|
|
199
|
+
'R', '\026', 'd', 'i', 's', 'a', 'b', 'l', 'e', 'C', 'l', 'e',
|
|
200
|
+
'a', 'r', 'R', 'o', 'u', 't', 'e', 'C', 'a', 'c', 'h', 'e',
|
|
201
|
+
'\022', '\233', '\001', '\n', '\022', 'r', 'o', 'u', 't', 'e', '_', 'c',
|
|
202
|
+
'a', 'c', 'h', 'e', '_', 'a', 'c', 't', 'i', 'o', 'n', '\030',
|
|
203
|
+
'\022', ' ', '\001', '(', '\016', '2', 'M', '.', 'e', 'n', 'v', 'o',
|
|
204
|
+
'y', '.', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 's',
|
|
205
|
+
'.', 'f', 'i', 'l', 't', 'e', 'r', 's', '.', 'h', 't', 't',
|
|
206
|
+
'p', '.', 'e', 'x', 't', '_', 'p', 'r', 'o', 'c', '.', 'v',
|
|
207
|
+
'3', '.', 'E', 'x', 't', 'e', 'r', 'n', 'a', 'l', 'P', 'r',
|
|
208
|
+
'o', 'c', 'e', 's', 's', 'o', 'r', '.', 'R', 'o', 'u', 't',
|
|
209
|
+
'e', 'C', 'a', 'c', 'h', 'e', 'A', 'c', 't', 'i', 'o', 'n',
|
|
210
|
+
'B', '\036', '\362', '\230', '\376', '\217', '\005', '\030', '\022', '\026', 'c', 'l',
|
|
211
|
+
'e', 'a', 'r', '_', 'r', 'o', 'u', 't', 'e', '_', 'c', 'a',
|
|
212
|
+
'c', 'h', 'e', '_', 't', 'y', 'p', 'e', 'R', '\020', 'r', 'o',
|
|
213
|
+
'u', 't', 'e', 'C', 'a', 'c', 'h', 'e', 'A', 'c', 't', 'i',
|
|
214
|
+
'o', 'n', '\022', 'O', '\n', '\026', 'd', 'e', 'f', 'e', 'r', 'r',
|
|
215
|
+
'e', 'd', '_', 'c', 'l', 'o', 's', 'e', '_', 't', 'i', 'm',
|
|
216
|
+
'e', 'o', 'u', 't', '\030', '\023', ' ', '\001', '(', '\013', '2', '\031',
|
|
217
|
+
'.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'p', 'r', 'o', 't',
|
|
218
|
+
'o', 'b', 'u', 'f', '.', 'D', 'u', 'r', 'a', 't', 'i', 'o',
|
|
219
|
+
'n', 'R', '\024', 'd', 'e', 'f', 'e', 'r', 'r', 'e', 'd', 'C',
|
|
220
|
+
'l', 'o', 's', 'e', 'T', 'i', 'm', 'e', 'o', 'u', 't', '\022',
|
|
221
|
+
'^', '\n', '-', 's', 'e', 'n', 'd', '_', 'b', 'o', 'd', 'y',
|
|
222
|
+
'_', 'w', 'i', 't', 'h', 'o', 'u', 't', '_', 'w', 'a', 'i',
|
|
223
|
+
't', 'i', 'n', 'g', '_', 'f', 'o', 'r', '_', 'h', 'e', 'a',
|
|
224
|
+
'd', 'e', 'r', '_', 'r', 'e', 's', 'p', 'o', 'n', 's', 'e',
|
|
225
|
+
'\030', '\025', ' ', '\001', '(', '\010', 'R', '\'', 's', 'e', 'n', 'd',
|
|
226
|
+
'B', 'o', 'd', 'y', 'W', 'i', 't', 'h', 'o', 'u', 't', 'W',
|
|
227
|
+
'a', 'i', 't', 'i', 'n', 'g', 'F', 'o', 'r', 'H', 'e', 'a',
|
|
228
|
+
'd', 'e', 'r', 'R', 'e', 's', 'p', 'o', 'n', 's', 'e', '\022',
|
|
229
|
+
'o', '\n', '\026', 'a', 'l', 'l', 'o', 'w', 'e', 'd', '_', 'o',
|
|
230
|
+
'v', 'e', 'r', 'r', 'i', 'd', 'e', '_', 'm', 'o', 'd', 'e',
|
|
231
|
+
's', '\030', '\026', ' ', '\003', '(', '\013', '2', '9', '.', 'e', 'n',
|
|
232
|
+
'v', 'o', 'y', '.', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o',
|
|
233
|
+
'n', 's', '.', 'f', 'i', 'l', 't', 'e', 'r', 's', '.', 'h',
|
|
234
|
+
't', 't', 'p', '.', 'e', 'x', 't', '_', 'p', 'r', 'o', 'c',
|
|
235
|
+
'.', 'v', '3', '.', 'P', 'r', 'o', 'c', 'e', 's', 's', 'i',
|
|
236
|
+
'n', 'g', 'M', 'o', 'd', 'e', 'R', '\024', 'a', 'l', 'l', 'o',
|
|
237
|
+
'w', 'e', 'd', 'O', 'v', 'e', 'r', 'r', 'i', 'd', 'e', 'M',
|
|
238
|
+
'o', 'd', 'e', 's', '\022', 't', '\n', '\033', 'p', 'r', 'o', 'c',
|
|
239
|
+
'e', 's', 's', 'i', 'n', 'g', '_', 'r', 'e', 'q', 'u', 'e',
|
|
240
|
+
's', 't', '_', 'm', 'o', 'd', 'i', 'f', 'i', 'e', 'r', '\030',
|
|
241
|
+
'\031', ' ', '\001', '(', '\013', '2', '*', '.', 'e', 'n', 'v', 'o',
|
|
242
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r',
|
|
243
|
+
'e', '.', 'v', '3', '.', 'T', 'y', 'p', 'e', 'd', 'E', 'x',
|
|
244
|
+
't', 'e', 'n', 's', 'i', 'o', 'n', 'C', 'o', 'n', 'f', 'i',
|
|
245
|
+
'g', 'B', '\010', '\322', '\306', '\244', '\341', '\006', '\002', '\010', '\001', 'R',
|
|
246
|
+
'\031', 'p', 'r', 'o', 'c', 'e', 's', 's', 'i', 'n', 'g', 'R',
|
|
247
|
+
'e', 'q', 'u', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'i',
|
|
248
|
+
'e', 'r', '\022', 'j', '\n', '\026', 'o', 'n', '_', 'p', 'r', 'o',
|
|
249
|
+
'c', 'e', 's', 's', 'i', 'n', 'g', '_', 'r', 'e', 's', 'p',
|
|
250
|
+
'o', 'n', 's', 'e', '\030', '\027', ' ', '\001', '(', '\013', '2', '*',
|
|
251
|
+
'.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i',
|
|
252
|
+
'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3', '.', 'T', 'y',
|
|
253
|
+
'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n',
|
|
254
|
+
'C', 'o', 'n', 'f', 'i', 'g', 'B', '\010', '\322', '\306', '\244', '\341',
|
|
255
|
+
'\006', '\002', '\010', '\001', 'R', '\024', 'o', 'n', 'P', 'r', 'o', 'c',
|
|
256
|
+
'e', 's', 's', 'i', 'n', 'g', 'R', 'e', 's', 'p', 'o', 'n',
|
|
257
|
+
's', 'e', '\022', 'A', '\n', '\017', 's', 't', 'a', 't', 'u', 's',
|
|
258
|
+
'_', 'o', 'n', '_', 'e', 'r', 'r', 'o', 'r', '\030', '\030', ' ',
|
|
259
|
+
'\001', '(', '\013', '2', '\031', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
260
|
+
't', 'y', 'p', 'e', '.', 'v', '3', '.', 'H', 't', 't', 'p',
|
|
261
|
+
'S', 't', 'a', 't', 'u', 's', 'R', '\r', 's', 't', 'a', 't',
|
|
262
|
+
'u', 's', 'O', 'n', 'E', 'r', 'r', 'o', 'r', '\"', '6', '\n',
|
|
263
|
+
'\020', 'R', 'o', 'u', 't', 'e', 'C', 'a', 'c', 'h', 'e', 'A',
|
|
264
|
+
'c', 't', 'i', 'o', 'n', '\022', '\013', '\n', '\007', 'D', 'E', 'F',
|
|
265
|
+
'A', 'U', 'L', 'T', '\020', '\000', '\022', '\t', '\n', '\005', 'C', 'L',
|
|
266
|
+
'E', 'A', 'R', '\020', '\001', '\022', '\n', '\n', '\006', 'R', 'E', 'T',
|
|
267
|
+
'A', 'I', 'N', '\020', '\002', 'J', '\004', '\010', '\004', '\020', '\005', 'R',
|
|
268
|
+
'\n', 'a', 's', 'y', 'n', 'c', '_', 'm', 'o', 'd', 'e', '\"',
|
|
269
|
+
'Z', '\n', '\022', 'E', 'x', 't', 'P', 'r', 'o', 'c', 'H', 't',
|
|
270
|
+
't', 'p', 'S', 'e', 'r', 'v', 'i', 'c', 'e', '\022', 'D', '\n',
|
|
271
|
+
'\014', 'h', 't', 't', 'p', '_', 's', 'e', 'r', 'v', 'i', 'c',
|
|
272
|
+
'e', '\030', '\001', ' ', '\001', '(', '\013', '2', '!', '.', 'e', 'n',
|
|
273
|
+
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c',
|
|
274
|
+
'o', 'r', 'e', '.', 'v', '3', '.', 'H', 't', 't', 'p', 'S',
|
|
275
|
+
'e', 'r', 'v', 'i', 'c', 'e', 'R', '\013', 'h', 't', 't', 'p',
|
|
276
|
+
'S', 'e', 'r', 'v', 'i', 'c', 'e', '\"', '\204', '\004', '\n', '\017',
|
|
277
|
+
'M', 'e', 't', 'a', 'd', 'a', 't', 'a', 'O', 'p', 't', 'i',
|
|
278
|
+
'o', 'n', 's', '\022', '\202', '\001', '\n', '\025', 'f', 'o', 'r', 'w',
|
|
279
|
+
'a', 'r', 'd', 'i', 'n', 'g', '_', 'n', 'a', 'm', 'e', 's',
|
|
280
|
+
'p', 'a', 'c', 'e', 's', '\030', '\001', ' ', '\001', '(', '\013', '2',
|
|
281
|
+
'M', '.', 'e', 'n', 'v', 'o', 'y', '.', 'e', 'x', 't', 'e',
|
|
282
|
+
'n', 's', 'i', 'o', 'n', 's', '.', 'f', 'i', 'l', 't', 'e',
|
|
283
|
+
'r', 's', '.', 'h', 't', 't', 'p', '.', 'e', 'x', 't', '_',
|
|
284
|
+
'p', 'r', 'o', 'c', '.', 'v', '3', '.', 'M', 'e', 't', 'a',
|
|
285
|
+
'd', 'a', 't', 'a', 'O', 'p', 't', 'i', 'o', 'n', 's', '.',
|
|
286
|
+
'M', 'e', 't', 'a', 'd', 'a', 't', 'a', 'N', 'a', 'm', 'e',
|
|
287
|
+
's', 'p', 'a', 'c', 'e', 's', 'R', '\024', 'f', 'o', 'r', 'w',
|
|
288
|
+
'a', 'r', 'd', 'i', 'n', 'g', 'N', 'a', 'm', 'e', 's', 'p',
|
|
289
|
+
'a', 'c', 'e', 's', '\022', '\200', '\001', '\n', '\024', 'r', 'e', 'c',
|
|
290
|
+
'e', 'i', 'v', 'i', 'n', 'g', '_', 'n', 'a', 'm', 'e', 's',
|
|
291
|
+
'p', 'a', 'c', 'e', 's', '\030', '\002', ' ', '\001', '(', '\013', '2',
|
|
292
|
+
'M', '.', 'e', 'n', 'v', 'o', 'y', '.', 'e', 'x', 't', 'e',
|
|
293
|
+
'n', 's', 'i', 'o', 'n', 's', '.', 'f', 'i', 'l', 't', 'e',
|
|
294
|
+
'r', 's', '.', 'h', 't', 't', 'p', '.', 'e', 'x', 't', '_',
|
|
295
|
+
'p', 'r', 'o', 'c', '.', 'v', '3', '.', 'M', 'e', 't', 'a',
|
|
296
|
+
'd', 'a', 't', 'a', 'O', 'p', 't', 'i', 'o', 'n', 's', '.',
|
|
297
|
+
'M', 'e', 't', 'a', 'd', 'a', 't', 'a', 'N', 'a', 'm', 'e',
|
|
298
|
+
's', 'p', 'a', 'c', 'e', 's', 'R', '\023', 'r', 'e', 'c', 'e',
|
|
299
|
+
'i', 'v', 'i', 'n', 'g', 'N', 'a', 'm', 'e', 's', 'p', 'a',
|
|
300
|
+
'c', 'e', 's', '\022', '\242', '\001', '\n', '&', 'c', 'l', 'u', 's',
|
|
301
|
+
't', 'e', 'r', '_', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a',
|
|
302
|
+
'_', 'f', 'o', 'r', 'w', 'a', 'r', 'd', 'i', 'n', 'g', '_',
|
|
303
|
+
'n', 'a', 'm', 'e', 's', 'p', 'a', 'c', 'e', 's', '\030', '\003',
|
|
304
|
+
' ', '\001', '(', '\013', '2', 'M', '.', 'e', 'n', 'v', 'o', 'y',
|
|
305
|
+
'.', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 's', '.',
|
|
306
|
+
'f', 'i', 'l', 't', 'e', 'r', 's', '.', 'h', 't', 't', 'p',
|
|
307
|
+
'.', 'e', 'x', 't', '_', 'p', 'r', 'o', 'c', '.', 'v', '3',
|
|
308
|
+
'.', 'M', 'e', 't', 'a', 'd', 'a', 't', 'a', 'O', 'p', 't',
|
|
309
|
+
'i', 'o', 'n', 's', '.', 'M', 'e', 't', 'a', 'd', 'a', 't',
|
|
310
|
+
'a', 'N', 'a', 'm', 'e', 's', 'p', 'a', 'c', 'e', 's', 'R',
|
|
311
|
+
'#', 'c', 'l', 'u', 's', 't', 'e', 'r', 'M', 'e', 't', 'a',
|
|
312
|
+
'd', 'a', 't', 'a', 'F', 'o', 'r', 'w', 'a', 'r', 'd', 'i',
|
|
313
|
+
'n', 'g', 'N', 'a', 'm', 'e', 's', 'p', 'a', 'c', 'e', 's',
|
|
314
|
+
'\032', 'D', '\n', '\022', 'M', 'e', 't', 'a', 'd', 'a', 't', 'a',
|
|
315
|
+
'N', 'a', 'm', 'e', 's', 'p', 'a', 'c', 'e', 's', '\022', '\030',
|
|
316
|
+
'\n', '\007', 'u', 'n', 't', 'y', 'p', 'e', 'd', '\030', '\001', ' ',
|
|
317
|
+
'\003', '(', '\t', 'R', '\007', 'u', 'n', 't', 'y', 'p', 'e', 'd',
|
|
318
|
+
'\022', '\024', '\n', '\005', 't', 'y', 'p', 'e', 'd', '\030', '\002', ' ',
|
|
319
|
+
'\003', '(', '\t', 'R', '\005', 't', 'y', 'p', 'e', 'd', '\"', '\303',
|
|
320
|
+
'\001', '\n', '\025', 'H', 'e', 'a', 'd', 'e', 'r', 'F', 'o', 'r',
|
|
321
|
+
'w', 'a', 'r', 'd', 'i', 'n', 'g', 'R', 'u', 'l', 'e', 's',
|
|
322
|
+
'\022', 'Q', '\n', '\017', 'a', 'l', 'l', 'o', 'w', 'e', 'd', '_',
|
|
323
|
+
'h', 'e', 'a', 'd', 'e', 'r', 's', '\030', '\001', ' ', '\001', '(',
|
|
324
|
+
'\013', '2', '(', '.', 'e', 'n', 'v', 'o', 'y', '.', 't', 'y',
|
|
325
|
+
'p', 'e', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v',
|
|
326
|
+
'3', '.', 'L', 'i', 's', 't', 'S', 't', 'r', 'i', 'n', 'g',
|
|
327
|
+
'M', 'a', 't', 'c', 'h', 'e', 'r', 'R', '\016', 'a', 'l', 'l',
|
|
328
|
+
'o', 'w', 'e', 'd', 'H', 'e', 'a', 'd', 'e', 'r', 's', '\022',
|
|
329
|
+
'W', '\n', '\022', 'd', 'i', 's', 'a', 'l', 'l', 'o', 'w', 'e',
|
|
330
|
+
'd', '_', 'h', 'e', 'a', 'd', 'e', 'r', 's', '\030', '\002', ' ',
|
|
331
|
+
'\001', '(', '\013', '2', '(', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
332
|
+
't', 'y', 'p', 'e', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r',
|
|
333
|
+
'.', 'v', '3', '.', 'L', 'i', 's', 't', 'S', 't', 'r', 'i',
|
|
334
|
+
'n', 'g', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'R', '\021', 'd',
|
|
335
|
+
'i', 's', 'a', 'l', 'l', 'o', 'w', 'e', 'd', 'H', 'e', 'a',
|
|
336
|
+
'd', 'e', 'r', 's', '\"', '\246', '\001', '\n', '\017', 'E', 'x', 't',
|
|
337
|
+
'P', 'r', 'o', 'c', 'P', 'e', 'r', 'R', 'o', 'u', 't', 'e',
|
|
338
|
+
'\022', '%', '\n', '\010', 'd', 'i', 's', 'a', 'b', 'l', 'e', 'd',
|
|
339
|
+
'\030', '\001', ' ', '\001', '(', '\010', 'B', '\007', '\372', 'B', '\004', 'j',
|
|
340
|
+
'\002', '\010', '\001', 'H', '\000', 'R', '\010', 'd', 'i', 's', 'a', 'b',
|
|
341
|
+
'l', 'e', 'd', '\022', '[', '\n', '\t', 'o', 'v', 'e', 'r', 'r',
|
|
342
|
+
'i', 'd', 'e', 's', '\030', '\002', ' ', '\001', '(', '\013', '2', ';',
|
|
343
|
+
'.', 'e', 'n', 'v', 'o', 'y', '.', 'e', 'x', 't', 'e', 'n',
|
|
344
|
+
's', 'i', 'o', 'n', 's', '.', 'f', 'i', 'l', 't', 'e', 'r',
|
|
345
|
+
's', '.', 'h', 't', 't', 'p', '.', 'e', 'x', 't', '_', 'p',
|
|
346
|
+
'r', 'o', 'c', '.', 'v', '3', '.', 'E', 'x', 't', 'P', 'r',
|
|
347
|
+
'o', 'c', 'O', 'v', 'e', 'r', 'r', 'i', 'd', 'e', 's', 'H',
|
|
348
|
+
'\000', 'R', '\t', 'o', 'v', 'e', 'r', 'r', 'i', 'd', 'e', 's',
|
|
349
|
+
'B', '\017', '\n', '\010', 'o', 'v', 'e', 'r', 'r', 'i', 'd', 'e',
|
|
350
|
+
'\022', '\003', '\370', 'B', '\001', '\"', '\306', '\005', '\n', '\020', 'E', 'x',
|
|
351
|
+
't', 'P', 'r', 'o', 'c', 'O', 'v', 'e', 'r', 'r', 'i', 'd',
|
|
352
|
+
'e', 's', '\022', 'b', '\n', '\017', 'p', 'r', 'o', 'c', 'e', 's',
|
|
353
|
+
's', 'i', 'n', 'g', '_', 'm', 'o', 'd', 'e', '\030', '\001', ' ',
|
|
354
|
+
'\001', '(', '\013', '2', '9', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
355
|
+
'e', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 's', '.', 'f',
|
|
356
|
+
'i', 'l', 't', 'e', 'r', 's', '.', 'h', 't', 't', 'p', '.',
|
|
357
|
+
'e', 'x', 't', '_', 'p', 'r', 'o', 'c', '.', 'v', '3', '.',
|
|
358
|
+
'P', 'r', 'o', 'c', 'e', 's', 's', 'i', 'n', 'g', 'M', 'o',
|
|
359
|
+
'd', 'e', 'R', '\016', 'p', 'r', 'o', 'c', 'e', 's', 's', 'i',
|
|
360
|
+
'n', 'g', 'M', 'o', 'd', 'e', '\022', '*', '\n', '\n', 'a', 's',
|
|
361
|
+
'y', 'n', 'c', '_', 'm', 'o', 'd', 'e', '\030', '\002', ' ', '\001',
|
|
362
|
+
'(', '\010', 'B', '\013', '\030', '\001', '\222', '\307', '\206', '\330', '\004', '\003',
|
|
363
|
+
'3', '.', '0', 'R', '\t', 'a', 's', 'y', 'n', 'c', 'M', 'o',
|
|
364
|
+
'd', 'e', '\022', '-', '\n', '\022', 'r', 'e', 'q', 'u', 'e', 's',
|
|
365
|
+
't', '_', 'a', 't', 't', 'r', 'i', 'b', 'u', 't', 'e', 's',
|
|
366
|
+
'\030', '\003', ' ', '\003', '(', '\t', 'R', '\021', 'r', 'e', 'q', 'u',
|
|
367
|
+
'e', 's', 't', 'A', 't', 't', 'r', 'i', 'b', 'u', 't', 'e',
|
|
368
|
+
's', '\022', '/', '\n', '\023', 'r', 'e', 's', 'p', 'o', 'n', 's',
|
|
369
|
+
'e', '_', 'a', 't', 't', 'r', 'i', 'b', 'u', 't', 'e', 's',
|
|
370
|
+
'\030', '\004', ' ', '\003', '(', '\t', 'R', '\022', 'r', 'e', 's', 'p',
|
|
371
|
+
'o', 'n', 's', 'e', 'A', 't', 't', 'r', 'i', 'b', 'u', 't',
|
|
372
|
+
'e', 's', '\022', 'D', '\n', '\014', 'g', 'r', 'p', 'c', '_', 's',
|
|
373
|
+
'e', 'r', 'v', 'i', 'c', 'e', '\030', '\005', ' ', '\001', '(', '\013',
|
|
374
|
+
'2', '!', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
375
|
+
'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3', '.',
|
|
376
|
+
'G', 'r', 'p', 'c', 'S', 'e', 'r', 'v', 'i', 'c', 'e', 'R',
|
|
377
|
+
'\013', 'g', 'r', 'p', 'c', 'S', 'e', 'r', 'v', 'i', 'c', 'e',
|
|
378
|
+
'\022', 'e', '\n', '\020', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a',
|
|
379
|
+
'_', 'o', 'p', 't', 'i', 'o', 'n', 's', '\030', '\006', ' ', '\001',
|
|
380
|
+
'(', '\013', '2', ':', '.', 'e', 'n', 'v', 'o', 'y', '.', 'e',
|
|
381
|
+
'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 's', '.', 'f', 'i',
|
|
382
|
+
'l', 't', 'e', 'r', 's', '.', 'h', 't', 't', 'p', '.', 'e',
|
|
383
|
+
'x', 't', '_', 'p', 'r', 'o', 'c', '.', 'v', '3', '.', 'M',
|
|
384
|
+
'e', 't', 'a', 'd', 'a', 't', 'a', 'O', 'p', 't', 'i', 'o',
|
|
385
|
+
'n', 's', 'R', '\017', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a',
|
|
386
|
+
'O', 'p', 't', 'i', 'o', 'n', 's', '\022', 'U', '\n', '\025', 'g',
|
|
387
|
+
'r', 'p', 'c', '_', 'i', 'n', 'i', 't', 'i', 'a', 'l', '_',
|
|
388
|
+
'm', 'e', 't', 'a', 'd', 'a', 't', 'a', '\030', '\007', ' ', '\003',
|
|
389
|
+
'(', '\013', '2', '!', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c',
|
|
390
|
+
'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v',
|
|
391
|
+
'3', '.', 'H', 'e', 'a', 'd', 'e', 'r', 'V', 'a', 'l', 'u',
|
|
392
|
+
'e', 'R', '\023', 'g', 'r', 'p', 'c', 'I', 'n', 'i', 't', 'i',
|
|
393
|
+
'a', 'l', 'M', 'e', 't', 'a', 'd', 'a', 't', 'a', '\022', 'H',
|
|
394
|
+
'\n', '\022', 'f', 'a', 'i', 'l', 'u', 'r', 'e', '_', 'm', 'o',
|
|
395
|
+
'd', 'e', '_', 'a', 'l', 'l', 'o', 'w', '\030', '\010', ' ', '\001',
|
|
396
|
+
'(', '\013', '2', '\032', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.',
|
|
397
|
+
'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '.', 'B', 'o', 'o',
|
|
398
|
+
'l', 'V', 'a', 'l', 'u', 'e', 'R', '\020', 'f', 'a', 'i', 'l',
|
|
399
|
+
'u', 'r', 'e', 'M', 'o', 'd', 'e', 'A', 'l', 'l', 'o', 'w',
|
|
400
|
+
'\022', 't', '\n', '\033', 'p', 'r', 'o', 'c', 'e', 's', 's', 'i',
|
|
401
|
+
'n', 'g', '_', 'r', 'e', 'q', 'u', 'e', 's', 't', '_', 'm',
|
|
402
|
+
'o', 'd', 'i', 'f', 'i', 'e', 'r', '\030', '\t', ' ', '\001', '(',
|
|
403
|
+
'\013', '2', '*', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
404
|
+
'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3',
|
|
405
|
+
'.', 'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's',
|
|
406
|
+
'i', 'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'B', '\010', '\322',
|
|
407
|
+
'\306', '\244', '\341', '\006', '\002', '\010', '\001', 'R', '\031', 'p', 'r', 'o',
|
|
408
|
+
'c', 'e', 's', 's', 'i', 'n', 'g', 'R', 'e', 'q', 'u', 'e',
|
|
409
|
+
's', 't', 'M', 'o', 'd', 'i', 'f', 'i', 'e', 'r', 'B', '\256',
|
|
410
|
+
'\001', '\n', '7', 'i', 'o', '.', 'e', 'n', 'v', 'o', 'y', 'p',
|
|
411
|
+
'r', 'o', 'x', 'y', '.', 'e', 'n', 'v', 'o', 'y', '.', 'e',
|
|
412
|
+
'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 's', '.', 'f', 'i',
|
|
413
|
+
'l', 't', 'e', 'r', 's', '.', 'h', 't', 't', 'p', '.', 'e',
|
|
414
|
+
'x', 't', '_', 'p', 'r', 'o', 'c', '.', 'v', '3', 'B', '\014',
|
|
415
|
+
'E', 'x', 't', 'P', 'r', 'o', 'c', 'P', 'r', 'o', 't', 'o',
|
|
416
|
+
'P', '\001', 'Z', '[', 'g', 'i', 't', 'h', 'u', 'b', '.', 'c',
|
|
417
|
+
'o', 'm', '/', 'e', 'n', 'v', 'o', 'y', 'p', 'r', 'o', 'x',
|
|
418
|
+
'y', '/', 'g', 'o', '-', 'c', 'o', 'n', 't', 'r', 'o', 'l',
|
|
419
|
+
'-', 'p', 'l', 'a', 'n', 'e', '/', 'e', 'n', 'v', 'o', 'y',
|
|
420
|
+
'/', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 's', '/',
|
|
421
|
+
'f', 'i', 'l', 't', 'e', 'r', 's', '/', 'h', 't', 't', 'p',
|
|
422
|
+
'/', 'e', 'x', 't', '_', 'p', 'r', 'o', 'c', '/', 'v', '3',
|
|
423
|
+
';', 'e', 'x', 't', '_', 'p', 'r', 'o', 'c', 'v', '3', '\272',
|
|
424
|
+
'\200', '\310', '\321', '\006', '\002', '\020', '\002', 'b', '\006', 'p', 'r', 'o',
|
|
425
|
+
't', 'o', '3',
|
|
426
|
+
};
|
|
427
|
+
|
|
428
|
+
static _upb_DefPool_Init *deps[17] = {
|
|
429
|
+
&envoy_config_common_mutation_rules_v3_mutation_rules_proto_upbdefinit,
|
|
430
|
+
&envoy_config_core_v3_base_proto_upbdefinit,
|
|
431
|
+
&envoy_config_core_v3_extension_proto_upbdefinit,
|
|
432
|
+
&envoy_config_core_v3_grpc_service_proto_upbdefinit,
|
|
433
|
+
&envoy_config_core_v3_http_service_proto_upbdefinit,
|
|
434
|
+
&envoy_extensions_filters_http_ext_proc_v3_processing_mode_proto_upbdefinit,
|
|
435
|
+
&envoy_type_matcher_v3_string_proto_upbdefinit,
|
|
436
|
+
&envoy_type_v3_http_status_proto_upbdefinit,
|
|
437
|
+
&google_protobuf_duration_proto_upbdefinit,
|
|
438
|
+
&google_protobuf_struct_proto_upbdefinit,
|
|
439
|
+
&google_protobuf_wrappers_proto_upbdefinit,
|
|
440
|
+
&xds_annotations_v3_status_proto_upbdefinit,
|
|
441
|
+
&envoy_annotations_deprecation_proto_upbdefinit,
|
|
442
|
+
&udpa_annotations_migrate_proto_upbdefinit,
|
|
443
|
+
&udpa_annotations_status_proto_upbdefinit,
|
|
444
|
+
&validate_validate_proto_upbdefinit,
|
|
445
|
+
NULL,
|
|
446
|
+
};
|
|
447
|
+
|
|
448
|
+
_upb_DefPool_Init envoy_extensions_filters_http_ext_proc_v3_ext_proc_proto_upbdefinit = {
|
|
449
|
+
deps,
|
|
450
|
+
&envoy_extensions_filters_http_ext_proc_v3_ext_proc_proto_upb_file_layout,
|
|
451
|
+
"envoy/extensions/filters/http/ext_proc/v3/ext_proc.proto",
|
|
452
|
+
UPB_STRINGVIEW_INIT(descriptor, sizeof(descriptor)),
|
|
453
|
+
};
|