grpc 1.78.0 → 1.80.0.pre1
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/grpc.rb +7 -9
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +1 -1
- data/src/ruby/spec/client_server_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -4
- data/src/ruby/spec/spec_helper.rb +1 -1
- metadata +64 -14
- data/src/core/ext/transport/chttp2/transport/security_frame.cc +0 -31
- data/src/core/handshaker/security/legacy_secure_endpoint.cc +0 -597
|
@@ -17,7 +17,7 @@ extern _upb_DefPool_Init envoy_type_matcher_v3_string_proto_upbdefinit;
|
|
|
17
17
|
extern _upb_DefPool_Init udpa_annotations_status_proto_upbdefinit;
|
|
18
18
|
extern _upb_DefPool_Init validate_validate_proto_upbdefinit;
|
|
19
19
|
|
|
20
|
-
static const char descriptor[
|
|
20
|
+
static const char descriptor[4229] = {
|
|
21
21
|
'\n', ',', 'e', 'n', 'v', 'o', 'y', '/', 'c', 'o', 'n', 'f',
|
|
22
22
|
'i', 'g', '/', 'c', 'o', 'm', 'm', 'o', 'n', '/', 'm', 'a',
|
|
23
23
|
't', 'c', 'h', 'e', 'r', '/', 'v', '3', '/', 'm', 'a', 't',
|
|
@@ -39,7 +39,7 @@ static const char descriptor[4192] = {
|
|
|
39
39
|
'/', 's', 't', 'a', 't', 'u', 's', '.', 'p', 'r', 'o', 't',
|
|
40
40
|
'o', '\032', '\027', 'v', 'a', 'l', 'i', 'd', 'a', 't', 'e', '/',
|
|
41
41
|
'v', 'a', 'l', 'i', 'd', 'a', 't', 'e', '.', 'p', 'r', 'o',
|
|
42
|
-
't', 'o', '\"', '\
|
|
42
|
+
't', 'o', '\"', '\377', '\021', '\n', '\007', 'M', 'a', 't', 'c', 'h',
|
|
43
43
|
'e', 'r', '\022', 'X', '\n', '\014', 'm', 'a', 't', 'c', 'h', 'e',
|
|
44
44
|
'r', '_', 'l', 'i', 's', 't', '\030', '\001', ' ', '\001', '(', '\013',
|
|
45
45
|
'2', '3', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
@@ -62,7 +62,7 @@ static const char descriptor[4192] = {
|
|
|
62
62
|
't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't',
|
|
63
63
|
'c', 'h', 'e', 'r', '.', 'O', 'n', 'M', 'a', 't', 'c', 'h',
|
|
64
64
|
'R', '\t', 'o', 'n', 'N', 'o', 'M', 'a', 't', 'c', 'h', '\032',
|
|
65
|
-
'\
|
|
65
|
+
'\312', '\001', '\n', '\007', 'O', 'n', 'M', 'a', 't', 'c', 'h', '\022',
|
|
66
66
|
'C', '\n', '\007', 'm', 'a', 't', 'c', 'h', 'e', 'r', '\030', '\001',
|
|
67
67
|
' ', '\001', '(', '\013', '2', '\'', '.', 'e', 'n', 'v', 'o', 'y',
|
|
68
68
|
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm',
|
|
@@ -74,300 +74,303 @@ static const char descriptor[4192] = {
|
|
|
74
74
|
'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3', '.',
|
|
75
75
|
'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's', 'i',
|
|
76
76
|
'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'H', '\000', 'R', '\006',
|
|
77
|
-
'a', 'c', 't', 'i', 'o', 'n', '
|
|
78
|
-
'
|
|
79
|
-
'\
|
|
80
|
-
'
|
|
81
|
-
'
|
|
77
|
+
'a', 'c', 't', 'i', 'o', 'n', '\022', '#', '\n', '\r', 'k', 'e',
|
|
78
|
+
'e', 'p', '_', 'm', 'a', 't', 'c', 'h', 'i', 'n', 'g', '\030',
|
|
79
|
+
'\003', ' ', '\001', '(', '\010', 'R', '\014', 'k', 'e', 'e', 'p', 'M',
|
|
80
|
+
'a', 't', 'c', 'h', 'i', 'n', 'g', 'B', '\017', '\n', '\010', 'o',
|
|
81
|
+
'n', '_', 'm', 'a', 't', 'c', 'h', '\022', '\003', '\370', 'B', '\001',
|
|
82
|
+
'\032', '\242', '\t', '\n', '\013', 'M', 'a', 't', 'c', 'h', 'e', 'r',
|
|
83
|
+
'L', 'i', 's', 't', '\022', 'f', '\n', '\010', 'm', 'a', 't', 'c',
|
|
84
|
+
'h', 'e', 'r', 's', '\030', '\001', ' ', '\003', '(', '\013', '2', '@',
|
|
85
|
+
'.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i',
|
|
86
|
+
'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't',
|
|
87
|
+
'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't', 'c',
|
|
88
|
+
'h', 'e', 'r', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'L',
|
|
89
|
+
'i', 's', 't', '.', 'F', 'i', 'e', 'l', 'd', 'M', 'a', 't',
|
|
90
|
+
'c', 'h', 'e', 'r', 'B', '\010', '\372', 'B', '\005', '\222', '\001', '\002',
|
|
91
|
+
'\010', '\001', 'R', '\010', 'm', 'a', 't', 'c', 'h', 'e', 'r', 's',
|
|
92
|
+
'\032', '\334', '\006', '\n', '\t', 'P', 'r', 'e', 'd', 'i', 'c', 'a',
|
|
93
|
+
't', 'e', '\022', 'z', '\n', '\020', 's', 'i', 'n', 'g', 'l', 'e',
|
|
94
|
+
'_', 'p', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '\030', '\001',
|
|
95
|
+
' ', '\001', '(', '\013', '2', 'M', '.', 'e', 'n', 'v', 'o', 'y',
|
|
96
|
+
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm',
|
|
97
|
+
'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v',
|
|
98
|
+
'3', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'M', 'a',
|
|
99
|
+
't', 'c', 'h', 'e', 'r', 'L', 'i', 's', 't', '.', 'P', 'r',
|
|
100
|
+
'e', 'd', 'i', 'c', 'a', 't', 'e', '.', 'S', 'i', 'n', 'g',
|
|
101
|
+
'l', 'e', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', 'H',
|
|
102
|
+
'\000', 'R', '\017', 's', 'i', 'n', 'g', 'l', 'e', 'P', 'r', 'e',
|
|
103
|
+
'd', 'i', 'c', 'a', 't', 'e', '\022', 'l', '\n', '\n', 'o', 'r',
|
|
104
|
+
'_', 'm', 'a', 't', 'c', 'h', 'e', 'r', '\030', '\002', ' ', '\001',
|
|
105
|
+
'(', '\013', '2', 'K', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c',
|
|
106
|
+
'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n',
|
|
107
|
+
'.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.',
|
|
108
|
+
'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'M', 'a', 't', 'c',
|
|
109
|
+
'h', 'e', 'r', 'L', 'i', 's', 't', '.', 'P', 'r', 'e', 'd',
|
|
110
|
+
'i', 'c', 'a', 't', 'e', '.', 'P', 'r', 'e', 'd', 'i', 'c',
|
|
111
|
+
'a', 't', 'e', 'L', 'i', 's', 't', 'H', '\000', 'R', '\t', 'o',
|
|
112
|
+
'r', 'M', 'a', 't', 'c', 'h', 'e', 'r', '\022', 'n', '\n', '\013',
|
|
113
|
+
'a', 'n', 'd', '_', 'm', 'a', 't', 'c', 'h', 'e', 'r', '\030',
|
|
114
|
+
'\003', ' ', '\001', '(', '\013', '2', 'K', '.', 'e', 'n', 'v', 'o',
|
|
115
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm',
|
|
116
|
+
'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.',
|
|
117
|
+
'v', '3', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'M',
|
|
118
|
+
'a', 't', 'c', 'h', 'e', 'r', 'L', 'i', 's', 't', '.', 'P',
|
|
119
|
+
'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '.', 'P', 'r', 'e',
|
|
120
|
+
'd', 'i', 'c', 'a', 't', 'e', 'L', 'i', 's', 't', 'H', '\000',
|
|
121
|
+
'R', '\n', 'a', 'n', 'd', 'M', 'a', 't', 'c', 'h', 'e', 'r',
|
|
122
|
+
'\022', '`', '\n', '\013', 'n', 'o', 't', '_', 'm', 'a', 't', 'c',
|
|
123
|
+
'h', 'e', 'r', '\030', '\004', ' ', '\001', '(', '\013', '2', '=', '.',
|
|
82
124
|
'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
83
125
|
'.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't', 'c',
|
|
84
126
|
'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't', 'c', 'h',
|
|
85
127
|
'e', 'r', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'L', 'i',
|
|
86
|
-
's', 't', '.', '
|
|
87
|
-
'
|
|
88
|
-
'
|
|
89
|
-
'
|
|
90
|
-
'
|
|
91
|
-
'
|
|
92
|
-
'
|
|
93
|
-
'
|
|
94
|
-
'
|
|
95
|
-
'
|
|
96
|
-
'
|
|
97
|
-
'
|
|
98
|
-
'
|
|
99
|
-
'
|
|
100
|
-
'
|
|
101
|
-
'
|
|
102
|
-
'
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
'
|
|
106
|
-
'
|
|
107
|
-
'
|
|
108
|
-
'
|
|
109
|
-
'
|
|
110
|
-
'
|
|
111
|
-
'
|
|
128
|
+
's', 't', '.', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e',
|
|
129
|
+
'H', '\000', 'R', '\n', 'n', 'o', 't', 'M', 'a', 't', 'c', 'h',
|
|
130
|
+
'e', 'r', '\032', '\207', '\002', '\n', '\017', 'S', 'i', 'n', 'g', 'l',
|
|
131
|
+
'e', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '\022', 'J',
|
|
132
|
+
'\n', '\005', 'i', 'n', 'p', 'u', 't', '\030', '\001', ' ', '\001', '(',
|
|
133
|
+
'\013', '2', '*', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
134
|
+
'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3',
|
|
135
|
+
'.', 'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's',
|
|
136
|
+
'i', 'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'B', '\010', '\372',
|
|
137
|
+
'B', '\005', '\212', '\001', '\002', '\020', '\001', 'R', '\005', 'i', 'n', 'p',
|
|
138
|
+
'u', 't', '\022', 'G', '\n', '\013', 'v', 'a', 'l', 'u', 'e', '_',
|
|
139
|
+
'm', 'a', 't', 'c', 'h', '\030', '\002', ' ', '\001', '(', '\013', '2',
|
|
140
|
+
'$', '.', 'e', 'n', 'v', 'o', 'y', '.', 't', 'y', 'p', 'e',
|
|
141
|
+
'.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.',
|
|
142
|
+
'S', 't', 'r', 'i', 'n', 'g', 'M', 'a', 't', 'c', 'h', 'e',
|
|
143
|
+
'r', 'H', '\000', 'R', '\n', 'v', 'a', 'l', 'u', 'e', 'M', 'a',
|
|
144
|
+
't', 'c', 'h', '\022', 'O', '\n', '\014', 'c', 'u', 's', 't', 'o',
|
|
145
|
+
'm', '_', 'm', 'a', 't', 'c', 'h', '\030', '\003', ' ', '\001', '(',
|
|
146
|
+
'\013', '2', '*', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
147
|
+
'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3',
|
|
148
|
+
'.', 'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's',
|
|
149
|
+
'i', 'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'H', '\000', 'R',
|
|
150
|
+
'\013', 'c', 'u', 's', 't', 'o', 'm', 'M', 'a', 't', 'c', 'h',
|
|
151
|
+
'B', '\016', '\n', '\007', 'm', 'a', 't', 'c', 'h', 'e', 'r', '\022',
|
|
152
|
+
'\003', '\370', 'B', '\001', '\032', 'v', '\n', '\r', 'P', 'r', 'e', 'd',
|
|
153
|
+
'i', 'c', 'a', 't', 'e', 'L', 'i', 's', 't', '\022', 'e', '\n',
|
|
154
|
+
'\t', 'p', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '\030', '\001',
|
|
155
|
+
' ', '\003', '(', '\013', '2', '=', '.', 'e', 'n', 'v', 'o', 'y',
|
|
112
156
|
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm',
|
|
113
157
|
'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v',
|
|
114
158
|
'3', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'M', 'a',
|
|
115
159
|
't', 'c', 'h', 'e', 'r', 'L', 'i', 's', 't', '.', 'P', 'r',
|
|
116
|
-
'e', 'd', 'i', 'c', 'a', 't', 'e', '
|
|
117
|
-
'
|
|
118
|
-
'
|
|
119
|
-
'
|
|
120
|
-
'
|
|
160
|
+
'e', 'd', 'i', 'c', 'a', 't', 'e', 'B', '\010', '\372', 'B', '\005',
|
|
161
|
+
'\222', '\001', '\002', '\010', '\002', 'R', '\t', 'p', 'r', 'e', 'd', 'i',
|
|
162
|
+
'c', 'a', 't', 'e', 'B', '\021', '\n', '\n', 'm', 'a', 't', 'c',
|
|
163
|
+
'h', '_', 't', 'y', 'p', 'e', '\022', '\003', '\370', 'B', '\001', '\032',
|
|
164
|
+
'\313', '\001', '\n', '\014', 'F', 'i', 'e', 'l', 'd', 'M', 'a', 't',
|
|
165
|
+
'c', 'h', 'e', 'r', '\022', 'e', '\n', '\t', 'p', 'r', 'e', 'd',
|
|
166
|
+
'i', 'c', 'a', 't', 'e', '\030', '\001', ' ', '\001', '(', '\013', '2',
|
|
167
|
+
'=', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f',
|
|
168
|
+
'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a',
|
|
169
|
+
't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't',
|
|
170
|
+
'c', 'h', 'e', 'r', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r',
|
|
171
|
+
'L', 'i', 's', 't', '.', 'P', 'r', 'e', 'd', 'i', 'c', 'a',
|
|
172
|
+
't', 'e', 'B', '\010', '\372', 'B', '\005', '\212', '\001', '\002', '\020', '\001',
|
|
173
|
+
'R', '\t', 'p', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '\022',
|
|
174
|
+
'T', '\n', '\010', 'o', 'n', '_', 'm', 'a', 't', 'c', 'h', '\030',
|
|
175
|
+
'\002', ' ', '\001', '(', '\013', '2', '/', '.', 'e', 'n', 'v', 'o',
|
|
176
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm',
|
|
177
|
+
'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.',
|
|
178
|
+
'v', '3', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'O',
|
|
179
|
+
'n', 'M', 'a', 't', 'c', 'h', 'B', '\010', '\372', 'B', '\005', '\212',
|
|
180
|
+
'\001', '\002', '\020', '\001', 'R', '\007', 'o', 'n', 'M', 'a', 't', 'c',
|
|
181
|
+
'h', '\032', '\347', '\004', '\n', '\013', 'M', 'a', 't', 'c', 'h', 'e',
|
|
182
|
+
'r', 'T', 'r', 'e', 'e', '\022', 'J', '\n', '\005', 'i', 'n', 'p',
|
|
183
|
+
'u', 't', '\030', '\001', ' ', '\001', '(', '\013', '2', '*', '.', 'e',
|
|
121
184
|
'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.',
|
|
122
|
-
'c', 'o', '
|
|
123
|
-
'
|
|
124
|
-
'
|
|
125
|
-
'
|
|
126
|
-
'\
|
|
127
|
-
'
|
|
128
|
-
'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '\022', 'J', '\n',
|
|
129
|
-
'\005', 'i', 'n', 'p', 'u', 't', '\030', '\001', ' ', '\001', '(', '\013',
|
|
130
|
-
'2', '*', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
131
|
-
'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3', '.',
|
|
132
|
-
'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's', 'i',
|
|
133
|
-
'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'B', '\010', '\372', 'B',
|
|
134
|
-
'\005', '\212', '\001', '\002', '\020', '\001', 'R', '\005', 'i', 'n', 'p', 'u',
|
|
135
|
-
't', '\022', 'G', '\n', '\013', 'v', 'a', 'l', 'u', 'e', '_', 'm',
|
|
136
|
-
'a', 't', 'c', 'h', '\030', '\002', ' ', '\001', '(', '\013', '2', '$',
|
|
137
|
-
'.', 'e', 'n', 'v', 'o', 'y', '.', 't', 'y', 'p', 'e', '.',
|
|
138
|
-
'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'S',
|
|
139
|
-
't', 'r', 'i', 'n', 'g', 'M', 'a', 't', 'c', 'h', 'e', 'r',
|
|
140
|
-
'H', '\000', 'R', '\n', 'v', 'a', 'l', 'u', 'e', 'M', 'a', 't',
|
|
141
|
-
'c', 'h', '\022', 'O', '\n', '\014', 'c', 'u', 's', 't', 'o', 'm',
|
|
142
|
-
'_', 'm', 'a', 't', 'c', 'h', '\030', '\003', ' ', '\001', '(', '\013',
|
|
143
|
-
'2', '*', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
144
|
-
'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3', '.',
|
|
145
|
-
'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's', 'i',
|
|
146
|
-
'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'H', '\000', 'R', '\013',
|
|
147
|
-
'c', 'u', 's', 't', 'o', 'm', 'M', 'a', 't', 'c', 'h', 'B',
|
|
148
|
-
'\016', '\n', '\007', 'm', 'a', 't', 'c', 'h', 'e', 'r', '\022', '\003',
|
|
149
|
-
'\370', 'B', '\001', '\032', 'v', '\n', '\r', 'P', 'r', 'e', 'd', 'i',
|
|
150
|
-
'c', 'a', 't', 'e', 'L', 'i', 's', 't', '\022', 'e', '\n', '\t',
|
|
151
|
-
'p', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '\030', '\001', ' ',
|
|
152
|
-
'\003', '(', '\013', '2', '=', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
153
|
-
'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o',
|
|
154
|
-
'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3',
|
|
155
|
-
'.', 'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'M', 'a', 't',
|
|
156
|
-
'c', 'h', 'e', 'r', 'L', 'i', 's', 't', '.', 'P', 'r', 'e',
|
|
157
|
-
'd', 'i', 'c', 'a', 't', 'e', 'B', '\010', '\372', 'B', '\005', '\222',
|
|
158
|
-
'\001', '\002', '\010', '\002', 'R', '\t', 'p', 'r', 'e', 'd', 'i', 'c',
|
|
159
|
-
'a', 't', 'e', 'B', '\021', '\n', '\n', 'm', 'a', 't', 'c', 'h',
|
|
160
|
-
'_', 't', 'y', 'p', 'e', '\022', '\003', '\370', 'B', '\001', '\032', '\313',
|
|
161
|
-
'\001', '\n', '\014', 'F', 'i', 'e', 'l', 'd', 'M', 'a', 't', 'c',
|
|
162
|
-
'h', 'e', 'r', '\022', 'e', '\n', '\t', 'p', 'r', 'e', 'd', 'i',
|
|
163
|
-
'c', 'a', 't', 'e', '\030', '\001', ' ', '\001', '(', '\013', '2', '=',
|
|
185
|
+
'c', 'o', 'r', 'e', '.', 'v', '3', '.', 'T', 'y', 'p', 'e',
|
|
186
|
+
'd', 'E', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 'C', 'o',
|
|
187
|
+
'n', 'f', 'i', 'g', 'B', '\010', '\372', 'B', '\005', '\212', '\001', '\002',
|
|
188
|
+
'\020', '\001', 'R', '\005', 'i', 'n', 'p', 'u', 't', '\022', 'f', '\n',
|
|
189
|
+
'\017', 'e', 'x', 'a', 'c', 't', '_', 'm', 'a', 't', 'c', 'h',
|
|
190
|
+
'_', 'm', 'a', 'p', '\030', '\002', ' ', '\001', '(', '\013', '2', '<',
|
|
164
191
|
'.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i',
|
|
165
192
|
'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't',
|
|
166
193
|
'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't', 'c',
|
|
167
|
-
'h', 'e', 'r', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', '
|
|
168
|
-
'
|
|
169
|
-
'
|
|
170
|
-
'
|
|
171
|
-
'
|
|
172
|
-
'
|
|
173
|
-
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm',
|
|
174
|
-
'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v',
|
|
175
|
-
'3', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'O', 'n',
|
|
176
|
-
'M', 'a', 't', 'c', 'h', 'B', '\010', '\372', 'B', '\005', '\212', '\001',
|
|
177
|
-
'\002', '\020', '\001', 'R', '\007', 'o', 'n', 'M', 'a', 't', 'c', 'h',
|
|
178
|
-
'\032', '\347', '\004', '\n', '\013', 'M', 'a', 't', 'c', 'h', 'e', 'r',
|
|
179
|
-
'T', 'r', 'e', 'e', '\022', 'J', '\n', '\005', 'i', 'n', 'p', 'u',
|
|
180
|
-
't', '\030', '\001', ' ', '\001', '(', '\013', '2', '*', '.', 'e', 'n',
|
|
194
|
+
'h', 'e', 'r', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'T',
|
|
195
|
+
'r', 'e', 'e', '.', 'M', 'a', 't', 'c', 'h', 'M', 'a', 'p',
|
|
196
|
+
'H', '\000', 'R', '\r', 'e', 'x', 'a', 'c', 't', 'M', 'a', 't',
|
|
197
|
+
'c', 'h', 'M', 'a', 'p', '\022', 'h', '\n', '\020', 'p', 'r', 'e',
|
|
198
|
+
'f', 'i', 'x', '_', 'm', 'a', 't', 'c', 'h', '_', 'm', 'a',
|
|
199
|
+
'p', '\030', '\003', ' ', '\001', '(', '\013', '2', '<', '.', 'e', 'n',
|
|
181
200
|
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c',
|
|
182
|
-
'o', '
|
|
183
|
-
'
|
|
184
|
-
'
|
|
185
|
-
'
|
|
186
|
-
'
|
|
187
|
-
'
|
|
188
|
-
'
|
|
189
|
-
'
|
|
190
|
-
'
|
|
191
|
-
'
|
|
192
|
-
'
|
|
193
|
-
'\
|
|
194
|
-
'
|
|
195
|
-
'
|
|
196
|
-
'
|
|
197
|
-
'o', '
|
|
198
|
-
'
|
|
199
|
-
'
|
|
200
|
-
'
|
|
201
|
-
'
|
|
202
|
-
'
|
|
203
|
-
'
|
|
204
|
-
'
|
|
205
|
-
'
|
|
206
|
-
'
|
|
207
|
-
'
|
|
208
|
-
'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'H', '\000', 'R', '\013',
|
|
209
|
-
'c', 'u', 's', 't', 'o', 'm', 'M', 'a', 't', 'c', 'h', '\032',
|
|
210
|
-
'\326', '\001', '\n', '\010', 'M', 'a', 't', 'c', 'h', 'M', 'a', 'p',
|
|
211
|
-
'\022', 'a', '\n', '\003', 'm', 'a', 'p', '\030', '\001', ' ', '\003', '(',
|
|
212
|
-
'\013', '2', 'E', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
201
|
+
'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e',
|
|
202
|
+
'r', '.', 'v', '3', '.', 'M', 'a', 't', 'c', 'h', 'e', 'r',
|
|
203
|
+
'.', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'T', 'r', 'e', 'e',
|
|
204
|
+
'.', 'M', 'a', 't', 'c', 'h', 'M', 'a', 'p', 'H', '\000', 'R',
|
|
205
|
+
'\016', 'p', 'r', 'e', 'f', 'i', 'x', 'M', 'a', 't', 'c', 'h',
|
|
206
|
+
'M', 'a', 'p', '\022', 'O', '\n', '\014', 'c', 'u', 's', 't', 'o',
|
|
207
|
+
'm', '_', 'm', 'a', 't', 'c', 'h', '\030', '\004', ' ', '\001', '(',
|
|
208
|
+
'\013', '2', '*', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
209
|
+
'n', 'f', 'i', 'g', '.', 'c', 'o', 'r', 'e', '.', 'v', '3',
|
|
210
|
+
'.', 'T', 'y', 'p', 'e', 'd', 'E', 'x', 't', 'e', 'n', 's',
|
|
211
|
+
'i', 'o', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'H', '\000', 'R',
|
|
212
|
+
'\013', 'c', 'u', 's', 't', 'o', 'm', 'M', 'a', 't', 'c', 'h',
|
|
213
|
+
'\032', '\326', '\001', '\n', '\010', 'M', 'a', 't', 'c', 'h', 'M', 'a',
|
|
214
|
+
'p', '\022', 'a', '\n', '\003', 'm', 'a', 'p', '\030', '\001', ' ', '\003',
|
|
215
|
+
'(', '\013', '2', 'E', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c',
|
|
216
|
+
'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n',
|
|
217
|
+
'.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.',
|
|
218
|
+
'M', 'a', 't', 'c', 'h', 'e', 'r', '.', 'M', 'a', 't', 'c',
|
|
219
|
+
'h', 'e', 'r', 'T', 'r', 'e', 'e', '.', 'M', 'a', 't', 'c',
|
|
220
|
+
'h', 'M', 'a', 'p', '.', 'M', 'a', 'p', 'E', 'n', 't', 'r',
|
|
221
|
+
'y', 'B', '\010', '\372', 'B', '\005', '\232', '\001', '\002', '\010', '\001', 'R',
|
|
222
|
+
'\003', 'm', 'a', 'p', '\032', 'g', '\n', '\010', 'M', 'a', 'p', 'E',
|
|
223
|
+
'n', 't', 'r', 'y', '\022', '\020', '\n', '\003', 'k', 'e', 'y', '\030',
|
|
224
|
+
'\001', ' ', '\001', '(', '\t', 'R', '\003', 'k', 'e', 'y', '\022', 'E',
|
|
225
|
+
'\n', '\005', 'v', 'a', 'l', 'u', 'e', '\030', '\002', ' ', '\001', '(',
|
|
226
|
+
'\013', '2', '/', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
213
227
|
'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.',
|
|
214
228
|
'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M',
|
|
215
|
-
'a', 't', 'c', 'h', 'e', 'r', '.', '
|
|
216
|
-
'
|
|
217
|
-
'
|
|
218
|
-
'
|
|
219
|
-
'
|
|
220
|
-
'
|
|
221
|
-
'
|
|
222
|
-
'
|
|
223
|
-
'
|
|
229
|
+
'a', 't', 'c', 'h', 'e', 'r', '.', 'O', 'n', 'M', 'a', 't',
|
|
230
|
+
'c', 'h', 'R', '\005', 'v', 'a', 'l', 'u', 'e', ':', '\002', '8',
|
|
231
|
+
'\001', 'B', '\020', '\n', '\t', 't', 'r', 'e', 'e', '_', 't', 'y',
|
|
232
|
+
'p', 'e', '\022', '\003', '\370', 'B', '\001', 'B', '\023', '\n', '\014', 'm',
|
|
233
|
+
'a', 't', 'c', 'h', 'e', 'r', '_', 't', 'y', 'p', 'e', '\022',
|
|
234
|
+
'\003', '\370', 'B', '\001', '\"', '\350', '\010', '\n', '\016', 'M', 'a', 't',
|
|
235
|
+
'c', 'h', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '\022',
|
|
236
|
+
'T', '\n', '\010', 'o', 'r', '_', 'm', 'a', 't', 'c', 'h', '\030',
|
|
237
|
+
'\001', ' ', '\001', '(', '\013', '2', '7', '.', 'e', 'n', 'v', 'o',
|
|
238
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm',
|
|
239
|
+
'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.',
|
|
240
|
+
'v', '3', '.', 'M', 'a', 't', 'c', 'h', 'P', 'r', 'e', 'd',
|
|
241
|
+
'i', 'c', 'a', 't', 'e', '.', 'M', 'a', 't', 'c', 'h', 'S',
|
|
242
|
+
'e', 't', 'H', '\000', 'R', '\007', 'o', 'r', 'M', 'a', 't', 'c',
|
|
243
|
+
'h', '\022', 'V', '\n', '\t', 'a', 'n', 'd', '_', 'm', 'a', 't',
|
|
244
|
+
'c', 'h', '\030', '\002', ' ', '\001', '(', '\013', '2', '7', '.', 'e',
|
|
245
|
+
'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.',
|
|
246
|
+
'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h',
|
|
247
|
+
'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't', 'c', 'h', 'P',
|
|
248
|
+
'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', '.', 'M', 'a', 't',
|
|
249
|
+
'c', 'h', 'S', 'e', 't', 'H', '\000', 'R', '\010', 'a', 'n', 'd',
|
|
250
|
+
'M', 'a', 't', 'c', 'h', '\022', 'M', '\n', '\t', 'n', 'o', 't',
|
|
251
|
+
'_', 'm', 'a', 't', 'c', 'h', '\030', '\003', ' ', '\001', '(', '\013',
|
|
252
|
+
'2', '.', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
224
253
|
'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm',
|
|
225
254
|
'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a',
|
|
226
|
-
't', 'c', 'h', '
|
|
227
|
-
'
|
|
228
|
-
'
|
|
229
|
-
'
|
|
230
|
-
'
|
|
231
|
-
'
|
|
232
|
-
'
|
|
233
|
-
'
|
|
234
|
-
' ', '\001', '(', '\013', '2', '7', '.', 'e', 'n', 'v', 'o', 'y',
|
|
235
|
-
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm',
|
|
236
|
-
'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v',
|
|
237
|
-
'3', '.', 'M', 'a', 't', 'c', 'h', 'P', 'r', 'e', 'd', 'i',
|
|
238
|
-
'c', 'a', 't', 'e', '.', 'M', 'a', 't', 'c', 'h', 'S', 'e',
|
|
239
|
-
't', 'H', '\000', 'R', '\007', 'o', 'r', 'M', 'a', 't', 'c', 'h',
|
|
240
|
-
'\022', 'V', '\n', '\t', 'a', 'n', 'd', '_', 'm', 'a', 't', 'c',
|
|
241
|
-
'h', '\030', '\002', ' ', '\001', '(', '\013', '2', '7', '.', 'e', 'n',
|
|
242
|
-
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c',
|
|
243
|
-
'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e',
|
|
244
|
-
'r', '.', 'v', '3', '.', 'M', 'a', 't', 'c', 'h', 'P', 'r',
|
|
245
|
-
'e', 'd', 'i', 'c', 'a', 't', 'e', '.', 'M', 'a', 't', 'c',
|
|
246
|
-
'h', 'S', 'e', 't', 'H', '\000', 'R', '\010', 'a', 'n', 'd', 'M',
|
|
247
|
-
'a', 't', 'c', 'h', '\022', 'M', '\n', '\t', 'n', 'o', 't', '_',
|
|
248
|
-
'm', 'a', 't', 'c', 'h', '\030', '\003', ' ', '\001', '(', '\013', '2',
|
|
249
|
-
'.', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f',
|
|
250
|
-
'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a',
|
|
251
|
-
't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a', 't',
|
|
252
|
-
'c', 'h', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e', 'H',
|
|
253
|
-
'\000', 'R', '\010', 'n', 'o', 't', 'M', 'a', 't', 'c', 'h', '\022',
|
|
254
|
-
'&', '\n', '\t', 'a', 'n', 'y', '_', 'm', 'a', 't', 'c', 'h',
|
|
255
|
-
'\030', '\004', ' ', '\001', '(', '\010', 'B', '\007', '\372', 'B', '\004', 'j',
|
|
256
|
-
'\002', '\010', '\001', 'H', '\000', 'R', '\010', 'a', 'n', 'y', 'M', 'a',
|
|
257
|
-
't', 'c', 'h', '\022', 'o', '\n', '\032', 'h', 't', 't', 'p', '_',
|
|
258
|
-
'r', 'e', 'q', 'u', 'e', 's', 't', '_', 'h', 'e', 'a', 'd',
|
|
259
|
-
'e', 'r', 's', '_', 'm', 'a', 't', 'c', 'h', '\030', '\005', ' ',
|
|
260
|
-
'\001', '(', '\013', '2', '0', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
261
|
-
'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o',
|
|
262
|
-
'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3',
|
|
263
|
-
'.', 'H', 't', 't', 'p', 'H', 'e', 'a', 'd', 'e', 'r', 's',
|
|
264
|
-
'M', 'a', 't', 'c', 'h', 'H', '\000', 'R', '\027', 'h', 't', 't',
|
|
265
|
-
'p', 'R', 'e', 'q', 'u', 'e', 's', 't', 'H', 'e', 'a', 'd',
|
|
266
|
-
'e', 'r', 's', 'M', 'a', 't', 'c', 'h', '\022', 'q', '\n', '\033',
|
|
267
|
-
'h', 't', 't', 'p', '_', 'r', 'e', 'q', 'u', 'e', 's', 't',
|
|
268
|
-
'_', 't', 'r', 'a', 'i', 'l', 'e', 'r', 's', '_', 'm', 'a',
|
|
269
|
-
't', 'c', 'h', '\030', '\006', ' ', '\001', '(', '\013', '2', '0', '.',
|
|
270
|
-
'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g',
|
|
271
|
-
'.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't', 'c',
|
|
272
|
-
'h', 'e', 'r', '.', 'v', '3', '.', 'H', 't', 't', 'p', 'H',
|
|
273
|
-
'e', 'a', 'd', 'e', 'r', 's', 'M', 'a', 't', 'c', 'h', 'H',
|
|
274
|
-
'\000', 'R', '\030', 'h', 't', 't', 'p', 'R', 'e', 'q', 'u', 'e',
|
|
275
|
-
's', 't', 'T', 'r', 'a', 'i', 'l', 'e', 'r', 's', 'M', 'a',
|
|
276
|
-
't', 'c', 'h', '\022', 'q', '\n', '\033', 'h', 't', 't', 'p', '_',
|
|
277
|
-
'r', 'e', 's', 'p', 'o', 'n', 's', 'e', '_', 'h', 'e', 'a',
|
|
278
|
-
'd', 'e', 'r', 's', '_', 'm', 'a', 't', 'c', 'h', '\030', '\007',
|
|
255
|
+
't', 'c', 'h', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e',
|
|
256
|
+
'H', '\000', 'R', '\010', 'n', 'o', 't', 'M', 'a', 't', 'c', 'h',
|
|
257
|
+
'\022', '&', '\n', '\t', 'a', 'n', 'y', '_', 'm', 'a', 't', 'c',
|
|
258
|
+
'h', '\030', '\004', ' ', '\001', '(', '\010', 'B', '\007', '\372', 'B', '\004',
|
|
259
|
+
'j', '\002', '\010', '\001', 'H', '\000', 'R', '\010', 'a', 'n', 'y', 'M',
|
|
260
|
+
'a', 't', 'c', 'h', '\022', 'o', '\n', '\032', 'h', 't', 't', 'p',
|
|
261
|
+
'_', 'r', 'e', 'q', 'u', 'e', 's', 't', '_', 'h', 'e', 'a',
|
|
262
|
+
'd', 'e', 'r', 's', '_', 'm', 'a', 't', 'c', 'h', '\030', '\005',
|
|
279
263
|
' ', '\001', '(', '\013', '2', '0', '.', 'e', 'n', 'v', 'o', 'y',
|
|
280
264
|
'.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm',
|
|
281
265
|
'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v',
|
|
282
266
|
'3', '.', 'H', 't', 't', 'p', 'H', 'e', 'a', 'd', 'e', 'r',
|
|
283
|
-
's', 'M', 'a', 't', 'c', 'h', 'H', '\000', 'R', '\
|
|
284
|
-
't', 'p', 'R', 'e', '
|
|
285
|
-
'
|
|
286
|
-
'\
|
|
287
|
-
'
|
|
288
|
-
'
|
|
289
|
-
'2', '0', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
290
|
-
'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm',
|
|
291
|
-
'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'H', 't',
|
|
292
|
-
't', 'p', 'H', 'e', 'a', 'd', 'e', 'r', 's', 'M', 'a', 't',
|
|
293
|
-
'c', 'h', 'H', '\000', 'R', '\031', 'h', 't', 't', 'p', 'R', 'e',
|
|
294
|
-
's', 'p', 'o', 'n', 's', 'e', 'T', 'r', 'a', 'i', 'l', 'e',
|
|
295
|
-
'r', 's', 'M', 'a', 't', 'c', 'h', '\022', '|', '\n', '\037', 'h',
|
|
296
|
-
't', 't', 'p', '_', 'r', 'e', 'q', 'u', 'e', 's', 't', '_',
|
|
297
|
-
'g', 'e', 'n', 'e', 'r', 'i', 'c', '_', 'b', 'o', 'd', 'y',
|
|
298
|
-
'_', 'm', 'a', 't', 'c', 'h', '\030', '\t', ' ', '\001', '(', '\013',
|
|
299
|
-
'2', '4', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
300
|
-
'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm',
|
|
301
|
-
'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'H', 't',
|
|
302
|
-
't', 'p', 'G', 'e', 'n', 'e', 'r', 'i', 'c', 'B', 'o', 'd',
|
|
303
|
-
'y', 'M', 'a', 't', 'c', 'h', 'H', '\000', 'R', '\033', 'h', 't',
|
|
304
|
-
't', 'p', 'R', 'e', 'q', 'u', 'e', 's', 't', 'G', 'e', 'n',
|
|
305
|
-
'e', 'r', 'i', 'c', 'B', 'o', 'd', 'y', 'M', 'a', 't', 'c',
|
|
306
|
-
'h', '\022', '~', '\n', ' ', 'h', 't', 't', 'p', '_', 'r', 'e',
|
|
307
|
-
's', 'p', 'o', 'n', 's', 'e', '_', 'g', 'e', 'n', 'e', 'r',
|
|
308
|
-
'i', 'c', '_', 'b', 'o', 'd', 'y', '_', 'm', 'a', 't', 'c',
|
|
309
|
-
'h', '\030', '\n', ' ', '\001', '(', '\013', '2', '4', '.', 'e', 'n',
|
|
310
|
-
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c',
|
|
311
|
-
'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e',
|
|
312
|
-
'r', '.', 'v', '3', '.', 'H', 't', 't', 'p', 'G', 'e', 'n',
|
|
313
|
-
'e', 'r', 'i', 'c', 'B', 'o', 'd', 'y', 'M', 'a', 't', 'c',
|
|
314
|
-
'h', 'H', '\000', 'R', '\034', 'h', 't', 't', 'p', 'R', 'e', 's',
|
|
315
|
-
'p', 'o', 'n', 's', 'e', 'G', 'e', 'n', 'e', 'r', 'i', 'c',
|
|
316
|
-
'B', 'o', 'd', 'y', 'M', 'a', 't', 'c', 'h', '\032', 'Z', '\n',
|
|
317
|
-
'\010', 'M', 'a', 't', 'c', 'h', 'S', 'e', 't', '\022', 'N', '\n',
|
|
318
|
-
'\005', 'r', 'u', 'l', 'e', 's', '\030', '\001', ' ', '\003', '(', '\013',
|
|
319
|
-
'2', '.', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n',
|
|
320
|
-
'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm',
|
|
321
|
-
'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M', 'a',
|
|
322
|
-
't', 'c', 'h', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't', 'e',
|
|
323
|
-
'B', '\010', '\372', 'B', '\005', '\222', '\001', '\002', '\010', '\002', 'R', '\005',
|
|
324
|
-
'r', 'u', 'l', 'e', 's', 'B', '\013', '\n', '\004', 'r', 'u', 'l',
|
|
325
|
-
'e', '\022', '\003', '\370', 'B', '\001', '\"', 'R', '\n', '\020', 'H', 't',
|
|
326
|
-
't', 'p', 'H', 'e', 'a', 'd', 'e', 'r', 's', 'M', 'a', 't',
|
|
327
|
-
'c', 'h', '\022', '>', '\n', '\007', 'h', 'e', 'a', 'd', 'e', 'r',
|
|
328
|
-
's', '\030', '\001', ' ', '\003', '(', '\013', '2', '$', '.', 'e', 'n',
|
|
329
|
-
'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'r',
|
|
330
|
-
'o', 'u', 't', 'e', '.', 'v', '3', '.', 'H', 'e', 'a', 'd',
|
|
331
|
-
'e', 'r', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'R', '\007', 'h',
|
|
332
|
-
'e', 'a', 'd', 'e', 'r', 's', '\"', '\241', '\002', '\n', '\024', 'H',
|
|
333
|
-
't', 't', 'p', 'G', 'e', 'n', 'e', 'r', 'i', 'c', 'B', 'o',
|
|
334
|
-
'd', 'y', 'M', 'a', 't', 'c', 'h', '\022', '\037', '\n', '\013', 'b',
|
|
335
|
-
'y', 't', 'e', 's', '_', 'l', 'i', 'm', 'i', 't', '\030', '\001',
|
|
336
|
-
' ', '\001', '(', '\r', 'R', '\n', 'b', 'y', 't', 'e', 's', 'L',
|
|
337
|
-
'i', 'm', 'i', 't', '\022', 'k', '\n', '\010', 'p', 'a', 't', 't',
|
|
338
|
-
'e', 'r', 'n', 's', '\030', '\002', ' ', '\003', '(', '\013', '2', 'E',
|
|
267
|
+
's', 'M', 'a', 't', 'c', 'h', 'H', '\000', 'R', '\027', 'h', 't',
|
|
268
|
+
't', 'p', 'R', 'e', 'q', 'u', 'e', 's', 't', 'H', 'e', 'a',
|
|
269
|
+
'd', 'e', 'r', 's', 'M', 'a', 't', 'c', 'h', '\022', 'q', '\n',
|
|
270
|
+
'\033', 'h', 't', 't', 'p', '_', 'r', 'e', 'q', 'u', 'e', 's',
|
|
271
|
+
't', '_', 't', 'r', 'a', 'i', 'l', 'e', 'r', 's', '_', 'm',
|
|
272
|
+
'a', 't', 'c', 'h', '\030', '\006', ' ', '\001', '(', '\013', '2', '0',
|
|
339
273
|
'.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i',
|
|
340
274
|
'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't',
|
|
341
275
|
'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'H', 't', 't', 'p',
|
|
342
|
-
'
|
|
343
|
-
'
|
|
344
|
-
'
|
|
345
|
-
'
|
|
346
|
-
'
|
|
347
|
-
'
|
|
348
|
-
'
|
|
349
|
-
'
|
|
350
|
-
'
|
|
351
|
-
'
|
|
352
|
-
'
|
|
353
|
-
't', '
|
|
354
|
-
'
|
|
355
|
-
'
|
|
356
|
-
'
|
|
357
|
-
'
|
|
358
|
-
'
|
|
359
|
-
'
|
|
360
|
-
'
|
|
361
|
-
'
|
|
362
|
-
'
|
|
363
|
-
'
|
|
364
|
-
'
|
|
365
|
-
'
|
|
366
|
-
'
|
|
367
|
-
'
|
|
368
|
-
'
|
|
369
|
-
'
|
|
370
|
-
'
|
|
276
|
+
'H', 'e', 'a', 'd', 'e', 'r', 's', 'M', 'a', 't', 'c', 'h',
|
|
277
|
+
'H', '\000', 'R', '\030', 'h', 't', 't', 'p', 'R', 'e', 'q', 'u',
|
|
278
|
+
'e', 's', 't', 'T', 'r', 'a', 'i', 'l', 'e', 'r', 's', 'M',
|
|
279
|
+
'a', 't', 'c', 'h', '\022', 'q', '\n', '\033', 'h', 't', 't', 'p',
|
|
280
|
+
'_', 'r', 'e', 's', 'p', 'o', 'n', 's', 'e', '_', 'h', 'e',
|
|
281
|
+
'a', 'd', 'e', 'r', 's', '_', 'm', 'a', 't', 'c', 'h', '\030',
|
|
282
|
+
'\007', ' ', '\001', '(', '\013', '2', '0', '.', 'e', 'n', 'v', 'o',
|
|
283
|
+
'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm',
|
|
284
|
+
'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.',
|
|
285
|
+
'v', '3', '.', 'H', 't', 't', 'p', 'H', 'e', 'a', 'd', 'e',
|
|
286
|
+
'r', 's', 'M', 'a', 't', 'c', 'h', 'H', '\000', 'R', '\030', 'h',
|
|
287
|
+
't', 't', 'p', 'R', 'e', 's', 'p', 'o', 'n', 's', 'e', 'H',
|
|
288
|
+
'e', 'a', 'd', 'e', 'r', 's', 'M', 'a', 't', 'c', 'h', '\022',
|
|
289
|
+
's', '\n', '\034', 'h', 't', 't', 'p', '_', 'r', 'e', 's', 'p',
|
|
290
|
+
'o', 'n', 's', 'e', '_', 't', 'r', 'a', 'i', 'l', 'e', 'r',
|
|
291
|
+
's', '_', 'm', 'a', 't', 'c', 'h', '\030', '\010', ' ', '\001', '(',
|
|
292
|
+
'\013', '2', '0', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
293
|
+
'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.',
|
|
294
|
+
'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'H',
|
|
295
|
+
't', 't', 'p', 'H', 'e', 'a', 'd', 'e', 'r', 's', 'M', 'a',
|
|
296
|
+
't', 'c', 'h', 'H', '\000', 'R', '\031', 'h', 't', 't', 'p', 'R',
|
|
297
|
+
'e', 's', 'p', 'o', 'n', 's', 'e', 'T', 'r', 'a', 'i', 'l',
|
|
298
|
+
'e', 'r', 's', 'M', 'a', 't', 'c', 'h', '\022', '|', '\n', '\037',
|
|
299
|
+
'h', 't', 't', 'p', '_', 'r', 'e', 'q', 'u', 'e', 's', 't',
|
|
300
|
+
'_', 'g', 'e', 'n', 'e', 'r', 'i', 'c', '_', 'b', 'o', 'd',
|
|
301
|
+
'y', '_', 'm', 'a', 't', 'c', 'h', '\030', '\t', ' ', '\001', '(',
|
|
302
|
+
'\013', '2', '4', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
303
|
+
'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.',
|
|
304
|
+
'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'H',
|
|
305
|
+
't', 't', 'p', 'G', 'e', 'n', 'e', 'r', 'i', 'c', 'B', 'o',
|
|
306
|
+
'd', 'y', 'M', 'a', 't', 'c', 'h', 'H', '\000', 'R', '\033', 'h',
|
|
307
|
+
't', 't', 'p', 'R', 'e', 'q', 'u', 'e', 's', 't', 'G', 'e',
|
|
308
|
+
'n', 'e', 'r', 'i', 'c', 'B', 'o', 'd', 'y', 'M', 'a', 't',
|
|
309
|
+
'c', 'h', '\022', '~', '\n', ' ', 'h', 't', 't', 'p', '_', 'r',
|
|
310
|
+
'e', 's', 'p', 'o', 'n', 's', 'e', '_', 'g', 'e', 'n', 'e',
|
|
311
|
+
'r', 'i', 'c', '_', 'b', 'o', 'd', 'y', '_', 'm', 'a', 't',
|
|
312
|
+
'c', 'h', '\030', '\n', ' ', '\001', '(', '\013', '2', '4', '.', 'e',
|
|
313
|
+
'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.',
|
|
314
|
+
'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a', 't', 'c', 'h',
|
|
315
|
+
'e', 'r', '.', 'v', '3', '.', 'H', 't', 't', 'p', 'G', 'e',
|
|
316
|
+
'n', 'e', 'r', 'i', 'c', 'B', 'o', 'd', 'y', 'M', 'a', 't',
|
|
317
|
+
'c', 'h', 'H', '\000', 'R', '\034', 'h', 't', 't', 'p', 'R', 'e',
|
|
318
|
+
's', 'p', 'o', 'n', 's', 'e', 'G', 'e', 'n', 'e', 'r', 'i',
|
|
319
|
+
'c', 'B', 'o', 'd', 'y', 'M', 'a', 't', 'c', 'h', '\032', 'Z',
|
|
320
|
+
'\n', '\010', 'M', 'a', 't', 'c', 'h', 'S', 'e', 't', '\022', 'N',
|
|
321
|
+
'\n', '\005', 'r', 'u', 'l', 'e', 's', '\030', '\001', ' ', '\003', '(',
|
|
322
|
+
'\013', '2', '.', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o',
|
|
323
|
+
'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.',
|
|
324
|
+
'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'M',
|
|
325
|
+
'a', 't', 'c', 'h', 'P', 'r', 'e', 'd', 'i', 'c', 'a', 't',
|
|
326
|
+
'e', 'B', '\010', '\372', 'B', '\005', '\222', '\001', '\002', '\010', '\002', 'R',
|
|
327
|
+
'\005', 'r', 'u', 'l', 'e', 's', 'B', '\013', '\n', '\004', 'r', 'u',
|
|
328
|
+
'l', 'e', '\022', '\003', '\370', 'B', '\001', '\"', 'R', '\n', '\020', 'H',
|
|
329
|
+
't', 't', 'p', 'H', 'e', 'a', 'd', 'e', 'r', 's', 'M', 'a',
|
|
330
|
+
't', 'c', 'h', '\022', '>', '\n', '\007', 'h', 'e', 'a', 'd', 'e',
|
|
331
|
+
'r', 's', '\030', '\001', ' ', '\003', '(', '\013', '2', '$', '.', 'e',
|
|
332
|
+
'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f', 'i', 'g', '.',
|
|
333
|
+
'r', 'o', 'u', 't', 'e', '.', 'v', '3', '.', 'H', 'e', 'a',
|
|
334
|
+
'd', 'e', 'r', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'R', '\007',
|
|
335
|
+
'h', 'e', 'a', 'd', 'e', 'r', 's', '\"', '\241', '\002', '\n', '\024',
|
|
336
|
+
'H', 't', 't', 'p', 'G', 'e', 'n', 'e', 'r', 'i', 'c', 'B',
|
|
337
|
+
'o', 'd', 'y', 'M', 'a', 't', 'c', 'h', '\022', '\037', '\n', '\013',
|
|
338
|
+
'b', 'y', 't', 'e', 's', '_', 'l', 'i', 'm', 'i', 't', '\030',
|
|
339
|
+
'\001', ' ', '\001', '(', '\r', 'R', '\n', 'b', 'y', 't', 'e', 's',
|
|
340
|
+
'L', 'i', 'm', 'i', 't', '\022', 'k', '\n', '\010', 'p', 'a', 't',
|
|
341
|
+
't', 'e', 'r', 'n', 's', '\030', '\002', ' ', '\003', '(', '\013', '2',
|
|
342
|
+
'E', '.', 'e', 'n', 'v', 'o', 'y', '.', 'c', 'o', 'n', 'f',
|
|
343
|
+
'i', 'g', '.', 'c', 'o', 'm', 'm', 'o', 'n', '.', 'm', 'a',
|
|
344
|
+
't', 'c', 'h', 'e', 'r', '.', 'v', '3', '.', 'H', 't', 't',
|
|
345
|
+
'p', 'G', 'e', 'n', 'e', 'r', 'i', 'c', 'B', 'o', 'd', 'y',
|
|
346
|
+
'M', 'a', 't', 'c', 'h', '.', 'G', 'e', 'n', 'e', 'r', 'i',
|
|
347
|
+
'c', 'T', 'e', 'x', 't', 'M', 'a', 't', 'c', 'h', 'B', '\010',
|
|
348
|
+
'\372', 'B', '\005', '\222', '\001', '\002', '\010', '\001', 'R', '\010', 'p', 'a',
|
|
349
|
+
't', 't', 'e', 'r', 'n', 's', '\032', '{', '\n', '\020', 'G', 'e',
|
|
350
|
+
'n', 'e', 'r', 'i', 'c', 'T', 'e', 'x', 't', 'M', 'a', 't',
|
|
351
|
+
'c', 'h', '\022', ',', '\n', '\014', 's', 't', 'r', 'i', 'n', 'g',
|
|
352
|
+
'_', 'm', 'a', 't', 'c', 'h', '\030', '\001', ' ', '\001', '(', '\t',
|
|
353
|
+
'B', '\007', '\372', 'B', '\004', 'r', '\002', '\020', '\001', 'H', '\000', 'R',
|
|
354
|
+
'\013', 's', 't', 'r', 'i', 'n', 'g', 'M', 'a', 't', 'c', 'h',
|
|
355
|
+
'\022', ',', '\n', '\014', 'b', 'i', 'n', 'a', 'r', 'y', '_', 'm',
|
|
356
|
+
'a', 't', 'c', 'h', '\030', '\002', ' ', '\001', '(', '\014', 'B', '\007',
|
|
357
|
+
'\372', 'B', '\004', 'z', '\002', '\020', '\001', 'H', '\000', 'R', '\013', 'b',
|
|
358
|
+
'i', 'n', 'a', 'r', 'y', 'M', 'a', 't', 'c', 'h', 'B', '\013',
|
|
359
|
+
'\n', '\004', 'r', 'u', 'l', 'e', '\022', '\003', '\370', 'B', '\001', 'B',
|
|
360
|
+
'\227', '\001', '\n', ',', 'i', 'o', '.', 'e', 'n', 'v', 'o', 'y',
|
|
361
|
+
'p', 'r', 'o', 'x', 'y', '.', 'e', 'n', 'v', 'o', 'y', '.',
|
|
362
|
+
'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', 'm', 'm', 'o',
|
|
363
|
+
'n', '.', 'm', 'a', 't', 'c', 'h', 'e', 'r', '.', 'v', '3',
|
|
364
|
+
'B', '\014', 'M', 'a', 't', 'c', 'h', 'e', 'r', 'P', 'r', 'o',
|
|
365
|
+
't', 'o', 'P', '\001', 'Z', 'O', 'g', 'i', 't', 'h', 'u', 'b',
|
|
366
|
+
'.', 'c', 'o', 'm', '/', 'e', 'n', 'v', 'o', 'y', 'p', 'r',
|
|
367
|
+
'o', 'x', 'y', '/', 'g', 'o', '-', 'c', 'o', 'n', 't', 'r',
|
|
368
|
+
'o', 'l', '-', 'p', 'l', 'a', 'n', 'e', '/', 'e', 'n', 'v',
|
|
369
|
+
'o', 'y', '/', 'c', 'o', 'n', 'f', 'i', 'g', '/', 'c', 'o',
|
|
370
|
+
'm', 'm', 'o', 'n', '/', 'm', 'a', 't', 'c', 'h', 'e', 'r',
|
|
371
|
+
'/', 'v', '3', ';', 'm', 'a', 't', 'c', 'h', 'e', 'r', 'v',
|
|
372
|
+
'3', '\272', '\200', '\310', '\321', '\006', '\002', '\020', '\002', 'b', '\006', 'p',
|
|
373
|
+
'r', 'o', 't', 'o', '3',
|
|
371
374
|
};
|
|
372
375
|
|
|
373
376
|
static _upb_DefPool_Init *deps[6] = {
|