grpc 1.78.1 → 1.80.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 +22 -8
- data/include/grpc/credentials.h +47 -37
- data/include/grpc/credentials_cpp.h +39 -0
- data/include/grpc/event_engine/event_engine.h +8 -3
- data/include/grpc/grpc.h +4 -0
- data/include/grpc/impl/call.h +9 -0
- data/include/grpc/impl/channel_arg_names.h +7 -0
- data/include/grpc/module.modulemap +2 -0
- data/include/grpc/private_key_signer.h +104 -0
- data/include/grpc/support/port_platform.h +6 -0
- data/src/core/call/call_filters.h +101 -78
- data/src/core/call/call_spine.h +91 -68
- data/src/core/call/call_state.h +60 -4
- data/src/core/call/client_call.cc +9 -9
- data/src/core/call/client_call.h +1 -1
- data/src/core/call/metadata_batch.cc +2 -0
- data/src/core/call/metadata_batch.h +48 -1
- data/src/core/call/metadata_info.cc +35 -0
- data/src/core/call/metadata_info.h +2 -0
- data/src/core/call/simple_slice_based_metadata.h +2 -1
- data/src/core/channelz/channelz.cc +9 -6
- data/src/core/channelz/channelz.h +7 -4
- data/src/core/channelz/property_list.h +5 -0
- data/src/core/channelz/v2tov1/convert.cc +1 -1
- data/src/core/channelz/v2tov1/legacy_api.cc +164 -307
- data/src/core/client_channel/buffered_call.cc +7 -3
- data/src/core/client_channel/buffered_call.h +11 -5
- data/src/core/client_channel/client_channel.cc +106 -44
- data/src/core/client_channel/client_channel.h +3 -6
- data/src/core/client_channel/client_channel_filter.cc +90 -64
- data/src/core/client_channel/client_channel_filter.h +3 -6
- data/src/core/client_channel/client_channel_internal.h +5 -0
- data/src/core/client_channel/config_selector.h +17 -12
- data/src/core/client_channel/dynamic_filters.cc +8 -7
- data/src/core/client_channel/dynamic_filters.h +7 -5
- data/src/core/client_channel/retry_filter.cc +1 -1
- data/src/core/client_channel/retry_filter.h +2 -2
- data/src/core/client_channel/subchannel.cc +1682 -266
- data/src/core/client_channel/subchannel.h +411 -134
- data/src/core/client_channel/subchannel_stream_client.cc +22 -18
- data/src/core/client_channel/subchannel_stream_client.h +8 -9
- data/src/core/client_channel/subchannel_stream_limiter.cc +76 -0
- data/src/core/client_channel/subchannel_stream_limiter.h +51 -0
- data/src/core/config/config_vars.cc +9 -1
- data/src/core/config/config_vars.h +6 -0
- data/src/core/credentials/call/call_creds_registry.h +51 -22
- data/src/core/credentials/call/call_creds_registry_init.cc +86 -2
- data/src/core/credentials/call/external/aws_external_account_credentials.cc +2 -2
- data/src/core/credentials/call/external/external_account_credentials.cc +11 -4
- data/src/core/credentials/call/external/file_external_account_credentials.cc +2 -2
- data/src/core/credentials/transport/channel_creds_registry.h +71 -20
- data/src/core/credentials/transport/channel_creds_registry_init.cc +338 -29
- data/src/core/credentials/transport/ssl/ssl_credentials.cc +43 -24
- data/src/core/credentials/transport/ssl/ssl_credentials.h +7 -1
- data/src/core/credentials/transport/ssl/ssl_security_connector.cc +2 -8
- data/src/core/credentials/transport/ssl/ssl_security_connector.h +4 -3
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +25 -5
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +7 -5
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +181 -109
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +55 -42
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.cc +28 -23
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.h +26 -23
- data/src/core/credentials/transport/tls/spiffe_utils.cc +2 -2
- data/src/core/credentials/transport/tls/ssl_utils.cc +18 -18
- data/src/core/credentials/transport/tls/ssl_utils.h +12 -10
- data/src/core/credentials/transport/tls/tls_security_connector.cc +106 -74
- data/src/core/credentials/transport/tls/tls_security_connector.h +12 -8
- data/src/core/credentials/transport/xds/xds_credentials.cc +76 -32
- data/src/core/credentials/transport/xds/xds_credentials.h +4 -2
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +117 -35
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +42 -4
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +58 -29
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +19 -11
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +82 -25
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +28 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +9 -7
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +1 -1
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +7 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +117 -67
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +2 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +11 -1
- data/src/core/ext/transport/chttp2/transport/frame.cc +2 -15
- data/src/core/ext/transport/chttp2/transport/frame.h +0 -4
- data/src/core/ext/transport/chttp2/transport/goaway.cc +17 -2
- data/src/core/ext/transport/chttp2/transport/goaway.h +27 -6
- data/src/core/ext/transport/chttp2/transport/header_assembler.h +8 -21
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +101 -40
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +95 -0
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.cc +923 -772
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.h +406 -423
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +8 -1
- data/src/core/ext/transport/chttp2/transport/http2_settings_promises.h +25 -13
- data/src/core/ext/transport/chttp2/transport/http2_transport.cc +71 -24
- data/src/core/ext/transport/chttp2/transport/http2_transport.h +25 -49
- data/src/core/ext/transport/chttp2/transport/http2_ztrace_collector.h +2 -2
- data/src/core/ext/transport/chttp2/transport/incoming_metadata_tracker.h +29 -9
- data/src/core/ext/transport/chttp2/transport/internal.h +6 -2
- data/src/core/ext/transport/chttp2/transport/keepalive.cc +14 -20
- data/src/core/ext/transport/chttp2/transport/keepalive.h +9 -6
- data/src/core/ext/transport/chttp2/transport/parsing.cc +11 -0
- data/src/core/ext/transport/chttp2/transport/ping_promise.cc +34 -74
- data/src/core/ext/transport/chttp2/transport/ping_promise.h +123 -79
- data/src/core/ext/transport/chttp2/transport/security_frame.h +233 -3
- data/src/core/ext/transport/chttp2/transport/stream.h +152 -73
- data/src/core/ext/transport/chttp2/transport/stream_data_queue.h +155 -85
- data/src/core/ext/transport/chttp2/transport/transport_common.h +0 -5
- data/src/core/ext/transport/chttp2/transport/writable_streams.h +8 -7
- data/src/core/ext/transport/chttp2/transport/write_cycle.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/write_cycle.h +355 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +31 -29
- data/src/core/ext/upb-gen/cel/expr/checked.upb.h +1875 -0
- data/src/core/ext/upb-gen/cel/expr/checked.upb_minitable.c +409 -0
- data/src/core/ext/upb-gen/cel/expr/checked.upb_minitable.h +56 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb.h +2223 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb_minitable.c +489 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb_minitable.h +60 -0
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +130 -18
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +18 -13
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +70 -38
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +20 -17
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +26 -10
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +8 -7
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb.h +495 -0
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb_minitable.c +114 -0
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +26 -10
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +8 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb.h +121 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +143 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +18 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +112 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +22 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +276 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +60 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +72 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +23 -2
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +129 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +36 -10
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +16 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +63 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +12 -7
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +97 -81
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +40 -23
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +604 -228
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +146 -100
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +35 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +66 -14
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +22 -11
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +87 -0
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +29 -2
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +20 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +239 -60
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +59 -28
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb.h +89 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb_minitable.c +50 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb.h +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb_minitable.c +53 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb.h +105 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +6 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +206 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +41 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +64 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +64 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +31 -5
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +283 -14
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +48 -11
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +144 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +35 -7
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +42 -21
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +9 -8
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb.h +164 -1
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.c +37 -6
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +26 -11
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +33 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +14 -3
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +90 -10
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +18 -7
- data/src/core/ext/upbdefs-gen/cel/expr/checked.upbdefs.c +248 -0
- data/src/core/ext/upbdefs-gen/cel/expr/checked.upbdefs.h +97 -0
- data/src/core/ext/upbdefs-gen/cel/expr/syntax.upbdefs.c +283 -0
- data/src/core/ext/upbdefs-gen/cel/expr/syntax.upbdefs.h +107 -0
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +213 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +635 -614
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +1012 -1000
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +276 -273
- data/src/core/ext/upbdefs-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upbdefs.c +152 -0
- data/src/core/ext/upbdefs-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upbdefs.h +47 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +149 -144
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +367 -370
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/cel.upbdefs.c +63 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/cel.upbdefs.h +37 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +297 -284
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +492 -469
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +74 -43
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +60 -59
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +202 -184
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +354 -339
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +28 -19
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +30 -27
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +94 -91
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +386 -369
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +60 -57
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +1974 -1884
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +119 -112
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +62 -51
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +109 -88
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +54 -36
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +78 -84
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +48 -46
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +1041 -984
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +304 -290
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +94 -77
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +246 -193
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +37 -23
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +5 -3
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +4 -4
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +4 -5
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.c +113 -87
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +6 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +25 -30
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +14 -20
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +180 -183
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +56 -47
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +69 -47
- data/src/core/filter/filter_chain.h +95 -0
- data/src/core/handshaker/http_connect/{http_connect_handshaker.cc → http_connect_client_handshaker.cc} +32 -31
- data/src/core/handshaker/http_connect/{http_connect_handshaker.h → http_connect_client_handshaker.h} +4 -4
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +1 -1
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +1 -1
- data/src/core/handshaker/security/pipelined_secure_endpoint.cc +14 -13
- data/src/core/handshaker/security/secure_endpoint.cc +282 -68
- data/src/core/handshaker/security/secure_endpoint.h +0 -7
- data/src/core/lib/channel/channel_args.h +1 -1
- data/src/core/lib/channel/promise_based_filter.cc +17 -4
- data/src/core/lib/channel/promise_based_filter.h +3 -2
- data/src/core/lib/debug/trace_flags.cc +2 -0
- data/src/core/lib/debug/trace_flags.h +1 -0
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +35 -8
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +1 -2
- data/src/core/lib/event_engine/event_engine.cc +9 -0
- data/src/core/lib/event_engine/extensions/tcp_trace.h +0 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +1 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +34 -9
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +24 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +1 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +141 -14
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +19 -2
- data/src/core/lib/event_engine/posix_engine/posix_interface.h +7 -0
- data/src/core/lib/event_engine/posix_engine/posix_interface_posix.cc +21 -3
- data/src/core/lib/event_engine/posix_engine/posix_interface_windows.cc +16 -0
- data/src/core/lib/experiments/experiments.cc +309 -201
- data/src/core/lib/experiments/experiments.h +141 -80
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +2 -2
- data/src/core/lib/iomgr/resolve_address.h +0 -2
- data/src/core/lib/iomgr/resolved_address.h +0 -2
- data/src/core/lib/iomgr/tcp_posix.cc +13 -5
- data/src/core/lib/iomgr/tcp_server.cc +0 -5
- data/src/core/lib/iomgr/tcp_server.h +0 -7
- data/src/core/lib/iomgr/tcp_server_posix.cc +0 -17
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -3
- data/src/core/lib/iomgr/tcp_server_windows.cc +12 -51
- data/src/core/lib/promise/all_ok.h +17 -12
- data/src/core/lib/promise/cancel_callback.h +12 -13
- data/src/core/lib/promise/detail/join_state.h +626 -0
- data/src/core/lib/promise/detail/promise_factory.h +14 -14
- data/src/core/lib/promise/for_each.h +32 -8
- data/src/core/lib/promise/if.h +9 -7
- data/src/core/lib/promise/loop.h +18 -16
- data/src/core/lib/promise/map.h +54 -47
- data/src/core/lib/promise/mpsc.h +11 -10
- data/src/core/lib/promise/observable.h +6 -6
- data/src/core/lib/promise/party.h +25 -19
- data/src/core/lib/promise/poll.h +5 -5
- data/src/core/lib/promise/prioritized_race.h +10 -7
- data/src/core/lib/promise/promise.h +16 -11
- data/src/core/lib/promise/race.h +6 -5
- data/src/core/lib/promise/seq.h +109 -74
- data/src/core/lib/promise/try_join.h +14 -6
- data/src/core/lib/promise/try_seq.h +76 -60
- data/src/core/lib/resource_quota/api.cc +7 -0
- data/src/core/lib/resource_quota/arena.h +1 -1
- data/src/core/lib/resource_quota/memory_quota.cc +4 -1
- data/src/core/lib/resource_quota/resource_quota.cc +2 -1
- data/src/core/lib/resource_quota/resource_quota.h +3 -0
- data/src/core/lib/resource_quota/stream_quota.cc +77 -1
- data/src/core/lib/resource_quota/stream_quota.h +64 -1
- data/src/core/lib/resource_quota/telemetry.h +1 -1
- data/src/core/lib/surface/call.cc +13 -0
- data/src/core/lib/surface/call_utils.h +58 -43
- data/src/core/lib/surface/channel.h +1 -4
- data/src/core/lib/surface/completion_queue.cc +13 -6
- data/src/core/lib/surface/validate_metadata.cc +20 -15
- data/src/core/lib/surface/validate_metadata.h +3 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/promise_endpoint.cc +1 -1
- data/src/core/lib/transport/promise_endpoint.h +1 -1
- data/src/core/lib/transport/transport.h +5 -0
- data/src/core/load_balancing/health_check_client.cc +1 -15
- data/src/core/load_balancing/health_check_client_internal.h +0 -2
- data/src/core/load_balancing/oob_backend_metric.cc +1 -5
- data/src/core/load_balancing/oob_backend_metric_internal.h +0 -1
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +12 -9
- data/src/core/plugin_registry/grpc_plugin_registry.cc +3 -2
- data/src/core/resolver/xds/xds_resolver.cc +162 -116
- data/src/core/server/server.cc +18 -1
- data/src/core/server/server.h +2 -0
- data/src/core/server/xds_server_config_fetcher.cc +4 -4
- data/src/core/telemetry/call_tracer.cc +87 -2
- data/src/core/telemetry/call_tracer.h +46 -8
- data/src/core/telemetry/instrument.cc +102 -40
- data/src/core/telemetry/instrument.h +246 -65
- data/src/core/tsi/fake_transport_security.cc +3 -1
- data/src/core/tsi/ssl_transport_security.cc +516 -137
- data/src/core/tsi/ssl_transport_security.h +28 -22
- data/src/core/tsi/ssl_transport_security_utils.cc +2 -2
- data/src/core/tsi/ssl_transport_security_utils.h +2 -2
- data/src/core/util/bitset.h +6 -0
- data/src/core/util/function_signature.h +3 -1
- data/src/core/util/http_client/httpcli_security_connector.cc +2 -1
- data/src/core/util/json/json_reader.cc +0 -4
- data/src/core/xds/grpc/certificate_provider_store.cc +2 -1
- data/src/core/xds/grpc/certificate_provider_store.h +3 -17
- data/src/core/xds/grpc/certificate_provider_store_interface.h +61 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +48 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +18 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +7 -2
- data/src/core/xds/grpc/xds_certificate_provider.h +13 -2
- data/src/core/xds/grpc/xds_client_grpc.cc +13 -6
- data/src/core/xds/grpc/xds_client_grpc.h +10 -7
- data/src/core/xds/grpc/xds_cluster.cc +18 -4
- data/src/core/xds/grpc/xds_cluster.h +17 -2
- data/src/core/xds/grpc/xds_cluster_parser.cc +36 -11
- data/src/core/xds/grpc/xds_common_types.cc +45 -0
- data/src/core/xds/grpc/xds_common_types.h +31 -0
- data/src/core/xds/grpc/xds_common_types_parser.cc +274 -16
- data/src/core/xds/grpc/xds_common_types_parser.h +12 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +128 -24
- data/src/core/xds/grpc/xds_http_fault_filter.h +19 -10
- data/src/core/xds/grpc/xds_http_filter.cc +38 -0
- data/src/core/xds/grpc/xds_http_filter.h +70 -47
- data/src/core/xds/grpc/xds_http_filter_registry.cc +48 -14
- data/src/core/xds/grpc/xds_http_filter_registry.h +29 -15
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +88 -22
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +22 -11
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +36 -20
- data/src/core/xds/grpc/xds_http_rbac_filter.h +19 -10
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +143 -26
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +19 -10
- data/src/core/xds/grpc/xds_listener.cc +4 -1
- data/src/core/xds/grpc/xds_listener.h +10 -2
- data/src/core/xds/grpc/xds_listener_parser.cc +23 -18
- data/src/core/xds/grpc/xds_matcher.cc +40 -5
- data/src/core/xds/grpc/xds_matcher.h +13 -0
- data/src/core/xds/grpc/xds_matcher_action.h +1 -1
- data/src/core/xds/grpc/xds_matcher_parse.cc +60 -40
- data/src/core/xds/grpc/xds_matcher_parse.h +2 -1
- data/src/core/xds/grpc/xds_route_config.cc +12 -1
- data/src/core/xds/grpc/xds_route_config.h +15 -2
- data/src/core/xds/grpc/xds_route_config_parser.cc +11 -5
- data/src/core/xds/grpc/xds_routing.cc +181 -6
- data/src/core/xds/grpc/xds_routing.h +57 -0
- data/src/core/xds/grpc/xds_server_grpc.cc +55 -43
- data/src/core/xds/grpc/xds_server_grpc.h +13 -6
- data/src/core/xds/grpc/xds_server_grpc_interface.h +3 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +12 -6
- data/src/core/xds/grpc/xds_transport_grpc.h +5 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +12 -8
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +18 -12
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +1 -1
- metadata +42 -6
- data/src/core/ext/transport/chttp2/transport/security_frame.cc +0 -31
- data/src/core/handshaker/security/legacy_secure_endpoint.cc +0 -597
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
extern _upb_DefPool_Init envoy_config_accesslog_v3_accesslog_proto_upbdefinit;
|
|
15
15
|
extern _upb_DefPool_Init envoy_config_core_v3_address_proto_upbdefinit;
|
|
16
16
|
extern _upb_DefPool_Init envoy_config_core_v3_base_proto_upbdefinit;
|
|
17
|
+
extern _upb_DefPool_Init envoy_config_core_v3_config_source_proto_upbdefinit;
|
|
17
18
|
extern _upb_DefPool_Init envoy_config_core_v3_extension_proto_upbdefinit;
|
|
18
19
|
extern _upb_DefPool_Init envoy_config_core_v3_socket_option_proto_upbdefinit;
|
|
19
20
|
extern _upb_DefPool_Init envoy_config_listener_v3_api_listener_proto_upbdefinit;
|
|
@@ -21,7 +22,6 @@ extern _upb_DefPool_Init envoy_config_listener_v3_listener_components_proto_upbd
|
|
|
21
22
|
extern _upb_DefPool_Init envoy_config_listener_v3_udp_listener_config_proto_upbdefinit;
|
|
22
23
|
extern _upb_DefPool_Init google_protobuf_duration_proto_upbdefinit;
|
|
23
24
|
extern _upb_DefPool_Init google_protobuf_wrappers_proto_upbdefinit;
|
|
24
|
-
extern _upb_DefPool_Init xds_annotations_v3_status_proto_upbdefinit;
|
|
25
25
|
extern _upb_DefPool_Init xds_core_v3_collection_entry_proto_upbdefinit;
|
|
26
26
|
extern _upb_DefPool_Init xds_type_matcher_v3_matcher_proto_upbdefinit;
|
|
27
27
|
extern _upb_DefPool_Init envoy_annotations_deprecation_proto_upbdefinit;
|
|
@@ -30,7 +30,7 @@ extern _upb_DefPool_Init udpa_annotations_status_proto_upbdefinit;
|
|
|
30
30
|
extern _upb_DefPool_Init udpa_annotations_versioning_proto_upbdefinit;
|
|
31
31
|
extern _upb_DefPool_Init validate_validate_proto_upbdefinit;
|
|
32
32
|
|
|
33
|
-
static const char descriptor[
|
|
33
|
+
static const char descriptor[4523] = {
|
|
34
34
|
'\n', '\'', 'e', 'n', 'v', 'o', 'y', '/', 'c', 'o', 'n', 'f',
|
|
35
35
|
'i', 'g', '/', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '/',
|
|
36
36
|
'v', '3', '/', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '.',
|
|
@@ -46,359 +46,375 @@ static const char descriptor[4337] = {
|
|
|
46
46
|
't', 'o', '\032', '\037', 'e', 'n', 'v', 'o', 'y', '/', 'c', 'o',
|
|
47
47
|
'n', 'f', 'i', 'g', '/', 'c', 'o', 'r', 'e', '/', 'v', '3',
|
|
48
48
|
'/', 'b', 'a', 's', 'e', '.', 'p', 'r', 'o', 't', 'o', '\032',
|
|
49
|
-
'
|
|
50
|
-
'g', '/', 'c', 'o', 'r', 'e', '/', 'v', '3', '/', '
|
|
51
|
-
'
|
|
52
|
-
'
|
|
53
|
-
'
|
|
54
|
-
'
|
|
55
|
-
'n', '.', 'p', 'r', 'o', 't', 'o', '\032', '
|
|
56
|
-
'o', 'y', '/', 'c', 'o', 'n', 'f', 'i', 'g', '/', '
|
|
57
|
-
'
|
|
58
|
-
'
|
|
59
|
-
'
|
|
60
|
-
'
|
|
61
|
-
'
|
|
62
|
-
'n', 'e', 'r', '
|
|
63
|
-
'
|
|
64
|
-
'
|
|
65
|
-
'
|
|
66
|
-
'
|
|
67
|
-
'
|
|
68
|
-
'
|
|
69
|
-
'
|
|
70
|
-
'
|
|
71
|
-
'
|
|
72
|
-
'
|
|
73
|
-
'
|
|
74
|
-
'
|
|
75
|
-
'
|
|
76
|
-
'
|
|
77
|
-
'
|
|
78
|
-
'
|
|
79
|
-
'
|
|
80
|
-
'
|
|
81
|
-
'
|
|
82
|
-
'
|
|
83
|
-
'
|
|
84
|
-
'
|
|
85
|
-
'
|
|
86
|
-
't', 'a', 't', 'i', 'o', 'n', 's', '/', 's', 'e', 'c', 'u',
|
|
87
|
-
'r', 'i', 't', 'y', '.', 'p', 'r', 'o', 't', 'o', '\032', '\035',
|
|
49
|
+
'(', 'e', 'n', 'v', 'o', 'y', '/', 'c', 'o', 'n', 'f', 'i',
|
|
50
|
+
'g', '/', 'c', 'o', 'r', 'e', '/', 'v', '3', '/', 'c', 'o',
|
|
51
|
+
'n', 'f', 'i', 'g', '_', 's', 'o', 'u', 'r', 'c', 'e', '.',
|
|
52
|
+
'p', 'r', 'o', 't', 'o', '\032', '$', 'e', 'n', 'v', 'o', 'y',
|
|
53
|
+
'/', 'c', 'o', 'n', 'f', 'i', 'g', '/', 'c', 'o', 'r', 'e',
|
|
54
|
+
'/', 'v', '3', '/', 'e', 'x', 't', 'e', 'n', 's', 'i', 'o',
|
|
55
|
+
'n', '.', 'p', 'r', 'o', 't', 'o', '\032', '(', 'e', 'n', 'v',
|
|
56
|
+
'o', 'y', '/', 'c', 'o', 'n', 'f', 'i', 'g', '/', 'c', 'o',
|
|
57
|
+
'r', 'e', '/', 'v', '3', '/', 's', 'o', 'c', 'k', 'e', 't',
|
|
58
|
+
'_', 'o', 'p', 't', 'i', 'o', 'n', '.', 'p', 'r', 'o', 't',
|
|
59
|
+
'o', '\032', '+', 'e', 'n', 'v', 'o', 'y', '/', 'c', 'o', 'n',
|
|
60
|
+
'f', 'i', 'g', '/', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r',
|
|
61
|
+
'/', 'v', '3', '/', 'a', 'p', 'i', '_', 'l', 'i', 's', 't',
|
|
62
|
+
'e', 'n', 'e', 'r', '.', 'p', 'r', 'o', 't', 'o', '\032', '2',
|
|
63
|
+
'e', 'n', 'v', 'o', 'y', '/', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
64
|
+
'/', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '/', 'v', '3',
|
|
65
|
+
'/', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '_', 'c', 'o',
|
|
66
|
+
'm', 'p', 'o', 'n', 'e', 'n', 't', 's', '.', 'p', 'r', 'o',
|
|
67
|
+
't', 'o', '\032', '2', 'e', 'n', 'v', 'o', 'y', '/', 'c', 'o',
|
|
68
|
+
'n', 'f', 'i', 'g', '/', 'l', 'i', 's', 't', 'e', 'n', 'e',
|
|
69
|
+
'r', '/', 'v', '3', '/', 'u', 'd', 'p', '_', 'l', 'i', 's',
|
|
70
|
+
't', 'e', 'n', 'e', 'r', '_', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
71
|
+
'.', 'p', 'r', 'o', 't', 'o', '\032', '\036', 'g', 'o', 'o', 'g',
|
|
72
|
+
'l', 'e', '/', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '/',
|
|
73
|
+
'd', 'u', 'r', 'a', 't', 'i', 'o', 'n', '.', 'p', 'r', 'o',
|
|
74
|
+
't', 'o', '\032', '\036', 'g', 'o', 'o', 'g', 'l', 'e', '/', 'p',
|
|
75
|
+
'r', 'o', 't', 'o', 'b', 'u', 'f', '/', 'w', 'r', 'a', 'p',
|
|
76
|
+
'p', 'e', 'r', 's', '.', 'p', 'r', 'o', 't', 'o', '\032', '\"',
|
|
77
|
+
'x', 'd', 's', '/', 'c', 'o', 'r', 'e', '/', 'v', '3', '/',
|
|
78
|
+
'c', 'o', 'l', 'l', 'e', 'c', 't', 'i', 'o', 'n', '_', 'e',
|
|
79
|
+
'n', 't', 'r', 'y', '.', 'p', 'r', 'o', 't', 'o', '\032', '!',
|
|
80
|
+
'x', 'd', 's', '/', 't', 'y', 'p', 'e', '/', 'm', 'a', 't',
|
|
81
|
+
'c', 'h', 'e', 'r', '/', 'v', '3', '/', 'm', 'a', 't', 'c',
|
|
82
|
+
'h', 'e', 'r', '.', 'p', 'r', 'o', 't', 'o', '\032', '#', 'e',
|
|
83
|
+
'n', 'v', 'o', 'y', '/', 'a', 'n', 'n', 'o', 't', 'a', 't',
|
|
84
|
+
'i', 'o', 'n', 's', '/', 'd', 'e', 'p', 'r', 'e', 'c', 'a',
|
|
85
|
+
't', 'i', 'o', 'n', '.', 'p', 'r', 'o', 't', 'o', '\032', '\037',
|
|
88
86
|
'u', 'd', 'p', 'a', '/', 'a', 'n', 'n', 'o', 't', 'a', 't',
|
|
89
|
-
'i', 'o', 'n', 's', '/', 's', '
|
|
90
|
-
'p', 'r', 'o', 't', 'o', '\032', '
|
|
91
|
-
'a', 'n', 'n', 'o', 't', 'a', 't', 'i', 'o', 'n',
|
|
92
|
-
'
|
|
93
|
-
'
|
|
94
|
-
'
|
|
95
|
-
'
|
|
96
|
-
'
|
|
97
|
-
'
|
|
98
|
-
'
|
|
99
|
-
'
|
|
100
|
-
'
|
|
101
|
-
'
|
|
102
|
-
'
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
'
|
|
106
|
-
'
|
|
107
|
-
'
|
|
108
|
-
'
|
|
109
|
-
'
|
|
110
|
-
'
|
|
111
|
-
'
|
|
112
|
-
'\
|
|
113
|
-
'
|
|
114
|
-
'
|
|
115
|
-
'
|
|
116
|
-
'
|
|
117
|
-
'
|
|
118
|
-
'
|
|
119
|
-
'
|
|
120
|
-
'
|
|
121
|
-
'
|
|
122
|
-
'
|
|
123
|
-
'
|
|
124
|
-
'
|
|
125
|
-
'
|
|
87
|
+
'i', 'o', 'n', 's', '/', 's', 'e', 'c', 'u', 'r', 'i', 't',
|
|
88
|
+
'y', '.', 'p', 'r', 'o', 't', 'o', '\032', '\035', 'u', 'd', 'p',
|
|
89
|
+
'a', '/', 'a', 'n', 'n', 'o', 't', 'a', 't', 'i', 'o', 'n',
|
|
90
|
+
's', '/', 's', 't', 'a', 't', 'u', 's', '.', 'p', 'r', 'o',
|
|
91
|
+
't', 'o', '\032', '!', 'u', 'd', 'p', 'a', '/', 'a', 'n', 'n',
|
|
92
|
+
'o', 't', 'a', 't', 'i', 'o', 'n', 's', '/', 'v', 'e', 'r',
|
|
93
|
+
's', 'i', 'o', 'n', 'i', 'n', 'g', '.', 'p', 'r', 'o', 't',
|
|
94
|
+
'o', '\032', '\027', 'v', 'a', 'l', 'i', 'd', 'a', 't', 'e', '/',
|
|
95
|
+
'v', 'a', 'l', 'i', 'd', 'a', 't', 'e', '.', 'p', 'r', 'o',
|
|
96
|
+
't', 'o', '\"', '\240', '\001', '\n', '\021', 'A', 'd', 'd', 'i', 't',
|
|
97
|
+
'i', 'o', 'n', 'a', 'l', 'A', 'd', 'd', 'r', 'e', 's', 's',
|
|
98
|
+
'\022', '7', '\n', '\007', 'a', 'd', 'd', 'r', 'e', 's', 's', '\030',
|
|
99
|
+
'\001', ' ', '\001', '(', '\013', '2', '\035', '.', 'e', 'n', 'v', 'o',
|
|
100
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r',
|
|
101
|
+
'e', '.', 'v', '3', '.', 'A', 'd', 'd', 'r', 'e', 's', 's',
|
|
102
|
+
'R', '\007', 'a', 'd', 'd', 'r', 'e', 's', 's', '\022', 'R', '\n',
|
|
103
|
+
'\016', 's', 'o', 'c', 'k', 'e', 't', '_', 'o', 'p', 't', 'i',
|
|
104
|
+
'o', 'n', 's', '\030', '\002', ' ', '\001', '(', '\013', '2', '+', '.',
|
|
105
|
+
'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
106
|
+
'.', 'c', 'o', 'r', 'e', '.', 'v', '3', '.', 'S', 'o', 'c',
|
|
107
|
+
'k', 'e', 't', 'O', 'p', 't', 'i', 'o', 'n', 's', 'O', 'v',
|
|
108
|
+
'e', 'r', 'r', 'i', 'd', 'e', 'R', '\r', 's', 'o', 'c', 'k',
|
|
109
|
+
'e', 't', 'O', 'p', 't', 'i', 'o', 'n', 's', '\"', 'L', '\n',
|
|
110
|
+
'\022', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'C', 'o', 'l',
|
|
111
|
+
'l', 'e', 'c', 't', 'i', 'o', 'n', '\022', '6', '\n', '\007', 'e',
|
|
112
|
+
'n', 't', 'r', 'i', 'e', 's', '\030', '\001', ' ', '\003', '(', '\013',
|
|
113
|
+
'2', '\034', '.', 'x', 'd', 's', '.', 'c', 'o', 'r', 'e', '.',
|
|
114
|
+
'v', '3', '.', 'C', 'o', 'l', 'l', 'e', 'c', 't', 'i', 'o',
|
|
115
|
+
'n', 'E', 'n', 't', 'r', 'y', 'R', '\007', 'e', 'n', 't', 'r',
|
|
116
|
+
'i', 'e', 's', '\"', '\357', '\031', '\n', '\010', 'L', 'i', 's', 't',
|
|
117
|
+
'e', 'n', 'e', 'r', '\022', '\022', '\n', '\004', 'n', 'a', 'm', 'e',
|
|
118
|
+
'\030', '\001', ' ', '\001', '(', '\t', 'R', '\004', 'n', 'a', 'm', 'e',
|
|
119
|
+
'\022', '7', '\n', '\007', 'a', 'd', 'd', 'r', 'e', 's', 's', '\030',
|
|
120
|
+
'\002', ' ', '\001', '(', '\013', '2', '\035', '.', 'e', 'n', 'v', 'o',
|
|
121
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r',
|
|
122
|
+
'e', '.', 'v', '3', '.', 'A', 'd', 'd', 'r', 'e', 's', 's',
|
|
123
|
+
'R', '\007', 'a', 'd', 'd', 'r', 'e', 's', 's', '\022', '^', '\n',
|
|
124
|
+
'\024', 'a', 'd', 'd', 'i', 't', 'i', 'o', 'n', 'a', 'l', '_',
|
|
125
|
+
'a', 'd', 'd', 'r', 'e', 's', 's', 'e', 's', '\030', '!', ' ',
|
|
126
|
+
'\003', '(', '\013', '2', '+', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
127
|
+
'c', 'o', 'n', 'f', 'i', 'g', '.', 'l', 'i', 's', 't', 'e',
|
|
128
|
+
'n', 'e', 'r', '.', 'v', '3', '.', 'A', 'd', 'd', 'i', 't',
|
|
129
|
+
'i', 'o', 'n', 'a', 'l', 'A', 'd', 'd', 'r', 'e', 's', 's',
|
|
130
|
+
'R', '\023', 'a', 'd', 'd', 'i', 't', 'i', 'o', 'n', 'a', 'l',
|
|
131
|
+
'A', 'd', 'd', 'r', 'e', 's', 's', 'e', 's', '\022', '\037', '\n',
|
|
132
|
+
'\013', 's', 't', 'a', 't', '_', 'p', 'r', 'e', 'f', 'i', 'x',
|
|
133
|
+
'\030', '\034', ' ', '\001', '(', '\t', 'R', '\n', 's', 't', 'a', 't',
|
|
134
|
+
'P', 'r', 'e', 'f', 'i', 'x', '\022', 'J', '\n', '\r', 'f', 'i',
|
|
135
|
+
'l', 't', 'e', 'r', '_', 'c', 'h', 'a', 'i', 'n', 's', '\030',
|
|
136
|
+
'\003', ' ', '\003', '(', '\013', '2', '%', '.', 'e', 'n', 'v', 'o',
|
|
137
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'l', 'i', 's',
|
|
138
|
+
't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.', 'F', 'i', 'l',
|
|
139
|
+
't', 'e', 'r', 'C', 'h', 'a', 'i', 'n', 'R', '\014', 'f', 'i',
|
|
140
|
+
'l', 't', 'e', 'r', 'C', 'h', 'a', 'i', 'n', 's', '\022', 'N',
|
|
141
|
+
'\n', '\013', 'f', 'c', 'd', 's', '_', 'c', 'o', 'n', 'f', 'i',
|
|
142
|
+
'g', '\030', '$', ' ', '\001', '(', '\013', '2', '-', '.', 'e', 'n',
|
|
143
|
+
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'l',
|
|
144
|
+
'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.', 'L',
|
|
145
|
+
'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'F', 'c', 'd', 's',
|
|
146
|
+
'C', 'o', 'n', 'f', 'i', 'g', 'R', '\n', 'f', 'c', 'd', 's',
|
|
147
|
+
'C', 'o', 'n', 'f', 'i', 'g', '\022', 'N', '\n', '\024', 'f', 'i',
|
|
148
|
+
'l', 't', 'e', 'r', '_', 'c', 'h', 'a', 'i', 'n', '_', 'm',
|
|
149
|
+
'a', 't', 'c', 'h', 'e', 'r', '\030', ' ', ' ', '\001', '(', '\013',
|
|
150
|
+
'2', '\034', '.', 'x', 'd', 's', '.', 't', 'y', 'p', 'e', '.',
|
|
151
|
+
'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M',
|
|
152
|
+
'a', 't', 'c', 'h', 'e', 'r', 'R', '\022', 'f', 'i', 'l', 't',
|
|
153
|
+
'e', 'r', 'C', 'h', 'a', 'i', 'n', 'M', 'a', 't', 'c', 'h',
|
|
154
|
+
'e', 'r', '\022', 'D', '\n', '\020', 'u', 's', 'e', '_', 'o', 'r',
|
|
155
|
+
'i', 'g', 'i', 'n', 'a', 'l', '_', 'd', 's', 't', '\030', '\004',
|
|
156
|
+
' ', '\001', '(', '\013', '2', '\032', '.', 'g', 'o', 'o', 'g', 'l',
|
|
157
|
+
'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '.', 'B',
|
|
158
|
+
'o', 'o', 'l', 'V', 'a', 'l', 'u', 'e', 'R', '\016', 'u', 's',
|
|
159
|
+
'e', 'O', 'r', 'i', 'g', 'i', 'n', 'a', 'l', 'D', 's', 't',
|
|
160
|
+
'\022', 'W', '\n', '\024', 'd', 'e', 'f', 'a', 'u', 'l', 't', '_',
|
|
161
|
+
'f', 'i', 'l', 't', 'e', 'r', '_', 'c', 'h', 'a', 'i', 'n',
|
|
162
|
+
'\030', '\031', ' ', '\001', '(', '\013', '2', '%', '.', 'e', 'n', 'v',
|
|
126
163
|
'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'l', 'i',
|
|
127
|
-
's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.', '
|
|
128
|
-
'
|
|
129
|
-
'e', '
|
|
130
|
-
'
|
|
131
|
-
'
|
|
132
|
-
'
|
|
133
|
-
'
|
|
134
|
-
'
|
|
135
|
-
'
|
|
164
|
+
's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.', 'F', 'i',
|
|
165
|
+
'l', 't', 'e', 'r', 'C', 'h', 'a', 'i', 'n', 'R', '\022', 'd',
|
|
166
|
+
'e', 'f', 'a', 'u', 'l', 't', 'F', 'i', 'l', 't', 'e', 'r',
|
|
167
|
+
'C', 'h', 'a', 'i', 'n', '\022', 'o', '\n', '!', 'p', 'e', 'r',
|
|
168
|
+
'_', 'c', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', '_',
|
|
169
|
+
'b', 'u', 'f', 'f', 'e', 'r', '_', 'l', 'i', 'm', 'i', 't',
|
|
170
|
+
'_', 'b', 'y', 't', 'e', 's', '\030', '\005', ' ', '\001', '(', '\013',
|
|
171
|
+
'2', '\034', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'p', 'r',
|
|
172
|
+
'o', 't', 'o', 'b', 'u', 'f', '.', 'U', 'I', 'n', 't', '3',
|
|
173
|
+
'2', 'V', 'a', 'l', 'u', 'e', 'B', '\007', '\212', '\223', '\267', '*',
|
|
174
|
+
'\002', '\010', '\001', 'R', '\035', 'p', 'e', 'r', 'C', 'o', 'n', 'n',
|
|
175
|
+
'e', 'c', 't', 'i', 'o', 'n', 'B', 'u', 'f', 'f', 'e', 'r',
|
|
176
|
+
'L', 'i', 'm', 'i', 't', 'B', 'y', 't', 'e', 's', '\022', ':',
|
|
177
|
+
'\n', '\010', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a', '\030', '\006',
|
|
178
|
+
' ', '\001', '(', '\013', '2', '\036', '.', 'e', 'n', 'v', 'o', 'y',
|
|
179
|
+
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e',
|
|
180
|
+
'.', 'v', '3', '.', 'M', 'e', 't', 'a', 'd', 'a', 't', 'a',
|
|
181
|
+
'R', '\010', 'm', 'e', 't', 'a', 'd', 'a', 't', 'a', '\022', 'a',
|
|
182
|
+
'\n', '\r', 'd', 'e', 'p', 'r', 'e', 'c', 'a', 't', 'e', 'd',
|
|
183
|
+
'_', 'v', '1', '\030', '\007', ' ', '\001', '(', '\013', '2', '/', '.',
|
|
184
|
+
'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
185
|
+
'.', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3',
|
|
186
|
+
'.', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'D', 'e',
|
|
187
|
+
'p', 'r', 'e', 'c', 'a', 't', 'e', 'd', 'V', '1', 'B', '\013',
|
|
188
|
+
'\030', '\001', '\222', '\307', '\206', '\330', '\004', '\003', '3', '.', '0', 'R',
|
|
189
|
+
'\014', 'd', 'e', 'p', 'r', 'e', 'c', 'a', 't', 'e', 'd', 'V',
|
|
190
|
+
'1', '\022', 'K', '\n', '\n', 'd', 'r', 'a', 'i', 'n', '_', 't',
|
|
191
|
+
'y', 'p', 'e', '\030', '\010', ' ', '\001', '(', '\016', '2', ',', '.',
|
|
192
|
+
'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
193
|
+
'.', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3',
|
|
194
|
+
'.', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'D', 'r',
|
|
195
|
+
'a', 'i', 'n', 'T', 'y', 'p', 'e', 'R', '\t', 'd', 'r', 'a',
|
|
196
|
+
'i', 'n', 'T', 'y', 'p', 'e', '\022', 'S', '\n', '\020', 'l', 'i',
|
|
197
|
+
's', 't', 'e', 'n', 'e', 'r', '_', 'f', 'i', 'l', 't', 'e',
|
|
198
|
+
'r', 's', '\030', '\t', ' ', '\003', '(', '\013', '2', '(', '.', 'e',
|
|
136
199
|
'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.',
|
|
137
200
|
'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.',
|
|
138
|
-
'
|
|
139
|
-
'
|
|
140
|
-
'
|
|
141
|
-
'
|
|
142
|
-
'
|
|
143
|
-
'
|
|
144
|
-
'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't', 'c', 'h', 'e',
|
|
145
|
-
'r', 'B', '\010', '\322', '\306', '\244', '\341', '\006', '\002', '\010', '\001', 'R',
|
|
146
|
-
'\022', 'f', 'i', 'l', 't', 'e', 'r', 'C', 'h', 'a', 'i', 'n',
|
|
147
|
-
'M', 'a', 't', 'c', 'h', 'e', 'r', '\022', 'D', '\n', '\020', 'u',
|
|
148
|
-
's', 'e', '_', 'o', 'r', 'i', 'g', 'i', 'n', 'a', 'l', '_',
|
|
149
|
-
'd', 's', 't', '\030', '\004', ' ', '\001', '(', '\013', '2', '\032', '.',
|
|
150
|
-
'g', 'o', 'o', 'g', 'l', 'e', '.', 'p', 'r', 'o', 't', 'o',
|
|
151
|
-
'b', 'u', 'f', '.', 'B', 'o', 'o', 'l', 'V', 'a', 'l', 'u',
|
|
152
|
-
'e', 'R', '\016', 'u', 's', 'e', 'O', 'r', 'i', 'g', 'i', 'n',
|
|
153
|
-
'a', 'l', 'D', 's', 't', '\022', 'W', '\n', '\024', 'd', 'e', 'f',
|
|
154
|
-
'a', 'u', 'l', 't', '_', 'f', 'i', 'l', 't', 'e', 'r', '_',
|
|
155
|
-
'c', 'h', 'a', 'i', 'n', '\030', '\031', ' ', '\001', '(', '\013', '2',
|
|
156
|
-
'%', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f',
|
|
157
|
-
'i', 'g', '.', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '.',
|
|
158
|
-
'v', '3', '.', 'F', 'i', 'l', 't', 'e', 'r', 'C', 'h', 'a',
|
|
159
|
-
'i', 'n', 'R', '\022', 'd', 'e', 'f', 'a', 'u', 'l', 't', 'F',
|
|
160
|
-
'i', 'l', 't', 'e', 'r', 'C', 'h', 'a', 'i', 'n', '\022', 'o',
|
|
161
|
-
'\n', '!', 'p', 'e', 'r', '_', 'c', 'o', 'n', 'n', 'e', 'c',
|
|
162
|
-
't', 'i', 'o', 'n', '_', 'b', 'u', 'f', 'f', 'e', 'r', '_',
|
|
163
|
-
'l', 'i', 'm', 'i', 't', '_', 'b', 'y', 't', 'e', 's', '\030',
|
|
164
|
-
'\005', ' ', '\001', '(', '\013', '2', '\034', '.', 'g', 'o', 'o', 'g',
|
|
201
|
+
'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'F', 'i', 'l', 't',
|
|
202
|
+
'e', 'r', 'R', '\017', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r',
|
|
203
|
+
'F', 'i', 'l', 't', 'e', 'r', 's', '\022', 'S', '\n', '\030', 'l',
|
|
204
|
+
'i', 's', 't', 'e', 'n', 'e', 'r', '_', 'f', 'i', 'l', 't',
|
|
205
|
+
'e', 'r', 's', '_', 't', 'i', 'm', 'e', 'o', 'u', 't', '\030',
|
|
206
|
+
'\017', ' ', '\001', '(', '\013', '2', '\031', '.', 'g', 'o', 'o', 'g',
|
|
165
207
|
'l', 'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '.',
|
|
166
|
-
'
|
|
167
|
-
'
|
|
168
|
-
'
|
|
169
|
-
'
|
|
170
|
-
'
|
|
171
|
-
'
|
|
172
|
-
'
|
|
173
|
-
'
|
|
174
|
-
'
|
|
175
|
-
'
|
|
176
|
-
'
|
|
177
|
-
'
|
|
178
|
-
'
|
|
179
|
-
'
|
|
180
|
-
'
|
|
181
|
-
'
|
|
182
|
-
'
|
|
183
|
-
'
|
|
184
|
-
'a', '
|
|
185
|
-
'
|
|
186
|
-
'
|
|
187
|
-
'
|
|
188
|
-
'
|
|
189
|
-
'
|
|
190
|
-
'
|
|
191
|
-
'
|
|
192
|
-
'
|
|
193
|
-
'
|
|
194
|
-
'
|
|
195
|
-
'r', 'F', 'i', 'l', 't', 'e', 'r', 'R', '\017', 'l', 'i', 's',
|
|
196
|
-
't', 'e', 'n', 'e', 'r', 'F', 'i', 'l', 't', 'e', 'r', 's',
|
|
197
|
-
'\022', 'S', '\n', '\030', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r',
|
|
198
|
-
'_', 'f', 'i', 'l', 't', 'e', 'r', 's', '_', 't', 'i', 'm',
|
|
199
|
-
'e', 'o', 'u', 't', '\030', '\017', ' ', '\001', '(', '\013', '2', '\031',
|
|
200
|
-
'.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'p', 'r', 'o', 't',
|
|
201
|
-
'o', 'b', 'u', 'f', '.', 'D', 'u', 'r', 'a', 't', 'i', 'o',
|
|
202
|
-
'n', 'R', '\026', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', 'F',
|
|
203
|
-
'i', 'l', 't', 'e', 'r', 's', 'T', 'i', 'm', 'e', 'o', 'u',
|
|
204
|
-
't', '\022', 'N', '\n', '$', 'c', 'o', 'n', 't', 'i', 'n', 'u',
|
|
205
|
-
'e', '_', 'o', 'n', '_', 'l', 'i', 's', 't', 'e', 'n', 'e',
|
|
206
|
-
'r', '_', 'f', 'i', 'l', 't', 'e', 'r', 's', '_', 't', 'i',
|
|
207
|
-
'm', 'e', 'o', 'u', 't', '\030', '\021', ' ', '\001', '(', '\010', 'R',
|
|
208
|
-
' ', 'c', 'o', 'n', 't', 'i', 'n', 'u', 'e', 'O', 'n', 'L',
|
|
209
|
-
'i', 's', 't', 'e', 'n', 'e', 'r', 'F', 'i', 'l', 't', 'e',
|
|
210
|
-
'r', 's', 'T', 'i', 'm', 'e', 'o', 'u', 't', '\022', '<', '\n',
|
|
211
|
-
'\013', 't', 'r', 'a', 'n', 's', 'p', 'a', 'r', 'e', 'n', 't',
|
|
212
|
-
'\030', '\n', ' ', '\001', '(', '\013', '2', '\032', '.', 'g', 'o', 'o',
|
|
213
|
-
'g', 'l', 'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f',
|
|
214
|
-
'.', 'B', 'o', 'o', 'l', 'V', 'a', 'l', 'u', 'e', 'R', '\013',
|
|
215
|
-
't', 'r', 'a', 'n', 's', 'p', 'a', 'r', 'e', 'n', 't', '\022',
|
|
216
|
-
'6', '\n', '\010', 'f', 'r', 'e', 'e', 'b', 'i', 'n', 'd', '\030',
|
|
217
|
-
'\013', ' ', '\001', '(', '\013', '2', '\032', '.', 'g', 'o', 'o', 'g',
|
|
208
|
+
'D', 'u', 'r', 'a', 't', 'i', 'o', 'n', 'R', '\026', 'l', 'i',
|
|
209
|
+
's', 't', 'e', 'n', 'e', 'r', 'F', 'i', 'l', 't', 'e', 'r',
|
|
210
|
+
's', 'T', 'i', 'm', 'e', 'o', 'u', 't', '\022', 'N', '\n', '$',
|
|
211
|
+
'c', 'o', 'n', 't', 'i', 'n', 'u', 'e', '_', 'o', 'n', '_',
|
|
212
|
+
'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '_', 'f', 'i', 'l',
|
|
213
|
+
't', 'e', 'r', 's', '_', 't', 'i', 'm', 'e', 'o', 'u', 't',
|
|
214
|
+
'\030', '\021', ' ', '\001', '(', '\010', 'R', ' ', 'c', 'o', 'n', 't',
|
|
215
|
+
'i', 'n', 'u', 'e', 'O', 'n', 'L', 'i', 's', 't', 'e', 'n',
|
|
216
|
+
'e', 'r', 'F', 'i', 'l', 't', 'e', 'r', 's', 'T', 'i', 'm',
|
|
217
|
+
'e', 'o', 'u', 't', '\022', '<', '\n', '\013', 't', 'r', 'a', 'n',
|
|
218
|
+
's', 'p', 'a', 'r', 'e', 'n', 't', '\030', '\n', ' ', '\001', '(',
|
|
219
|
+
'\013', '2', '\032', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'p',
|
|
220
|
+
'r', 'o', 't', 'o', 'b', 'u', 'f', '.', 'B', 'o', 'o', 'l',
|
|
221
|
+
'V', 'a', 'l', 'u', 'e', 'R', '\013', 't', 'r', 'a', 'n', 's',
|
|
222
|
+
'p', 'a', 'r', 'e', 'n', 't', '\022', '6', '\n', '\010', 'f', 'r',
|
|
223
|
+
'e', 'e', 'b', 'i', 'n', 'd', '\030', '\013', ' ', '\001', '(', '\013',
|
|
224
|
+
'2', '\032', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'p', 'r',
|
|
225
|
+
'o', 't', 'o', 'b', 'u', 'f', '.', 'B', 'o', 'o', 'l', 'V',
|
|
226
|
+
'a', 'l', 'u', 'e', 'R', '\010', 'f', 'r', 'e', 'e', 'b', 'i',
|
|
227
|
+
'n', 'd', '\022', 'I', '\n', '\016', 's', 'o', 'c', 'k', 'e', 't',
|
|
228
|
+
'_', 'o', 'p', 't', 'i', 'o', 'n', 's', '\030', '\r', ' ', '\003',
|
|
229
|
+
'(', '\013', '2', '\"', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c',
|
|
230
|
+
'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v',
|
|
231
|
+
'3', '.', 'S', 'o', 'c', 'k', 'e', 't', 'O', 'p', 't', 'i',
|
|
232
|
+
'o', 'n', 'R', '\r', 's', 'o', 'c', 'k', 'e', 't', 'O', 'p',
|
|
233
|
+
't', 'i', 'o', 'n', 's', '\022', 'X', '\n', '\032', 't', 'c', 'p',
|
|
234
|
+
'_', 'f', 'a', 's', 't', '_', 'o', 'p', 'e', 'n', '_', 'q',
|
|
235
|
+
'u', 'e', 'u', 'e', '_', 'l', 'e', 'n', 'g', 't', 'h', '\030',
|
|
236
|
+
'\014', ' ', '\001', '(', '\013', '2', '\034', '.', 'g', 'o', 'o', 'g',
|
|
218
237
|
'l', 'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f', '.',
|
|
219
|
-
'
|
|
220
|
-
'
|
|
221
|
-
'
|
|
222
|
-
'
|
|
223
|
-
'
|
|
224
|
-
'
|
|
225
|
-
'
|
|
226
|
-
'
|
|
227
|
-
'
|
|
228
|
-
'
|
|
229
|
-
'
|
|
230
|
-
'
|
|
231
|
-
'
|
|
232
|
-
'
|
|
233
|
-
't', '
|
|
234
|
-
'
|
|
235
|
-
'
|
|
236
|
-
'n', '
|
|
237
|
-
'
|
|
238
|
-
'
|
|
239
|
-
'
|
|
240
|
-
'
|
|
241
|
-
'
|
|
242
|
-
'
|
|
243
|
-
'
|
|
238
|
+
'U', 'I', 'n', 't', '3', '2', 'V', 'a', 'l', 'u', 'e', 'R',
|
|
239
|
+
'\026', 't', 'c', 'p', 'F', 'a', 's', 't', 'O', 'p', 'e', 'n',
|
|
240
|
+
'Q', 'u', 'e', 'u', 'e', 'L', 'e', 'n', 'g', 't', 'h', '\022',
|
|
241
|
+
'S', '\n', '\021', 't', 'r', 'a', 'f', 'f', 'i', 'c', '_', 'd',
|
|
242
|
+
'i', 'r', 'e', 'c', 't', 'i', 'o', 'n', '\030', '\020', ' ', '\001',
|
|
243
|
+
'(', '\016', '2', '&', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c',
|
|
244
|
+
'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v',
|
|
245
|
+
'3', '.', 'T', 'r', 'a', 'f', 'f', 'i', 'c', 'D', 'i', 'r',
|
|
246
|
+
'e', 'c', 't', 'i', 'o', 'n', 'R', '\020', 't', 'r', 'a', 'f',
|
|
247
|
+
'f', 'i', 'c', 'D', 'i', 'r', 'e', 'c', 't', 'i', 'o', 'n',
|
|
248
|
+
'\022', '[', '\n', '\023', 'u', 'd', 'p', '_', 'l', 'i', 's', 't',
|
|
249
|
+
'e', 'n', 'e', 'r', '_', 'c', 'o', 'n', 'f', 'i', 'g', '\030',
|
|
250
|
+
'\022', ' ', '\001', '(', '\013', '2', '+', '.', 'e', 'n', 'v', 'o',
|
|
251
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'l', 'i', 's',
|
|
252
|
+
't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.', 'U', 'd', 'p',
|
|
253
|
+
'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'C', 'o', 'n', 'f',
|
|
254
|
+
'i', 'g', 'R', '\021', 'u', 'd', 'p', 'L', 'i', 's', 't', 'e',
|
|
255
|
+
'n', 'e', 'r', 'C', 'o', 'n', 'f', 'i', 'g', '\022', 'H', '\n',
|
|
256
|
+
'\014', 'a', 'p', 'i', '_', 'l', 'i', 's', 't', 'e', 'n', 'e',
|
|
257
|
+
'r', '\030', '\023', ' ', '\001', '(', '\013', '2', '%', '.', 'e', 'n',
|
|
258
|
+
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'l',
|
|
259
|
+
'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.', 'A',
|
|
260
|
+
'p', 'i', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'R', '\013',
|
|
261
|
+
'a', 'p', 'i', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', '\022',
|
|
262
|
+
'v', '\n', '\031', 'c', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o',
|
|
263
|
+
'n', '_', 'b', 'a', 'l', 'a', 'n', 'c', 'e', '_', 'c', 'o',
|
|
264
|
+
'n', 'f', 'i', 'g', '\030', '\024', ' ', '\001', '(', '\013', '2', ':',
|
|
244
265
|
'.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i',
|
|
245
266
|
'g', '.', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v',
|
|
246
|
-
'3', '.', '
|
|
247
|
-
'
|
|
248
|
-
'
|
|
249
|
-
'
|
|
250
|
-
'
|
|
251
|
-
'
|
|
252
|
-
'
|
|
253
|
-
'
|
|
254
|
-
'
|
|
255
|
-
'
|
|
256
|
-
'
|
|
257
|
-
'
|
|
258
|
-
'
|
|
259
|
-
'
|
|
260
|
-
'
|
|
261
|
-
'
|
|
262
|
-
'
|
|
263
|
-
'
|
|
264
|
-
'
|
|
265
|
-
'
|
|
266
|
-
'
|
|
267
|
-
'
|
|
268
|
-
'
|
|
269
|
-
'
|
|
270
|
-
'
|
|
271
|
-
'
|
|
272
|
-
'
|
|
273
|
-
'
|
|
274
|
-
'
|
|
275
|
-
'
|
|
276
|
-
'
|
|
277
|
-
'
|
|
278
|
-
'
|
|
279
|
-
'
|
|
280
|
-
'
|
|
281
|
-
'
|
|
282
|
-
'
|
|
283
|
-
'
|
|
284
|
-
'
|
|
285
|
-
'
|
|
286
|
-
'
|
|
287
|
-
'
|
|
288
|
-
'
|
|
289
|
-
'
|
|
290
|
-
'
|
|
291
|
-
'
|
|
292
|
-
'
|
|
293
|
-
'
|
|
294
|
-
'
|
|
295
|
-
'
|
|
296
|
-
'
|
|
297
|
-
'
|
|
298
|
-
'
|
|
299
|
-
'
|
|
300
|
-
'
|
|
301
|
-
'
|
|
302
|
-
'
|
|
303
|
-
'i', '
|
|
304
|
-
'
|
|
305
|
-
'
|
|
306
|
-
'
|
|
307
|
-
'
|
|
308
|
-
'
|
|
309
|
-
'
|
|
310
|
-
'
|
|
311
|
-
'
|
|
312
|
-
'
|
|
313
|
-
'
|
|
314
|
-
'
|
|
315
|
-
'
|
|
316
|
-
'
|
|
317
|
-
'
|
|
318
|
-
'
|
|
319
|
-
'
|
|
320
|
-
'
|
|
321
|
-
'
|
|
322
|
-
'\
|
|
323
|
-
'
|
|
324
|
-
'
|
|
325
|
-
'
|
|
326
|
-
'
|
|
327
|
-
'
|
|
328
|
-
'
|
|
329
|
-
'a', '
|
|
330
|
-
'
|
|
331
|
-
'
|
|
332
|
-
'
|
|
333
|
-
'
|
|
334
|
-
'
|
|
335
|
-
'
|
|
336
|
-
'
|
|
337
|
-
'
|
|
338
|
-
'
|
|
339
|
-
'
|
|
340
|
-
'
|
|
341
|
-
'e', 'r', '.', 'C', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o',
|
|
342
|
-
'n', 'B', 'a', 'l', 'a', 'n', 'c', 'e', 'C', 'o', 'n', 'f',
|
|
343
|
-
'i', 'g', '.', 'E', 'x', 'a', 'c', 't', 'B', 'a', 'l', 'a',
|
|
344
|
-
'n', 'c', 'e', 'H', '\000', 'R', '\014', 'e', 'x', 'a', 'c', 't',
|
|
345
|
-
'B', 'a', 'l', 'a', 'n', 'c', 'e', '\022', 'S', '\n', '\016', 'e',
|
|
346
|
-
'x', 't', 'e', 'n', 'd', '_', 'b', 'a', 'l', 'a', 'n', 'c',
|
|
347
|
-
'e', '\030', '\002', ' ', '\001', '(', '\013', '2', '*', '.', 'e', 'n',
|
|
348
|
-
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c',
|
|
349
|
-
'o', 'r', 'e', '.', 'v', '3', '.', 'T', 'y', 'p', 'e', 'd',
|
|
350
|
-
'E', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 'C', 'o', 'n',
|
|
351
|
-
'f', 'i', 'g', 'H', '\000', 'R', '\r', 'e', 'x', 't', 'e', 'n',
|
|
352
|
-
'd', 'B', 'a', 'l', 'a', 'n', 'c', 'e', '\032', 'Q', '\n', '\014',
|
|
353
|
-
'E', 'x', 'a', 'c', 't', 'B', 'a', 'l', 'a', 'n', 'c', 'e',
|
|
354
|
-
':', 'A', '\232', '\305', '\210', '\036', '<', '\n', ':', 'e', 'n', 'v',
|
|
355
|
-
'o', 'y', '.', 'a', 'p', 'i', '.', 'v', '2', '.', 'L', 'i',
|
|
356
|
-
's', 't', 'e', 'n', 'e', 'r', '.', 'C', 'o', 'n', 'n', 'e',
|
|
357
|
-
'c', 't', 'i', 'o', 'n', 'B', 'a', 'l', 'a', 'n', 'c', 'e',
|
|
358
|
-
'C', 'o', 'n', 'f', 'i', 'g', '.', 'E', 'x', 'a', 'c', 't',
|
|
359
|
-
'B', 'a', 'l', 'a', 'n', 'c', 'e', ':', '4', '\232', '\305', '\210',
|
|
360
|
-
'\036', '/', '\n', '-', 'e', 'n', 'v', 'o', 'y', '.', 'a', 'p',
|
|
267
|
+
'3', '.', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'C',
|
|
268
|
+
'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', 'B', 'a', 'l',
|
|
269
|
+
'a', 'n', 'c', 'e', 'C', 'o', 'n', 'f', 'i', 'g', 'R', '\027',
|
|
270
|
+
'c', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', 'B', 'a',
|
|
271
|
+
'l', 'a', 'n', 'c', 'e', 'C', 'o', 'n', 'f', 'i', 'g', '\022',
|
|
272
|
+
'*', '\n', '\n', 'r', 'e', 'u', 's', 'e', '_', 'p', 'o', 'r',
|
|
273
|
+
't', '\030', '\025', ' ', '\001', '(', '\010', 'B', '\013', '\030', '\001', '\222',
|
|
274
|
+
'\307', '\206', '\330', '\004', '\003', '3', '.', '0', 'R', '\t', 'r', 'e',
|
|
275
|
+
'u', 's', 'e', 'P', 'o', 'r', 't', '\022', 'F', '\n', '\021', 'e',
|
|
276
|
+
'n', 'a', 'b', 'l', 'e', '_', 'r', 'e', 'u', 's', 'e', '_',
|
|
277
|
+
'p', 'o', 'r', 't', '\030', '\035', ' ', '\001', '(', '\013', '2', '\032',
|
|
278
|
+
'.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'p', 'r', 'o', 't',
|
|
279
|
+
'o', 'b', 'u', 'f', '.', 'B', 'o', 'o', 'l', 'V', 'a', 'l',
|
|
280
|
+
'u', 'e', 'R', '\017', 'e', 'n', 'a', 'b', 'l', 'e', 'R', 'e',
|
|
281
|
+
'u', 's', 'e', 'P', 'o', 'r', 't', '\022', 'C', '\n', '\n', 'a',
|
|
282
|
+
'c', 'c', 'e', 's', 's', '_', 'l', 'o', 'g', '\030', '\026', ' ',
|
|
283
|
+
'\003', '(', '\013', '2', '$', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
284
|
+
'c', 'o', 'n', 'f', 'i', 'g', '.', 'a', 'c', 'c', 'e', 's',
|
|
285
|
+
's', 'l', 'o', 'g', '.', 'v', '3', '.', 'A', 'c', 'c', 'e',
|
|
286
|
+
's', 's', 'L', 'o', 'g', 'R', '\t', 'a', 'c', 'c', 'e', 's',
|
|
287
|
+
's', 'L', 'o', 'g', '\022', 'F', '\n', '\020', 't', 'c', 'p', '_',
|
|
288
|
+
'b', 'a', 'c', 'k', 'l', 'o', 'g', '_', 's', 'i', 'z', 'e',
|
|
289
|
+
'\030', '\030', ' ', '\001', '(', '\013', '2', '\034', '.', 'g', 'o', 'o',
|
|
290
|
+
'g', 'l', 'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u', 'f',
|
|
291
|
+
'.', 'U', 'I', 'n', 't', '3', '2', 'V', 'a', 'l', 'u', 'e',
|
|
292
|
+
'R', '\016', 't', 'c', 'p', 'B', 'a', 'c', 'k', 'l', 'o', 'g',
|
|
293
|
+
'S', 'i', 'z', 'e', '\022', '\177', '\n', '*', 'm', 'a', 'x', '_',
|
|
294
|
+
'c', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', 's', '_',
|
|
295
|
+
't', 'o', '_', 'a', 'c', 'c', 'e', 'p', 't', '_', 'p', 'e',
|
|
296
|
+
'r', '_', 's', 'o', 'c', 'k', 'e', 't', '_', 'e', 'v', 'e',
|
|
297
|
+
'n', 't', '\030', '\"', ' ', '\001', '(', '\013', '2', '\034', '.', 'g',
|
|
298
|
+
'o', 'o', 'g', 'l', 'e', '.', 'p', 'r', 'o', 't', 'o', 'b',
|
|
299
|
+
'u', 'f', '.', 'U', 'I', 'n', 't', '3', '2', 'V', 'a', 'l',
|
|
300
|
+
'u', 'e', 'B', '\007', '\372', 'B', '\004', '*', '\002', ' ', '\000', 'R',
|
|
301
|
+
'$', 'm', 'a', 'x', 'C', 'o', 'n', 'n', 'e', 'c', 't', 'i',
|
|
302
|
+
'o', 'n', 's', 'T', 'o', 'A', 'c', 'c', 'e', 'p', 't', 'P',
|
|
303
|
+
'e', 'r', 'S', 'o', 'c', 'k', 'e', 't', 'E', 'v', 'e', 'n',
|
|
304
|
+
't', '\022', '<', '\n', '\014', 'b', 'i', 'n', 'd', '_', 't', 'o',
|
|
305
|
+
'_', 'p', 'o', 'r', 't', '\030', '\032', ' ', '\001', '(', '\013', '2',
|
|
306
|
+
'\032', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'p', 'r', 'o',
|
|
307
|
+
't', 'o', 'b', 'u', 'f', '.', 'B', 'o', 'o', 'l', 'V', 'a',
|
|
308
|
+
'l', 'u', 'e', 'R', '\n', 'b', 'i', 'n', 'd', 'T', 'o', 'P',
|
|
309
|
+
'o', 'r', 't', '\022', 'h', '\n', '\021', 'i', 'n', 't', 'e', 'r',
|
|
310
|
+
'n', 'a', 'l', '_', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r',
|
|
311
|
+
'\030', '\033', ' ', '\001', '(', '\013', '2', '9', '.', 'e', 'n', 'v',
|
|
312
|
+
'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'l', 'i',
|
|
313
|
+
's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3', '.', 'L', 'i',
|
|
314
|
+
's', 't', 'e', 'n', 'e', 'r', '.', 'I', 'n', 't', 'e', 'r',
|
|
315
|
+
'n', 'a', 'l', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'C',
|
|
316
|
+
'o', 'n', 'f', 'i', 'g', 'H', '\000', 'R', '\020', 'i', 'n', 't',
|
|
317
|
+
'e', 'r', 'n', 'a', 'l', 'L', 'i', 's', 't', 'e', 'n', 'e',
|
|
318
|
+
'r', '\022', '!', '\n', '\014', 'e', 'n', 'a', 'b', 'l', 'e', '_',
|
|
319
|
+
'm', 'p', 't', 'c', 'p', '\030', '\036', ' ', '\001', '(', '\010', 'R',
|
|
320
|
+
'\013', 'e', 'n', 'a', 'b', 'l', 'e', 'M', 'p', 't', 'c', 'p',
|
|
321
|
+
'\022', '7', '\n', '\030', 'i', 'g', 'n', 'o', 'r', 'e', '_', 'g',
|
|
322
|
+
'l', 'o', 'b', 'a', 'l', '_', 'c', 'o', 'n', 'n', '_', 'l',
|
|
323
|
+
'i', 'm', 'i', 't', '\030', '\037', ' ', '\001', '(', '\010', 'R', '\025',
|
|
324
|
+
'i', 'g', 'n', 'o', 'r', 'e', 'G', 'l', 'o', 'b', 'a', 'l',
|
|
325
|
+
'C', 'o', 'n', 'n', 'L', 'i', 'm', 'i', 't', '\022', '6', '\n',
|
|
326
|
+
'\027', 'b', 'y', 'p', 'a', 's', 's', '_', 'o', 'v', 'e', 'r',
|
|
327
|
+
'l', 'o', 'a', 'd', '_', 'm', 'a', 'n', 'a', 'g', 'e', 'r',
|
|
328
|
+
'\030', '#', ' ', '\001', '(', '\010', 'R', '\025', 'b', 'y', 'p', 'a',
|
|
329
|
+
's', 's', 'O', 'v', 'e', 'r', 'l', 'o', 'a', 'd', 'M', 'a',
|
|
330
|
+
'n', 'a', 'g', 'e', 'r', '\032', 'w', '\n', '\014', 'D', 'e', 'p',
|
|
331
|
+
'r', 'e', 'c', 'a', 't', 'e', 'd', 'V', '1', '\022', '<', '\n',
|
|
332
|
+
'\014', 'b', 'i', 'n', 'd', '_', 't', 'o', '_', 'p', 'o', 'r',
|
|
333
|
+
't', '\030', '\001', ' ', '\001', '(', '\013', '2', '\032', '.', 'g', 'o',
|
|
334
|
+
'o', 'g', 'l', 'e', '.', 'p', 'r', 'o', 't', 'o', 'b', 'u',
|
|
335
|
+
'f', '.', 'B', 'o', 'o', 'l', 'V', 'a', 'l', 'u', 'e', 'R',
|
|
336
|
+
'\n', 'b', 'i', 'n', 'd', 'T', 'o', 'P', 'o', 'r', 't', ':',
|
|
337
|
+
')', '\232', '\305', '\210', '\036', '$', '\n', '\"', 'e', 'n', 'v', 'o',
|
|
338
|
+
'y', '.', 'a', 'p', 'i', '.', 'v', '2', '.', 'L', 'i', 's',
|
|
339
|
+
't', 'e', 'n', 'e', 'r', '.', 'D', 'e', 'p', 'r', 'e', 'c',
|
|
340
|
+
'a', 't', 'e', 'd', 'V', '1', '\032', '\374', '\002', '\n', '\027', 'C',
|
|
341
|
+
'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', 'B', 'a', 'l',
|
|
342
|
+
'a', 'n', 'c', 'e', 'C', 'o', 'n', 'f', 'i', 'g', '\022', 'n',
|
|
343
|
+
'\n', '\r', 'e', 'x', 'a', 'c', 't', '_', 'b', 'a', 'l', 'a',
|
|
344
|
+
'n', 'c', 'e', '\030', '\001', ' ', '\001', '(', '\013', '2', 'G', '.',
|
|
345
|
+
'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
346
|
+
'.', 'l', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3',
|
|
347
|
+
'.', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'C', 'o',
|
|
348
|
+
'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', 'B', 'a', 'l', 'a',
|
|
349
|
+
'n', 'c', 'e', 'C', 'o', 'n', 'f', 'i', 'g', '.', 'E', 'x',
|
|
350
|
+
'a', 'c', 't', 'B', 'a', 'l', 'a', 'n', 'c', 'e', 'H', '\000',
|
|
351
|
+
'R', '\014', 'e', 'x', 'a', 'c', 't', 'B', 'a', 'l', 'a', 'n',
|
|
352
|
+
'c', 'e', '\022', 'S', '\n', '\016', 'e', 'x', 't', 'e', 'n', 'd',
|
|
353
|
+
'_', 'b', 'a', 'l', 'a', 'n', 'c', 'e', '\030', '\002', ' ', '\001',
|
|
354
|
+
'(', '\013', '2', '*', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c',
|
|
355
|
+
'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v',
|
|
356
|
+
'3', '.', 'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n',
|
|
357
|
+
's', 'i', 'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'H', '\000',
|
|
358
|
+
'R', '\r', 'e', 'x', 't', 'e', 'n', 'd', 'B', 'a', 'l', 'a',
|
|
359
|
+
'n', 'c', 'e', '\032', 'Q', '\n', '\014', 'E', 'x', 'a', 'c', 't',
|
|
360
|
+
'B', 'a', 'l', 'a', 'n', 'c', 'e', ':', 'A', '\232', '\305', '\210',
|
|
361
|
+
'\036', '<', '\n', ':', 'e', 'n', 'v', 'o', 'y', '.', 'a', 'p',
|
|
361
362
|
'i', '.', 'v', '2', '.', 'L', 'i', 's', 't', 'e', 'n', 'e',
|
|
362
363
|
'r', '.', 'C', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n',
|
|
363
364
|
'B', 'a', 'l', 'a', 'n', 'c', 'e', 'C', 'o', 'n', 'f', 'i',
|
|
364
|
-
'g', '
|
|
365
|
-
'
|
|
366
|
-
'
|
|
367
|
-
'
|
|
368
|
-
'
|
|
369
|
-
'
|
|
370
|
-
'
|
|
371
|
-
'
|
|
372
|
-
'
|
|
373
|
-
'
|
|
374
|
-
'
|
|
375
|
-
'
|
|
376
|
-
'\004', '
|
|
377
|
-
'
|
|
378
|
-
'
|
|
379
|
-
'
|
|
380
|
-
'
|
|
381
|
-
'
|
|
382
|
-
'
|
|
383
|
-
'
|
|
384
|
-
'
|
|
385
|
-
'
|
|
386
|
-
'
|
|
387
|
-
'
|
|
388
|
-
'i', '
|
|
389
|
-
'
|
|
390
|
-
'
|
|
391
|
-
'
|
|
392
|
-
'
|
|
393
|
-
'
|
|
394
|
-
'
|
|
395
|
-
'r', '
|
|
365
|
+
'g', '.', 'E', 'x', 'a', 'c', 't', 'B', 'a', 'l', 'a', 'n',
|
|
366
|
+
'c', 'e', ':', '4', '\232', '\305', '\210', '\036', '/', '\n', '-', 'e',
|
|
367
|
+
'n', 'v', 'o', 'y', '.', 'a', 'p', 'i', '.', 'v', '2', '.',
|
|
368
|
+
'L', 'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'C', 'o', 'n',
|
|
369
|
+
'n', 'e', 'c', 't', 'i', 'o', 'n', 'B', 'a', 'l', 'a', 'n',
|
|
370
|
+
'c', 'e', 'C', 'o', 'n', 'f', 'i', 'g', 'B', '\023', '\n', '\014',
|
|
371
|
+
'b', 'a', 'l', 'a', 'n', 'c', 'e', '_', 't', 'y', 'p', 'e',
|
|
372
|
+
'\022', '\003', '\370', 'B', '\001', '\032', '\030', '\n', '\026', 'I', 'n', 't',
|
|
373
|
+
'e', 'r', 'n', 'a', 'l', 'L', 'i', 's', 't', 'e', 'n', 'e',
|
|
374
|
+
'r', 'C', 'o', 'n', 'f', 'i', 'g', '\032', 'i', '\n', '\n', 'F',
|
|
375
|
+
'c', 'd', 's', 'C', 'o', 'n', 'f', 'i', 'g', '\022', '\022', '\n',
|
|
376
|
+
'\004', 'n', 'a', 'm', 'e', '\030', '\001', ' ', '\001', '(', '\t', 'R',
|
|
377
|
+
'\004', 'n', 'a', 'm', 'e', '\022', 'G', '\n', '\r', 'c', 'o', 'n',
|
|
378
|
+
'f', 'i', 'g', '_', 's', 'o', 'u', 'r', 'c', 'e', '\030', '\002',
|
|
379
|
+
' ', '\001', '(', '\013', '2', '\"', '.', 'e', 'n', 'v', 'o', 'y',
|
|
380
|
+
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e',
|
|
381
|
+
'.', 'v', '3', '.', 'C', 'o', 'n', 'f', 'i', 'g', 'S', 'o',
|
|
382
|
+
'u', 'r', 'c', 'e', 'R', '\014', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
383
|
+
'S', 'o', 'u', 'r', 'c', 'e', '\"', ')', '\n', '\t', 'D', 'r',
|
|
384
|
+
'a', 'i', 'n', 'T', 'y', 'p', 'e', '\022', '\013', '\n', '\007', 'D',
|
|
385
|
+
'E', 'F', 'A', 'U', 'L', 'T', '\020', '\000', '\022', '\017', '\n', '\013',
|
|
386
|
+
'M', 'O', 'D', 'I', 'F', 'Y', '_', 'O', 'N', 'L', 'Y', '\020',
|
|
387
|
+
'\001', ':', '\034', '\232', '\305', '\210', '\036', '\027', '\n', '\025', 'e', 'n',
|
|
388
|
+
'v', 'o', 'y', '.', 'a', 'p', 'i', '.', 'v', '2', '.', 'L',
|
|
389
|
+
'i', 's', 't', 'e', 'n', 'e', 'r', 'B', '\024', '\n', '\022', 'l',
|
|
390
|
+
'i', 's', 't', 'e', 'n', 'e', 'r', '_', 's', 'p', 'e', 'c',
|
|
391
|
+
'i', 'f', 'i', 'e', 'r', 'J', '\004', '\010', '\016', '\020', '\017', 'J',
|
|
392
|
+
'\004', '\010', '\027', '\020', '\030', '\"', '\021', '\n', '\017', 'L', 'i', 's',
|
|
393
|
+
't', 'e', 'n', 'e', 'r', 'M', 'a', 'n', 'a', 'g', 'e', 'r',
|
|
394
|
+
'\"', '\033', '\n', '\031', 'V', 'a', 'l', 'i', 'd', 'a', 't', 'i',
|
|
395
|
+
'o', 'n', 'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'M', 'a',
|
|
396
|
+
'n', 'a', 'g', 'e', 'r', '\"', '\024', '\n', '\022', 'A', 'p', 'i',
|
|
397
|
+
'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'M', 'a', 'n', 'a',
|
|
398
|
+
'g', 'e', 'r', 'B', '\215', '\001', '\n', '&', 'i', 'o', '.', 'e',
|
|
399
|
+
'n', 'v', 'o', 'y', 'p', 'r', 'o', 'x', 'y', '.', 'e', 'n',
|
|
400
|
+
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'l',
|
|
401
|
+
'i', 's', 't', 'e', 'n', 'e', 'r', '.', 'v', '3', 'B', '\r',
|
|
402
|
+
'L', 'i', 's', 't', 'e', 'n', 'e', 'r', 'P', 'r', 'o', 't',
|
|
403
|
+
'o', 'P', '\001', 'Z', 'J', 'g', 'i', 't', 'h', 'u', 'b', '.',
|
|
404
|
+
'c', 'o', 'm', '/', 'e', 'n', 'v', 'o', 'y', 'p', 'r', 'o',
|
|
405
|
+
'x', 'y', '/', 'g', 'o', '-', 'c', 'o', 'n', 't', 'r', 'o',
|
|
406
|
+
'l', '-', 'p', 'l', 'a', 'n', 'e', '/', 'e', 'n', 'v', 'o',
|
|
407
|
+
'y', '/', 'c', 'o', 'n', 'f', 'i', 'g', '/', 'l', 'i', 's',
|
|
408
|
+
't', 'e', 'n', 'e', 'r', '/', 'v', '3', ';', 'l', 'i', 's',
|
|
409
|
+
't', 'e', 'n', 'e', 'r', 'v', '3', '\272', '\200', '\310', '\321', '\006',
|
|
410
|
+
'\002', '\020', '\002', 'b', '\006', 'p', 'r', 'o', 't', 'o', '3',
|
|
396
411
|
};
|
|
397
412
|
|
|
398
413
|
static _upb_DefPool_Init *deps[19] = {
|
|
399
414
|
&envoy_config_accesslog_v3_accesslog_proto_upbdefinit,
|
|
400
415
|
&envoy_config_core_v3_address_proto_upbdefinit,
|
|
401
416
|
&envoy_config_core_v3_base_proto_upbdefinit,
|
|
417
|
+
&envoy_config_core_v3_config_source_proto_upbdefinit,
|
|
402
418
|
&envoy_config_core_v3_extension_proto_upbdefinit,
|
|
403
419
|
&envoy_config_core_v3_socket_option_proto_upbdefinit,
|
|
404
420
|
&envoy_config_listener_v3_api_listener_proto_upbdefinit,
|
|
@@ -406,7 +422,6 @@ static _upb_DefPool_Init *deps[19] = {
|
|
|
406
422
|
&envoy_config_listener_v3_udp_listener_config_proto_upbdefinit,
|
|
407
423
|
&google_protobuf_duration_proto_upbdefinit,
|
|
408
424
|
&google_protobuf_wrappers_proto_upbdefinit,
|
|
409
|
-
&xds_annotations_v3_status_proto_upbdefinit,
|
|
410
425
|
&xds_core_v3_collection_entry_proto_upbdefinit,
|
|
411
426
|
&xds_type_matcher_v3_matcher_proto_upbdefinit,
|
|
412
427
|
&envoy_annotations_deprecation_proto_upbdefinit,
|