grpc 1.0.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +3696 -867
- data/etc/roots.pem +39 -111
- data/include/grpc/byte_buffer.h +64 -1
- data/include/grpc/census.h +40 -96
- data/include/grpc/compression.h +2 -1
- data/include/grpc/grpc.h +42 -7
- data/include/grpc/grpc_posix.h +8 -5
- data/include/grpc/impl/codegen/atm.h +3 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +2 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +8 -0
- data/include/grpc/impl/codegen/atm_windows.h +4 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +4 -4
- data/include/grpc/impl/codegen/compression_types.h +1 -1
- data/include/grpc/impl/codegen/connectivity_state.h +2 -0
- data/include/grpc/impl/codegen/exec_ctx_fwd.h +41 -0
- data/include/grpc/impl/codegen/gpr_slice.h +84 -0
- data/include/grpc/impl/codegen/{alloc.h → gpr_types.h} +30 -29
- data/include/grpc/impl/codegen/grpc_types.h +91 -9
- data/include/grpc/impl/codegen/port_platform.h +25 -92
- data/include/grpc/impl/codegen/slice.h +54 -97
- data/include/grpc/impl/codegen/sync.h +0 -253
- data/include/grpc/module.modulemap +0 -2
- data/include/grpc/slice.h +132 -0
- data/include/grpc/{impl/codegen/slice_buffer.h → slice_buffer.h} +22 -39
- data/include/grpc/support/alloc.h +40 -1
- data/include/grpc/support/log.h +80 -1
- data/include/grpc/support/log_windows.h +2 -0
- data/include/grpc/support/string_util.h +1 -1
- data/include/grpc/support/sync.h +252 -0
- data/include/grpc/support/time.h +67 -1
- data/src/boringssl/err_data.c +639 -627
- data/src/core/ext/census/base_resources.c +71 -0
- data/src/core/ext/census/base_resources.h +39 -0
- data/src/core/ext/census/gen/census.pb.c +26 -29
- data/src/core/ext/census/gen/census.pb.h +68 -67
- data/src/core/ext/census/gen/trace_context.pb.c +81 -0
- data/src/core/ext/census/gen/trace_context.pb.h +99 -0
- data/src/core/ext/census/grpc_filter.c +22 -16
- data/src/core/ext/census/grpc_plugin.c +2 -1
- data/src/core/ext/census/initialize.c +16 -4
- data/src/core/ext/census/mlog.h +1 -1
- data/src/core/ext/census/placeholders.c +0 -45
- data/src/core/ext/census/resource.c +312 -0
- data/src/core/ext/census/resource.h +63 -0
- data/src/core/ext/census/trace_context.c +86 -0
- data/src/core/ext/census/trace_context.h +68 -0
- data/src/core/ext/census/tracing.c +8 -2
- data/src/core/ext/{client_config → client_channel}/channel_connectivity.c +8 -4
- data/src/core/ext/client_channel/client_channel.c +1218 -0
- data/src/core/ext/{client_config → client_channel}/client_channel.h +8 -11
- data/src/core/ext/{client_config → client_channel}/client_channel_factory.c +33 -3
- data/src/core/ext/{client_config → client_channel}/client_channel_factory.h +15 -8
- data/src/core/ext/{client_config/client_config_plugin.c → client_channel/client_channel_plugin.c} +16 -15
- data/src/core/ext/{client_config → client_channel}/connector.c +1 -1
- data/src/core/ext/{client_config → client_channel}/connector.h +5 -8
- data/{include/grpc/support/slice_buffer.h → src/core/ext/client_channel/default_initial_connect_string.c} +4 -5
- data/src/core/ext/client_channel/http_connect_handshaker.c +399 -0
- data/src/core/ext/client_channel/http_connect_handshaker.h +52 -0
- data/src/core/ext/{client_config → client_channel}/initial_connect_string.c +6 -7
- data/src/core/ext/{client_config → client_channel}/initial_connect_string.h +10 -10
- data/src/core/ext/{client_config → client_channel}/lb_policy.c +11 -11
- data/src/core/ext/{client_config → client_channel}/lb_policy.h +68 -27
- data/src/core/ext/client_channel/lb_policy_factory.c +163 -0
- data/src/core/ext/{client_config → client_channel}/lb_policy_factory.h +64 -9
- data/src/core/ext/{client_config → client_channel}/lb_policy_registry.c +6 -4
- data/src/core/ext/{client_config → client_channel}/lb_policy_registry.h +4 -4
- data/src/core/ext/{client_config → client_channel}/parse_address.c +21 -14
- data/src/core/ext/{client_config → client_channel}/parse_address.h +8 -10
- data/src/core/ext/{client_config → client_channel}/resolver.c +3 -4
- data/src/core/ext/{client_config → client_channel}/resolver.h +11 -15
- data/src/core/ext/{client_config → client_channel}/resolver_factory.c +4 -3
- data/src/core/ext/{client_config → client_channel}/resolver_factory.h +13 -11
- data/src/core/ext/{client_config → client_channel}/resolver_registry.c +54 -34
- data/src/core/ext/{client_config → client_channel}/resolver_registry.h +21 -8
- data/src/core/ext/{client_config → client_channel}/subchannel.c +208 -119
- data/src/core/ext/{client_config → client_channel}/subchannel.h +21 -11
- data/src/core/ext/{client_config → client_channel}/subchannel_index.c +6 -17
- data/src/core/ext/{client_config → client_channel}/subchannel_index.h +7 -7
- data/src/core/ext/{client_config → client_channel}/uri_parser.c +21 -28
- data/src/core/ext/{client_config → client_channel}/uri_parser.h +3 -3
- data/src/core/ext/lb_policy/grpclb/grpclb.c +1406 -0
- data/src/core/ext/lb_policy/grpclb/grpclb.h +44 -0
- data/src/core/ext/lb_policy/grpclb/load_balancer_api.c +117 -37
- data/src/core/ext/lb_policy/grpclb/load_balancer_api.h +31 -12
- data/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +6 -36
- data/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +22 -42
- data/src/core/ext/lb_policy/pick_first/pick_first.c +64 -46
- data/src/core/ext/lb_policy/round_robin/round_robin.c +324 -160
- data/src/core/ext/load_reporting/load_reporting.c +7 -56
- data/src/core/ext/load_reporting/load_reporting.h +41 -28
- data/src/core/ext/load_reporting/load_reporting_filter.c +132 -42
- data/src/core/ext/load_reporting/load_reporting_filter.h +1 -0
- data/src/core/ext/resolver/dns/native/dns_resolver.c +88 -80
- data/src/core/ext/resolver/sockaddr/sockaddr_resolver.c +57 -102
- data/src/core/ext/transport/chttp2/alpn/alpn.c +1 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.c +253 -0
- data/src/core/{lib/iomgr/ev_poll_and_epoll_posix.h → ext/transport/chttp2/client/chttp2_connector.h} +5 -5
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +31 -160
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c +5 -5
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c +44 -243
- data/src/core/ext/transport/chttp2/server/chttp2_server.c +342 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +47 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.c +11 -124
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c +20 -9
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c +28 -236
- data/src/core/ext/transport/chttp2/transport/bin_decoder.c +31 -27
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +5 -4
- data/src/core/ext/transport/chttp2/transport/bin_encoder.c +25 -22
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +8 -7
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.c +0 -3
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +1345 -1521
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -1
- data/src/core/ext/transport/chttp2/transport/frame.h +3 -5
- data/src/core/ext/transport/chttp2/transport/frame_data.c +50 -47
- data/src/core/ext/transport/chttp2/transport/frame_data.h +8 -9
- data/src/core/ext/transport/chttp2/transport/frame_goaway.c +19 -21
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +9 -8
- data/src/core/ext/transport/chttp2/transport/frame_ping.c +13 -12
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +31 -19
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +8 -7
- data/src/core/ext/transport/chttp2/transport/frame_settings.c +22 -25
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +9 -8
- data/src/core/ext/transport/chttp2/transport/frame_window_update.c +26 -18
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +5 -6
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.c +68 -58
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +8 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser.c +327 -214
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +14 -9
- data/src/core/ext/transport/chttp2/transport/hpack_table.c +24 -19
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +9 -6
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.c +2 -2
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +1 -1
- data/src/core/ext/transport/chttp2/transport/internal.h +284 -436
- data/src/core/ext/transport/chttp2/transport/parsing.c +355 -590
- data/src/core/ext/transport/chttp2/transport/stream_lists.c +36 -309
- data/src/core/ext/transport/chttp2/transport/stream_map.c +13 -34
- data/src/core/ext/transport/chttp2/transport/stream_map.h +3 -4
- data/src/core/ext/transport/chttp2/transport/writing.c +174 -286
- data/src/core/lib/channel/channel_args.c +70 -13
- data/src/core/lib/channel/channel_args.h +28 -2
- data/src/core/lib/channel/channel_stack.c +77 -28
- data/src/core/lib/channel/channel_stack.h +61 -23
- data/src/core/lib/channel/channel_stack_builder.c +33 -25
- data/src/core/lib/channel/channel_stack_builder.h +17 -8
- data/src/core/lib/channel/compress_filter.c +52 -36
- data/src/core/lib/channel/connected_channel.c +20 -12
- data/src/core/lib/channel/connected_channel.h +2 -1
- data/src/core/lib/channel/context.h +13 -1
- data/src/core/lib/channel/deadline_filter.c +344 -0
- data/src/core/lib/channel/deadline_filter.h +99 -0
- data/src/core/lib/channel/handshaker.c +240 -0
- data/src/core/lib/channel/handshaker.h +164 -0
- data/src/core/lib/{security/credentials/google_default/credentials_windows.c → channel/handshaker_factory.c} +16 -23
- data/src/core/lib/channel/handshaker_factory.h +66 -0
- data/src/core/lib/channel/handshaker_registry.c +113 -0
- data/src/core/{ext/client_config/client_config.h → lib/channel/handshaker_registry.h} +26 -16
- data/src/core/lib/channel/http_client_filter.c +248 -46
- data/src/core/lib/channel/http_client_filter.h +3 -0
- data/src/core/lib/channel/http_server_filter.c +136 -24
- data/src/core/lib/channel/message_size_filter.c +261 -0
- data/src/core/lib/channel/message_size_filter.h +39 -0
- data/src/core/lib/compression/message_compress.c +43 -37
- data/src/core/lib/compression/message_compress.h +7 -5
- data/src/core/lib/http/format_request.c +26 -11
- data/src/core/lib/http/format_request.h +7 -5
- data/src/core/lib/http/httpcli.c +45 -27
- data/src/core/lib/http/httpcli.h +4 -4
- data/src/core/lib/http/httpcli_security_connector.c +56 -46
- data/src/core/lib/http/parser.c +17 -14
- data/src/core/lib/http/parser.h +4 -2
- data/src/core/lib/iomgr/closure.c +49 -7
- data/src/core/lib/iomgr/closure.h +56 -14
- data/src/core/lib/iomgr/combiner.c +422 -0
- data/src/core/lib/iomgr/combiner.h +64 -0
- data/src/core/lib/iomgr/endpoint.c +8 -2
- data/src/core/lib/iomgr/endpoint.h +17 -7
- data/src/core/lib/iomgr/endpoint_pair.h +3 -2
- data/src/core/lib/iomgr/endpoint_pair_posix.c +9 -8
- data/src/core/{ext/client_config/lb_policy_factory.c → lib/iomgr/endpoint_pair_uv.c} +18 -13
- data/src/core/lib/iomgr/endpoint_pair_windows.c +7 -6
- data/src/core/lib/iomgr/error.c +72 -6
- data/src/core/lib/iomgr/error.h +30 -3
- data/src/core/lib/iomgr/ev_epoll_linux.c +500 -382
- data/src/core/lib/iomgr/ev_epoll_linux.h +3 -2
- data/src/core/lib/iomgr/ev_poll_posix.c +317 -30
- data/src/core/lib/iomgr/ev_poll_posix.h +1 -0
- data/src/core/lib/iomgr/ev_posix.c +26 -5
- data/src/core/lib/iomgr/ev_posix.h +12 -1
- data/src/core/lib/iomgr/exec_ctx.c +27 -94
- data/src/core/lib/iomgr/exec_ctx.h +19 -22
- data/src/core/lib/iomgr/executor.c +29 -8
- data/src/core/lib/iomgr/executor.h +2 -4
- data/src/core/lib/iomgr/iocp_windows.c +3 -4
- data/src/core/lib/iomgr/iomgr.c +14 -10
- data/src/core/lib/iomgr/iomgr.h +6 -2
- data/src/core/lib/iomgr/iomgr_posix.c +2 -2
- data/src/core/lib/iomgr/iomgr_uv.c +49 -0
- data/src/core/lib/iomgr/iomgr_windows.c +2 -2
- data/src/core/lib/iomgr/load_file.c +3 -3
- data/src/core/lib/iomgr/load_file.h +2 -2
- data/src/core/lib/iomgr/network_status_tracker.c +1 -1
- data/src/core/lib/iomgr/pollset_set_uv.c +62 -0
- data/src/core/lib/iomgr/pollset_set_windows.c +3 -3
- data/src/core/lib/iomgr/pollset_uv.c +142 -0
- data/src/core/lib/iomgr/pollset_uv.h +42 -0
- data/src/core/lib/iomgr/pollset_windows.c +5 -6
- data/src/core/lib/iomgr/port.h +129 -0
- data/src/core/lib/iomgr/resolve_address.h +2 -1
- data/src/core/lib/iomgr/resolve_address_posix.c +14 -13
- data/src/core/lib/iomgr/resolve_address_uv.c +233 -0
- data/src/core/lib/iomgr/resolve_address_windows.c +14 -12
- data/src/core/lib/iomgr/resource_quota.c +832 -0
- data/src/core/lib/iomgr/resource_quota.h +159 -0
- data/src/core/lib/iomgr/sockaddr.h +10 -2
- data/src/core/lib/iomgr/sockaddr_utils.c +63 -36
- data/src/core/lib/iomgr/sockaddr_utils.h +14 -14
- data/src/core/lib/iomgr/socket_mutator.c +98 -0
- data/src/core/lib/iomgr/socket_mutator.h +80 -0
- data/src/core/lib/iomgr/socket_utils.h +42 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.c +28 -13
- data/src/core/lib/iomgr/socket_utils_linux.c +11 -5
- data/src/core/lib/iomgr/socket_utils_posix.c +10 -7
- data/src/core/lib/iomgr/socket_utils_posix.h +11 -4
- data/src/core/lib/iomgr/socket_utils_uv.c +49 -0
- data/src/core/lib/iomgr/socket_utils_windows.c +52 -0
- data/src/core/lib/iomgr/socket_windows.c +14 -6
- data/src/core/lib/iomgr/socket_windows.h +1 -0
- data/src/core/lib/iomgr/tcp_client.h +8 -2
- data/src/core/lib/iomgr/tcp_client_posix.c +131 -82
- data/src/core/lib/iomgr/tcp_client_posix.h +45 -0
- data/src/core/lib/iomgr/tcp_client_uv.c +190 -0
- data/src/core/lib/iomgr/tcp_client_windows.c +54 -30
- data/src/core/lib/iomgr/tcp_posix.c +135 -56
- data/src/core/lib/iomgr/tcp_posix.h +2 -2
- data/src/core/lib/iomgr/tcp_server.h +14 -6
- data/src/core/lib/iomgr/tcp_server_posix.c +154 -118
- data/src/core/lib/iomgr/tcp_server_uv.c +388 -0
- data/src/core/lib/iomgr/tcp_server_windows.c +127 -100
- data/src/core/lib/iomgr/tcp_uv.c +367 -0
- data/src/core/lib/iomgr/tcp_uv.h +59 -0
- data/src/core/lib/iomgr/tcp_windows.c +65 -48
- data/src/core/lib/iomgr/tcp_windows.h +3 -1
- data/src/core/lib/iomgr/timer.h +21 -21
- data/src/core/lib/iomgr/{timer.c → timer_generic.c} +15 -10
- data/src/core/lib/iomgr/timer_generic.h +49 -0
- data/src/core/lib/iomgr/timer_heap.c +6 -0
- data/src/core/lib/iomgr/timer_uv.c +99 -0
- data/src/core/lib/iomgr/timer_uv.h +47 -0
- data/src/core/lib/iomgr/udp_server.c +116 -98
- data/src/core/lib/iomgr/udp_server.h +5 -3
- data/src/core/lib/iomgr/unix_sockets_posix.c +14 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +6 -5
- data/src/core/lib/iomgr/unix_sockets_posix_noop.c +4 -4
- data/src/core/lib/iomgr/wakeup_fd_cv.c +118 -0
- data/src/core/lib/iomgr/wakeup_fd_cv.h +80 -0
- data/src/core/lib/iomgr/wakeup_fd_eventfd.c +3 -3
- data/src/core/lib/iomgr/wakeup_fd_nospecial.c +3 -3
- data/src/core/lib/iomgr/wakeup_fd_pipe.c +12 -6
- data/src/core/lib/iomgr/wakeup_fd_posix.c +34 -5
- data/src/core/lib/iomgr/wakeup_fd_posix.h +5 -0
- data/src/core/lib/iomgr/workqueue.h +12 -20
- data/src/core/{ext/client_config/client_config.c → lib/iomgr/workqueue_uv.c} +24 -33
- data/{include/grpc/support/slice.h → src/core/lib/iomgr/workqueue_uv.h} +4 -6
- data/src/core/lib/iomgr/workqueue_windows.c +9 -8
- data/src/core/lib/json/json.c +3 -3
- data/src/core/lib/json/json.h +11 -11
- data/src/core/lib/json/json_reader.c +9 -5
- data/src/core/lib/profiling/basic_timers.c +10 -1
- data/src/core/lib/profiling/timers.h +2 -0
- data/src/core/lib/security/context/security_context.c +13 -3
- data/src/core/lib/security/context/security_context.h +20 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.c +28 -14
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -2
- data/src/core/lib/security/credentials/credentials.c +48 -19
- data/src/core/lib/security/credentials/credentials.h +36 -19
- data/src/core/lib/security/credentials/credentials_metadata.c +11 -8
- data/src/core/lib/security/credentials/fake/fake_credentials.c +15 -11
- data/src/core/lib/security/credentials/google_default/{credentials_posix.c → credentials_generic.c} +7 -14
- data/src/core/lib/security/credentials/google_default/google_default_credentials.c +33 -21
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +14 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.c +3 -2
- data/src/core/lib/security/credentials/jwt/json_token.c +1 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_credentials.c +54 -19
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -1
- data/src/core/lib/security/credentials/jwt/jwt_verifier.c +129 -79
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +9 -6
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +63 -28
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
- data/src/core/lib/security/credentials/plugin/plugin_credentials.c +32 -11
- data/src/core/lib/security/credentials/ssl/ssl_credentials.c +13 -9
- data/src/core/lib/security/transport/client_auth_filter.c +33 -27
- data/src/core/lib/security/transport/secure_endpoint.c +93 -68
- data/src/core/lib/security/transport/secure_endpoint.h +2 -2
- data/src/core/lib/security/transport/security_connector.c +133 -168
- data/src/core/lib/security/transport/security_connector.h +31 -46
- data/src/core/lib/security/transport/security_handshaker.c +501 -0
- data/src/core/lib/security/transport/{handshake.h → security_handshaker.h} +10 -10
- data/src/core/lib/security/transport/server_auth_filter.c +50 -38
- data/src/core/lib/security/util/b64.c +11 -8
- data/src/core/lib/security/util/b64.h +5 -4
- data/src/core/lib/slice/percent_encoding.c +182 -0
- data/src/core/lib/slice/percent_encoding.h +78 -0
- data/src/core/lib/{support → slice}/slice.c +81 -50
- data/src/core/lib/{support → slice}/slice_buffer.c +78 -60
- data/src/core/lib/slice/slice_internal.h +49 -0
- data/src/core/lib/slice/slice_string_helpers.c +90 -0
- data/src/core/lib/{iomgr/workqueue_posix.h → slice/slice_string_helpers.h} +18 -18
- data/src/core/lib/support/backoff.c +24 -13
- data/src/core/lib/support/backoff.h +5 -2
- data/src/core/lib/support/env.h +0 -2
- data/src/core/lib/support/log.c +5 -4
- data/src/core/lib/support/log_linux.c +0 -1
- data/src/core/lib/support/log_posix.c +1 -1
- data/src/core/lib/support/mpscq.c +83 -0
- data/src/core/lib/support/mpscq.h +65 -0
- data/src/core/lib/support/string.c +58 -49
- data/src/core/lib/support/string.h +11 -8
- data/src/core/lib/support/subprocess_posix.c +5 -2
- data/src/core/lib/support/thd.c +1 -1
- data/src/core/lib/support/time.c +43 -79
- data/src/core/lib/support/time_posix.c +1 -1
- data/src/core/lib/support/tmpfile.h +0 -2
- data/src/core/lib/surface/alarm.c +4 -1
- data/src/core/lib/surface/byte_buffer.c +17 -11
- data/src/core/lib/surface/byte_buffer_reader.c +23 -15
- data/src/core/lib/surface/call.c +294 -276
- data/src/core/lib/surface/call.h +24 -9
- data/src/core/lib/surface/call_log_batch.c +5 -3
- data/src/core/lib/surface/channel.c +127 -111
- data/src/core/lib/surface/channel.h +14 -5
- data/src/core/lib/surface/channel_init.c +1 -1
- data/src/core/lib/surface/channel_init.h +10 -1
- data/src/core/lib/surface/channel_ping.c +7 -6
- data/src/core/lib/surface/completion_queue.c +154 -18
- data/src/core/lib/surface/completion_queue.h +5 -0
- data/src/core/lib/surface/init.c +40 -6
- data/src/core/lib/surface/init.h +1 -0
- data/src/core/lib/surface/init_secure.c +5 -2
- data/src/core/lib/surface/lame_client.c +28 -18
- data/src/core/lib/surface/server.c +134 -87
- data/src/core/lib/surface/server.h +8 -0
- data/src/core/lib/surface/validate_metadata.c +1 -1
- data/src/core/lib/surface/version.c +3 -1
- data/src/core/lib/transport/byte_stream.c +7 -4
- data/src/core/lib/transport/byte_stream.h +6 -10
- data/src/core/lib/transport/connectivity_state.c +21 -12
- data/src/core/lib/transport/connectivity_state.h +4 -1
- data/src/core/lib/transport/mdstr_hash_table.c +118 -0
- data/src/core/lib/transport/mdstr_hash_table.h +77 -0
- data/src/core/lib/transport/metadata.c +83 -60
- data/src/core/lib/transport/metadata.h +41 -23
- data/src/core/lib/transport/metadata_batch.c +17 -11
- data/src/core/lib/transport/metadata_batch.h +20 -6
- data/src/core/lib/transport/pid_controller.c +57 -0
- data/src/core/lib/transport/pid_controller.h +64 -0
- data/src/core/lib/transport/service_config.c +251 -0
- data/src/core/lib/transport/service_config.h +71 -0
- data/src/core/lib/transport/static_metadata.c +18 -16
- data/src/core/lib/transport/static_metadata.h +113 -107
- data/src/core/{ext/transport/chttp2 → lib}/transport/timeout_encoding.c +3 -3
- data/src/core/{ext/transport/chttp2 → lib}/transport/timeout_encoding.h +7 -7
- data/src/core/lib/transport/transport.c +84 -23
- data/src/core/lib/transport/transport.h +53 -8
- data/src/core/lib/transport/transport_impl.h +3 -0
- data/src/core/lib/transport/transport_op_string.c +92 -20
- data/src/core/lib/tsi/ssl_transport_security.c +3 -1
- data/src/core/plugin_registry/grpc_plugin_registry.c +8 -4
- data/src/ruby/ext/grpc/extconf.rb +0 -1
- data/src/ruby/ext/grpc/rb_byte_buffer.c +8 -7
- data/src/ruby/ext/grpc/rb_call.c +15 -5
- data/src/ruby/ext/grpc/rb_channel.c +1 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +466 -0
- data/src/{core/ext/client_config/default_initial_connect_string.c → ruby/ext/grpc/rb_compression_options.h} +10 -5
- data/src/ruby/ext/grpc/rb_grpc.c +3 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +198 -190
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +306 -294
- data/src/ruby/ext/grpc/rb_server.c +18 -12
- data/src/ruby/lib/grpc/errors.rb +154 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +144 -63
- data/src/ruby/lib/grpc/generic/bidi_call.rb +18 -2
- data/src/ruby/lib/grpc/generic/client_stub.rb +7 -5
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +39 -13
- data/src/ruby/lib/grpc/generic/rpc_server.rb +51 -24
- data/src/ruby/lib/grpc/generic/service.rb +3 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/checker.rb +3 -1
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +7 -0
- data/src/ruby/pb/test/client.rb +307 -7
- data/src/ruby/pb/test/server.rb +26 -1
- data/src/ruby/spec/compression_options_spec.rb +164 -0
- data/src/ruby/spec/error_sanity_spec.rb +64 -0
- data/src/ruby/spec/generic/active_call_spec.rb +290 -12
- data/src/ruby/spec/generic/client_stub_spec.rb +91 -41
- data/src/ruby/spec/generic/rpc_desc_spec.rb +36 -16
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +22 -28
- data/src/ruby/spec/generic/rpc_server_spec.rb +6 -6
- data/src/ruby/spec/pb/health/checker_spec.rb +27 -19
- data/src/ruby/spec/spec_helper.rb +2 -0
- data/third_party/boringssl/crypto/aes/aes.c +12 -12
- data/third_party/boringssl/crypto/aes/mode_wrappers.c +6 -2
- data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +28 -13
- data/third_party/boringssl/crypto/asn1/a_gentm.c +2 -0
- data/third_party/boringssl/crypto/asn1/a_object.c +7 -3
- data/third_party/boringssl/crypto/asn1/a_strnid.c +1 -0
- data/third_party/boringssl/crypto/asn1/a_time.c +0 -11
- data/third_party/boringssl/crypto/asn1/a_type.c +0 -2
- data/third_party/boringssl/crypto/asn1/a_utctm.c +1 -30
- data/third_party/boringssl/crypto/asn1/asn1_lib.c +56 -76
- data/third_party/boringssl/crypto/asn1/asn1_locl.h +0 -10
- data/third_party/boringssl/crypto/asn1/asn1_par.c +0 -322
- data/third_party/boringssl/crypto/asn1/f_enum.c +1 -108
- data/third_party/boringssl/crypto/asn1/f_int.c +1 -106
- data/third_party/boringssl/crypto/asn1/f_string.c +1 -106
- data/third_party/boringssl/crypto/asn1/tasn_dec.c +10 -14
- data/third_party/boringssl/crypto/asn1/tasn_enc.c +17 -11
- data/third_party/boringssl/crypto/asn1/tasn_typ.c +29 -42
- data/third_party/boringssl/crypto/asn1/tasn_utl.c +1 -1
- data/third_party/boringssl/crypto/base64/base64.c +249 -285
- data/third_party/boringssl/crypto/bio/bio.c +13 -23
- data/third_party/boringssl/crypto/bio/bio_mem.c +3 -2
- data/third_party/boringssl/crypto/bio/connect.c +12 -3
- data/third_party/boringssl/crypto/bio/fd.c +22 -15
- data/third_party/boringssl/crypto/bio/file.c +2 -38
- data/third_party/boringssl/crypto/bio/hexdump.c +1 -2
- data/third_party/boringssl/crypto/bio/internal.h +3 -0
- data/third_party/boringssl/crypto/bio/pair.c +1 -1
- data/third_party/boringssl/crypto/bio/socket.c +10 -2
- data/third_party/boringssl/crypto/bio/socket_helper.c +2 -2
- data/third_party/boringssl/crypto/bn/asm/x86_64-gcc.c +0 -8
- data/third_party/boringssl/crypto/bn/bn.c +38 -0
- data/third_party/boringssl/crypto/bn/cmp.c +25 -0
- data/third_party/boringssl/crypto/bn/convert.c +73 -76
- data/third_party/boringssl/crypto/bn/div.c +136 -70
- data/third_party/boringssl/crypto/bn/exponentiation.c +86 -381
- data/third_party/boringssl/crypto/bn/gcd.c +213 -296
- data/third_party/boringssl/crypto/bn/generic.c +0 -80
- data/third_party/boringssl/crypto/bn/internal.h +15 -3
- data/third_party/boringssl/crypto/bn/montgomery.c +57 -207
- data/third_party/boringssl/crypto/bn/montgomery_inv.c +160 -0
- data/third_party/boringssl/crypto/bn/mul.c +2 -1
- data/third_party/boringssl/crypto/bn/prime.c +24 -8
- data/third_party/boringssl/crypto/bn/random.c +47 -33
- data/third_party/boringssl/crypto/bn/sqrt.c +4 -5
- data/third_party/boringssl/crypto/buf/buf.c +25 -21
- data/third_party/boringssl/crypto/bytestring/ber.c +1 -0
- data/third_party/boringssl/crypto/bytestring/cbb.c +50 -22
- data/third_party/boringssl/crypto/bytestring/cbs.c +28 -4
- data/third_party/boringssl/crypto/chacha/{chacha_generic.c → chacha.c} +56 -29
- data/third_party/boringssl/crypto/cipher/aead.c +11 -22
- data/third_party/boringssl/crypto/cipher/cipher.c +2 -2
- data/third_party/boringssl/crypto/cipher/e_aes.c +53 -103
- data/third_party/boringssl/crypto/cipher/e_chacha20poly1305.c +2 -8
- data/third_party/boringssl/crypto/cipher/e_des.c +3 -5
- data/third_party/boringssl/crypto/cipher/e_null.c +1 -1
- data/third_party/boringssl/crypto/cipher/e_rc2.c +1 -1
- data/third_party/boringssl/crypto/cipher/e_rc4.c +1 -1
- data/third_party/boringssl/crypto/cipher/e_ssl3.c +3 -63
- data/third_party/boringssl/crypto/cipher/e_tls.c +12 -83
- data/third_party/boringssl/crypto/cipher/internal.h +8 -10
- data/third_party/boringssl/crypto/cipher/tls_cbc.c +69 -40
- data/third_party/boringssl/crypto/conf/conf.c +2 -1
- data/third_party/boringssl/crypto/cpu-aarch64-linux.c +61 -0
- data/third_party/boringssl/crypto/cpu-arm-linux.c +360 -0
- data/third_party/boringssl/crypto/cpu-arm.c +0 -161
- data/third_party/boringssl/crypto/cpu-intel.c +5 -3
- data/third_party/boringssl/{ssl/test/scoped_types.h → crypto/cpu-ppc64le.c} +21 -9
- data/third_party/boringssl/crypto/crypto.c +29 -7
- data/third_party/boringssl/crypto/curve25519/curve25519.c +284 -242
- data/third_party/boringssl/crypto/curve25519/internal.h +64 -0
- data/third_party/boringssl/crypto/curve25519/spake25519.c +464 -0
- data/third_party/boringssl/crypto/curve25519/x25519-x86_64.c +21 -0
- data/third_party/boringssl/crypto/dh/check.c +22 -6
- data/third_party/boringssl/crypto/dh/dh.c +45 -21
- data/third_party/boringssl/crypto/dh/dh_asn1.c +96 -20
- data/third_party/boringssl/crypto/dh/params.c +30 -78
- data/third_party/boringssl/crypto/digest/digest.c +3 -3
- data/third_party/boringssl/crypto/dsa/dsa.c +59 -29
- data/third_party/boringssl/crypto/dsa/dsa_asn1.c +4 -0
- data/third_party/boringssl/crypto/ec/ec.c +84 -140
- data/third_party/boringssl/crypto/ec/ec_asn1.c +82 -52
- data/third_party/boringssl/crypto/ec/ec_key.c +15 -15
- data/third_party/boringssl/crypto/ec/ec_montgomery.c +87 -50
- data/third_party/boringssl/crypto/ec/internal.h +12 -36
- data/third_party/boringssl/crypto/ec/oct.c +11 -11
- data/third_party/boringssl/crypto/ec/p224-64.c +59 -116
- data/third_party/boringssl/crypto/ec/p256-64.c +88 -163
- data/third_party/boringssl/crypto/ec/p256-x86_64.c +46 -58
- data/third_party/boringssl/crypto/ec/simple.c +81 -201
- data/third_party/boringssl/crypto/ec/util-64.c +0 -74
- data/third_party/boringssl/crypto/ecdh/ecdh.c +7 -1
- data/third_party/boringssl/crypto/ecdsa/ecdsa.c +28 -46
- data/third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c +1 -0
- data/third_party/boringssl/crypto/engine/engine.c +1 -1
- data/third_party/boringssl/crypto/err/err.c +3 -3
- data/third_party/boringssl/crypto/evp/evp.c +14 -59
- data/third_party/boringssl/crypto/evp/evp_asn1.c +144 -87
- data/third_party/boringssl/crypto/evp/evp_ctx.c +7 -7
- data/third_party/boringssl/crypto/evp/internal.h +4 -46
- data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +8 -157
- data/third_party/boringssl/crypto/evp/p_ec.c +1 -1
- data/third_party/boringssl/crypto/evp/p_ec_asn1.c +22 -170
- data/third_party/boringssl/crypto/evp/p_rsa.c +1 -1
- data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +10 -548
- data/third_party/boringssl/crypto/evp/print.c +520 -0
- data/third_party/boringssl/crypto/ex_data.c +4 -6
- data/third_party/boringssl/crypto/hkdf/hkdf.c +38 -17
- data/third_party/boringssl/crypto/hmac/hmac.c +6 -6
- data/third_party/boringssl/crypto/internal.h +57 -77
- data/third_party/boringssl/crypto/lhash/lhash.c +6 -10
- data/third_party/boringssl/crypto/md4/md4.c +9 -0
- data/third_party/boringssl/crypto/mem.c +19 -19
- data/third_party/boringssl/crypto/modes/cfb.c +5 -6
- data/third_party/boringssl/crypto/modes/ctr.c +10 -18
- data/third_party/boringssl/crypto/modes/gcm.c +100 -66
- data/third_party/boringssl/crypto/modes/internal.h +15 -27
- data/third_party/boringssl/crypto/modes/ofb.c +9 -22
- data/third_party/boringssl/crypto/newhope/error_correction.c +131 -0
- data/third_party/boringssl/crypto/newhope/internal.h +71 -0
- data/third_party/boringssl/crypto/newhope/newhope.c +174 -0
- data/third_party/boringssl/crypto/newhope/ntt.c +148 -0
- data/third_party/boringssl/crypto/newhope/poly.c +183 -0
- data/third_party/boringssl/crypto/newhope/precomp.c +306 -0
- data/third_party/boringssl/crypto/newhope/reduce.c +42 -0
- data/third_party/boringssl/crypto/obj/obj.c +111 -135
- data/third_party/boringssl/crypto/obj/obj_dat.h +4 -10
- data/third_party/boringssl/crypto/pem/pem_lib.c +6 -43
- data/third_party/boringssl/crypto/pem/pem_pkey.c +10 -19
- data/third_party/boringssl/crypto/pkcs8/p5_pbe.c +1 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +2 -1
- data/third_party/boringssl/crypto/pkcs8/p8_pkey.c +2 -2
- data/third_party/boringssl/crypto/pkcs8/pkcs8.c +95 -87
- data/third_party/boringssl/crypto/{test/test_util.h → poly1305/internal.h} +15 -10
- data/third_party/boringssl/crypto/poly1305/poly1305.c +8 -15
- data/third_party/boringssl/crypto/poly1305/poly1305_arm.c +1 -0
- data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +3 -3
- data/third_party/boringssl/crypto/rand/deterministic.c +47 -0
- data/third_party/boringssl/crypto/rand/rand.c +4 -1
- data/third_party/boringssl/crypto/rand/urandom.c +5 -7
- data/third_party/boringssl/crypto/rand/windows.c +5 -8
- data/third_party/boringssl/crypto/rc4/rc4.c +24 -209
- data/third_party/boringssl/crypto/refcount_lock.c +2 -2
- data/third_party/boringssl/crypto/rsa/blinding.c +74 -232
- data/third_party/boringssl/crypto/rsa/internal.h +5 -13
- data/third_party/boringssl/crypto/rsa/padding.c +64 -63
- data/third_party/boringssl/crypto/rsa/rsa.c +50 -28
- data/third_party/boringssl/crypto/rsa/rsa_asn1.c +8 -16
- data/third_party/boringssl/crypto/rsa/rsa_impl.c +134 -122
- data/third_party/boringssl/crypto/sha/sha256.c +2 -2
- data/third_party/boringssl/crypto/sha/sha512.c +7 -7
- data/third_party/boringssl/crypto/stack/stack.c +13 -22
- data/third_party/boringssl/crypto/thread.c +21 -12
- data/third_party/boringssl/crypto/thread_none.c +6 -2
- data/third_party/boringssl/crypto/thread_pthread.c +16 -7
- data/third_party/boringssl/crypto/thread_win.c +38 -85
- data/third_party/boringssl/crypto/x509/a_sign.c +3 -3
- data/third_party/boringssl/crypto/x509/a_strex.c +1 -1
- data/third_party/boringssl/crypto/x509/a_verify.c +2 -2
- data/third_party/boringssl/crypto/{evp → x509}/algorithm.c +37 -53
- data/third_party/boringssl/crypto/x509/asn1_gen.c +1 -2
- data/third_party/boringssl/crypto/x509/by_dir.c +6 -6
- data/third_party/boringssl/crypto/x509/internal.h +66 -0
- data/third_party/boringssl/crypto/x509/rsa_pss.c +385 -0
- data/third_party/boringssl/crypto/x509/t_x509.c +10 -12
- data/third_party/boringssl/crypto/x509/x509.c +5 -0
- data/third_party/boringssl/crypto/x509/x509_att.c +9 -3
- data/third_party/boringssl/crypto/x509/x509_lu.c +34 -44
- data/third_party/boringssl/crypto/x509/x509_obj.c +19 -2
- data/third_party/boringssl/crypto/x509/x509_r2x.c +9 -5
- data/third_party/boringssl/crypto/x509/x509_set.c +5 -0
- data/third_party/boringssl/crypto/x509/x509_txt.c +5 -0
- data/third_party/boringssl/crypto/x509/x509_vfy.c +63 -32
- data/third_party/boringssl/crypto/x509/x509_vpm.c +29 -18
- data/third_party/boringssl/crypto/x509/x509cset.c +2 -1
- data/third_party/boringssl/crypto/x509/x_crl.c +2 -2
- data/third_party/boringssl/crypto/x509/x_name.c +14 -17
- data/third_party/boringssl/crypto/x509/x_pubkey.c +10 -7
- data/third_party/boringssl/crypto/x509/x_x509.c +67 -6
- data/third_party/boringssl/crypto/x509v3/pcy_cache.c +2 -2
- data/third_party/boringssl/crypto/x509v3/pcy_tree.c +2 -1
- data/third_party/boringssl/crypto/x509v3/v3_conf.c +4 -3
- data/third_party/boringssl/crypto/x509v3/v3_cpols.c +5 -0
- data/third_party/boringssl/crypto/x509v3/v3_prn.c +0 -3
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +2 -2
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +2 -1
- data/third_party/boringssl/include/openssl/aead.h +72 -73
- data/third_party/boringssl/include/openssl/arm_arch.h +0 -6
- data/third_party/boringssl/include/openssl/asn1.h +103 -235
- data/third_party/boringssl/include/openssl/asn1_mac.h +17 -74
- data/third_party/boringssl/include/openssl/asn1t.h +1 -11
- data/third_party/boringssl/include/openssl/base.h +145 -3
- data/third_party/boringssl/include/openssl/base64.h +20 -17
- data/third_party/boringssl/include/openssl/bio.h +59 -34
- data/third_party/boringssl/include/openssl/bn.h +118 -51
- data/third_party/boringssl/include/openssl/buf.h +15 -0
- data/third_party/boringssl/include/openssl/bytestring.h +52 -4
- data/third_party/boringssl/include/openssl/chacha.h +2 -2
- data/third_party/boringssl/include/openssl/cipher.h +18 -1
- data/third_party/boringssl/include/openssl/cmac.h +11 -0
- data/third_party/boringssl/include/openssl/conf.h +13 -2
- data/third_party/boringssl/include/openssl/cpu.h +20 -23
- data/third_party/boringssl/include/openssl/crypto.h +22 -1
- data/third_party/boringssl/include/openssl/curve25519.h +96 -4
- data/third_party/boringssl/include/openssl/dh.h +71 -16
- data/third_party/boringssl/include/openssl/digest.h +38 -11
- data/third_party/boringssl/include/openssl/dsa.h +40 -4
- data/third_party/boringssl/include/openssl/ec.h +44 -18
- data/third_party/boringssl/include/openssl/ec_key.h +27 -6
- data/third_party/boringssl/include/openssl/ecdsa.h +11 -0
- data/third_party/boringssl/include/openssl/engine.h +11 -0
- data/third_party/boringssl/include/openssl/evp.h +52 -88
- data/third_party/boringssl/include/openssl/hkdf.h +24 -4
- data/third_party/boringssl/include/openssl/hmac.h +20 -6
- data/third_party/boringssl/include/openssl/md4.h +4 -0
- data/third_party/boringssl/include/openssl/mem.h +19 -0
- data/third_party/boringssl/include/openssl/newhope.h +158 -0
- data/third_party/boringssl/include/openssl/nid.h +4166 -0
- data/third_party/boringssl/include/openssl/obj.h +31 -3
- data/third_party/boringssl/include/openssl/obj_mac.h +17 -4143
- data/third_party/boringssl/include/openssl/{opensslfeatures.h → opensslconf.h} +3 -3
- data/third_party/boringssl/include/openssl/pem.h +5 -0
- data/third_party/boringssl/include/openssl/pkcs8.h +12 -0
- data/third_party/boringssl/include/openssl/rand.h +6 -0
- data/third_party/boringssl/include/openssl/rc4.h +6 -0
- data/third_party/boringssl/{crypto/dh/internal.h → include/openssl/ripemd.h} +38 -11
- data/third_party/boringssl/include/openssl/rsa.h +127 -65
- data/third_party/boringssl/include/openssl/sha.h +14 -10
- data/third_party/boringssl/include/openssl/ssl.h +561 -275
- data/third_party/boringssl/include/openssl/ssl3.h +18 -25
- data/third_party/boringssl/include/openssl/stack.h +2 -4
- data/third_party/boringssl/include/openssl/stack_macros.h +321 -353
- data/third_party/boringssl/include/openssl/thread.h +31 -13
- data/third_party/boringssl/include/openssl/time_support.h +1 -0
- data/third_party/boringssl/include/openssl/tls1.h +37 -33
- data/third_party/boringssl/include/openssl/x509.h +69 -26
- data/third_party/boringssl/include/openssl/x509_vfy.h +12 -10
- data/third_party/boringssl/include/openssl/x509v3.h +23 -2
- data/third_party/boringssl/ssl/custom_extensions.c +3 -5
- data/third_party/boringssl/ssl/d1_both.c +463 -499
- data/third_party/boringssl/ssl/d1_lib.c +38 -109
- data/third_party/boringssl/ssl/d1_pkt.c +173 -334
- data/third_party/boringssl/ssl/d1_srtp.c +20 -18
- data/third_party/boringssl/ssl/{d1_meth.c → dtls_method.c} +88 -15
- data/third_party/boringssl/ssl/dtls_record.c +27 -26
- data/third_party/boringssl/ssl/{s3_clnt.c → handshake_client.c} +816 -904
- data/third_party/boringssl/ssl/handshake_server.c +1932 -0
- data/third_party/boringssl/ssl/internal.h +712 -439
- data/third_party/boringssl/ssl/s3_both.c +445 -257
- data/third_party/boringssl/ssl/s3_enc.c +53 -36
- data/third_party/boringssl/ssl/s3_lib.c +23 -268
- data/third_party/boringssl/ssl/s3_pkt.c +168 -364
- data/third_party/boringssl/ssl/ssl_aead_ctx.c +46 -17
- data/third_party/boringssl/ssl/ssl_asn1.c +56 -26
- data/third_party/boringssl/ssl/ssl_buffer.c +16 -24
- data/third_party/boringssl/ssl/ssl_cert.c +324 -49
- data/third_party/boringssl/ssl/ssl_cipher.c +205 -150
- data/third_party/boringssl/ssl/ssl_ecdh.c +287 -51
- data/third_party/boringssl/ssl/ssl_file.c +21 -68
- data/third_party/boringssl/ssl/ssl_lib.c +881 -510
- data/third_party/boringssl/ssl/ssl_rsa.c +404 -34
- data/third_party/boringssl/ssl/ssl_session.c +324 -103
- data/third_party/boringssl/ssl/ssl_stat.c +6 -88
- data/third_party/boringssl/ssl/t1_enc.c +23 -39
- data/third_party/boringssl/ssl/t1_lib.c +1120 -622
- data/third_party/boringssl/ssl/tls13_both.c +440 -0
- data/third_party/boringssl/ssl/tls13_client.c +682 -0
- data/third_party/boringssl/ssl/tls13_enc.c +391 -0
- data/third_party/boringssl/ssl/tls13_server.c +672 -0
- data/third_party/boringssl/ssl/{s3_meth.c → tls_method.c} +100 -21
- data/third_party/boringssl/ssl/tls_record.c +159 -77
- data/third_party/nanopb/pb.h +60 -28
- data/third_party/nanopb/pb_decode.c +120 -92
- data/third_party/nanopb/pb_decode.h +3 -3
- data/third_party/nanopb/pb_encode.c +73 -67
- data/third_party/nanopb/pb_encode.h +4 -4
- metadata +155 -89
- data/include/grpc/impl/codegen/byte_buffer.h +0 -122
- data/include/grpc/impl/codegen/log.h +0 -118
- data/include/grpc/impl/codegen/time.h +0 -130
- data/src/core/ext/client_config/client_channel.c +0 -593
- data/src/core/ext/client_config/subchannel_call_holder.c +0 -272
- data/src/core/ext/client_config/subchannel_call_holder.h +0 -99
- data/src/core/lib/iomgr/ev_poll_and_epoll_posix.c +0 -2046
- data/src/core/lib/iomgr/workqueue_posix.c +0 -151
- data/src/core/lib/security/transport/handshake.c +0 -368
- data/third_party/boringssl/crypto/asn1/a_bytes.c +0 -308
- data/third_party/boringssl/crypto/asn1/bio_asn1.c +0 -477
- data/third_party/boringssl/crypto/asn1/bio_ndef.c +0 -251
- data/third_party/boringssl/crypto/asn1/t_pkey.c +0 -110
- data/third_party/boringssl/crypto/asn1/tasn_prn.c +0 -596
- data/third_party/boringssl/crypto/chacha/chacha_vec.c +0 -328
- data/third_party/boringssl/crypto/directory.h +0 -66
- data/third_party/boringssl/crypto/directory_posix.c +0 -108
- data/third_party/boringssl/crypto/directory_win.c +0 -144
- data/third_party/boringssl/crypto/test/scoped_types.h +0 -140
- data/third_party/boringssl/include/openssl/pqueue.h +0 -146
- data/third_party/boringssl/ssl/d1_clnt.c +0 -561
- data/third_party/boringssl/ssl/d1_srvr.c +0 -476
- data/third_party/boringssl/ssl/pqueue/pqueue.c +0 -197
- data/third_party/boringssl/ssl/s3_srvr.c +0 -2272
- data/third_party/boringssl/ssl/test/async_bio.h +0 -45
- data/third_party/boringssl/ssl/test/packeted_bio.h +0 -44
- data/third_party/boringssl/ssl/test/test_config.h +0 -110
@@ -34,7 +34,7 @@ struct pb_istream_s
|
|
34
34
|
*/
|
35
35
|
int *callback;
|
36
36
|
#else
|
37
|
-
bool (*callback)(pb_istream_t *stream,
|
37
|
+
bool (*callback)(pb_istream_t *stream, pb_byte_t *buf, size_t count);
|
38
38
|
#endif
|
39
39
|
|
40
40
|
void *state; /* Free field for use by callback implementation */
|
@@ -103,12 +103,12 @@ void pb_release(const pb_field_t fields[], void *dest_struct);
|
|
103
103
|
* Alternatively, you can use a custom stream that reads directly from e.g.
|
104
104
|
* a file or a network socket.
|
105
105
|
*/
|
106
|
-
pb_istream_t pb_istream_from_buffer(
|
106
|
+
pb_istream_t pb_istream_from_buffer(const pb_byte_t *buf, size_t bufsize);
|
107
107
|
|
108
108
|
/* Function to read from a pb_istream_t. You can use this if you need to
|
109
109
|
* read some custom header data, or to read data in field callbacks.
|
110
110
|
*/
|
111
|
-
bool pb_read(pb_istream_t *stream,
|
111
|
+
bool pb_read(pb_istream_t *stream, pb_byte_t *buf, size_t count);
|
112
112
|
|
113
113
|
|
114
114
|
/************************************************
|
@@ -22,7 +22,7 @@
|
|
22
22
|
**************************************/
|
23
23
|
typedef bool (*pb_encoder_t)(pb_ostream_t *stream, const pb_field_t *field, const void *src) checkreturn;
|
24
24
|
|
25
|
-
static bool checkreturn buf_write(pb_ostream_t *stream, const
|
25
|
+
static bool checkreturn buf_write(pb_ostream_t *stream, const pb_byte_t *buf, size_t count);
|
26
26
|
static bool checkreturn encode_array(pb_ostream_t *stream, const pb_field_t *field, const void *pData, size_t count, pb_encoder_t func);
|
27
27
|
static bool checkreturn encode_field(pb_ostream_t *stream, const pb_field_t *field, const void *pData);
|
28
28
|
static bool checkreturn default_extension_encoder(pb_ostream_t *stream, const pb_extension_t *extension);
|
@@ -49,16 +49,17 @@ static const pb_encoder_t PB_ENCODERS[PB_LTYPES_COUNT] = {
|
|
49
49
|
&pb_enc_bytes,
|
50
50
|
&pb_enc_string,
|
51
51
|
&pb_enc_submessage,
|
52
|
-
NULL /* extensions */
|
52
|
+
NULL, /* extensions */
|
53
|
+
&pb_enc_bytes /* PB_LTYPE_FIXED_LENGTH_BYTES */
|
53
54
|
};
|
54
55
|
|
55
56
|
/*******************************
|
56
57
|
* pb_ostream_t implementation *
|
57
58
|
*******************************/
|
58
59
|
|
59
|
-
static bool checkreturn buf_write(pb_ostream_t *stream, const
|
60
|
+
static bool checkreturn buf_write(pb_ostream_t *stream, const pb_byte_t *buf, size_t count)
|
60
61
|
{
|
61
|
-
|
62
|
+
pb_byte_t *dest = (pb_byte_t*)stream->state;
|
62
63
|
stream->state = dest + count;
|
63
64
|
|
64
65
|
while (count--)
|
@@ -67,7 +68,7 @@ static bool checkreturn buf_write(pb_ostream_t *stream, const uint8_t *buf, size
|
|
67
68
|
return true;
|
68
69
|
}
|
69
70
|
|
70
|
-
pb_ostream_t pb_ostream_from_buffer(
|
71
|
+
pb_ostream_t pb_ostream_from_buffer(pb_byte_t *buf, size_t bufsize)
|
71
72
|
{
|
72
73
|
pb_ostream_t stream;
|
73
74
|
#ifdef PB_BUFFER_ONLY
|
@@ -84,7 +85,7 @@ pb_ostream_t pb_ostream_from_buffer(uint8_t *buf, size_t bufsize)
|
|
84
85
|
return stream;
|
85
86
|
}
|
86
87
|
|
87
|
-
bool checkreturn pb_write(pb_ostream_t *stream, const
|
88
|
+
bool checkreturn pb_write(pb_ostream_t *stream, const pb_byte_t *buf, size_t count)
|
88
89
|
{
|
89
90
|
if (stream->callback != NULL)
|
90
91
|
{
|
@@ -413,15 +414,18 @@ bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *sr
|
|
413
414
|
********************/
|
414
415
|
bool checkreturn pb_encode_varint(pb_ostream_t *stream, uint64_t value)
|
415
416
|
{
|
416
|
-
|
417
|
+
pb_byte_t buffer[10];
|
417
418
|
size_t i = 0;
|
418
419
|
|
419
|
-
if (value
|
420
|
-
|
420
|
+
if (value <= 0x7F)
|
421
|
+
{
|
422
|
+
pb_byte_t v = (pb_byte_t)value;
|
423
|
+
return pb_write(stream, &v, 1);
|
424
|
+
}
|
421
425
|
|
422
426
|
while (value)
|
423
427
|
{
|
424
|
-
buffer[i] = (
|
428
|
+
buffer[i] = (pb_byte_t)((value & 0x7F) | 0x80);
|
425
429
|
value >>= 7;
|
426
430
|
i++;
|
427
431
|
}
|
@@ -443,36 +447,28 @@ bool checkreturn pb_encode_svarint(pb_ostream_t *stream, int64_t value)
|
|
443
447
|
|
444
448
|
bool checkreturn pb_encode_fixed32(pb_ostream_t *stream, const void *value)
|
445
449
|
{
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
return pb_write(stream, lebytes, 4);
|
454
|
-
#else
|
455
|
-
return pb_write(stream, (const uint8_t*)value, 4);
|
456
|
-
#endif
|
450
|
+
uint32_t val = *(const uint32_t*)value;
|
451
|
+
pb_byte_t bytes[4];
|
452
|
+
bytes[0] = (pb_byte_t)(val & 0xFF);
|
453
|
+
bytes[1] = (pb_byte_t)((val >> 8) & 0xFF);
|
454
|
+
bytes[2] = (pb_byte_t)((val >> 16) & 0xFF);
|
455
|
+
bytes[3] = (pb_byte_t)((val >> 24) & 0xFF);
|
456
|
+
return pb_write(stream, bytes, 4);
|
457
457
|
}
|
458
458
|
|
459
459
|
bool checkreturn pb_encode_fixed64(pb_ostream_t *stream, const void *value)
|
460
460
|
{
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
return pb_write(stream, lebytes, 8);
|
473
|
-
#else
|
474
|
-
return pb_write(stream, (const uint8_t*)value, 8);
|
475
|
-
#endif
|
461
|
+
uint64_t val = *(const uint64_t*)value;
|
462
|
+
pb_byte_t bytes[8];
|
463
|
+
bytes[0] = (pb_byte_t)(val & 0xFF);
|
464
|
+
bytes[1] = (pb_byte_t)((val >> 8) & 0xFF);
|
465
|
+
bytes[2] = (pb_byte_t)((val >> 16) & 0xFF);
|
466
|
+
bytes[3] = (pb_byte_t)((val >> 24) & 0xFF);
|
467
|
+
bytes[4] = (pb_byte_t)((val >> 32) & 0xFF);
|
468
|
+
bytes[5] = (pb_byte_t)((val >> 40) & 0xFF);
|
469
|
+
bytes[6] = (pb_byte_t)((val >> 48) & 0xFF);
|
470
|
+
bytes[7] = (pb_byte_t)((val >> 56) & 0xFF);
|
471
|
+
return pb_write(stream, bytes, 8);
|
476
472
|
}
|
477
473
|
|
478
474
|
bool checkreturn pb_encode_tag(pb_ostream_t *stream, pb_wire_type_t wiretype, uint32_t field_number)
|
@@ -503,6 +499,7 @@ bool checkreturn pb_encode_tag_for_field(pb_ostream_t *stream, const pb_field_t
|
|
503
499
|
case PB_LTYPE_BYTES:
|
504
500
|
case PB_LTYPE_STRING:
|
505
501
|
case PB_LTYPE_SUBMESSAGE:
|
502
|
+
case PB_LTYPE_FIXED_LENGTH_BYTES:
|
506
503
|
wiretype = PB_WT_STRING;
|
507
504
|
break;
|
508
505
|
|
@@ -513,7 +510,7 @@ bool checkreturn pb_encode_tag_for_field(pb_ostream_t *stream, const pb_field_t
|
|
513
510
|
return pb_encode_tag(stream, wiretype, field->tag);
|
514
511
|
}
|
515
512
|
|
516
|
-
bool checkreturn pb_encode_string(pb_ostream_t *stream, const
|
513
|
+
bool checkreturn pb_encode_string(pb_ostream_t *stream, const pb_byte_t *buffer, size_t size)
|
517
514
|
{
|
518
515
|
if (!pb_encode_varint(stream, (uint64_t)size))
|
519
516
|
return false;
|
@@ -577,16 +574,16 @@ static bool checkreturn pb_enc_varint(pb_ostream_t *stream, const pb_field_t *fi
|
|
577
574
|
{
|
578
575
|
int64_t value = 0;
|
579
576
|
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
577
|
+
if (field->data_size == sizeof(int_least8_t))
|
578
|
+
value = *(const int_least8_t*)src;
|
579
|
+
else if (field->data_size == sizeof(int_least16_t))
|
580
|
+
value = *(const int_least16_t*)src;
|
581
|
+
else if (field->data_size == sizeof(int32_t))
|
582
|
+
value = *(const int32_t*)src;
|
583
|
+
else if (field->data_size == sizeof(int64_t))
|
584
|
+
value = *(const int64_t*)src;
|
585
|
+
else
|
586
|
+
PB_RETURN_ERROR(stream, "invalid data_size");
|
590
587
|
|
591
588
|
return pb_encode_varint(stream, (uint64_t)value);
|
592
589
|
}
|
@@ -595,14 +592,16 @@ static bool checkreturn pb_enc_uvarint(pb_ostream_t *stream, const pb_field_t *f
|
|
595
592
|
{
|
596
593
|
uint64_t value = 0;
|
597
594
|
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
595
|
+
if (field->data_size == sizeof(uint_least8_t))
|
596
|
+
value = *(const uint_least8_t*)src;
|
597
|
+
else if (field->data_size == sizeof(uint_least16_t))
|
598
|
+
value = *(const uint_least16_t*)src;
|
599
|
+
else if (field->data_size == sizeof(uint32_t))
|
600
|
+
value = *(const uint32_t*)src;
|
601
|
+
else if (field->data_size == sizeof(uint64_t))
|
602
|
+
value = *(const uint64_t*)src;
|
603
|
+
else
|
604
|
+
PB_RETURN_ERROR(stream, "invalid data_size");
|
606
605
|
|
607
606
|
return pb_encode_varint(stream, value);
|
608
607
|
}
|
@@ -611,14 +610,16 @@ static bool checkreturn pb_enc_svarint(pb_ostream_t *stream, const pb_field_t *f
|
|
611
610
|
{
|
612
611
|
int64_t value = 0;
|
613
612
|
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
613
|
+
if (field->data_size == sizeof(int_least8_t))
|
614
|
+
value = *(const int_least8_t*)src;
|
615
|
+
else if (field->data_size == sizeof(int_least16_t))
|
616
|
+
value = *(const int_least16_t*)src;
|
617
|
+
else if (field->data_size == sizeof(int32_t))
|
618
|
+
value = *(const int32_t*)src;
|
619
|
+
else if (field->data_size == sizeof(int64_t))
|
620
|
+
value = *(const int64_t*)src;
|
621
|
+
else
|
622
|
+
PB_RETURN_ERROR(stream, "invalid data_size");
|
622
623
|
|
623
624
|
return pb_encode_svarint(stream, value);
|
624
625
|
}
|
@@ -637,11 +638,16 @@ static bool checkreturn pb_enc_fixed32(pb_ostream_t *stream, const pb_field_t *f
|
|
637
638
|
|
638
639
|
static bool checkreturn pb_enc_bytes(pb_ostream_t *stream, const pb_field_t *field, const void *src)
|
639
640
|
{
|
640
|
-
const pb_bytes_array_t *bytes =
|
641
|
+
const pb_bytes_array_t *bytes = NULL;
|
642
|
+
|
643
|
+
if (PB_LTYPE(field->type) == PB_LTYPE_FIXED_LENGTH_BYTES)
|
644
|
+
return pb_encode_string(stream, (const pb_byte_t*)src, field->data_size);
|
645
|
+
|
646
|
+
bytes = (const pb_bytes_array_t*)src;
|
641
647
|
|
642
648
|
if (src == NULL)
|
643
649
|
{
|
644
|
-
/*
|
650
|
+
/* Treat null pointer as an empty bytes field */
|
645
651
|
return pb_encode_string(stream, NULL, 0);
|
646
652
|
}
|
647
653
|
|
@@ -665,7 +671,7 @@ static bool checkreturn pb_enc_string(pb_ostream_t *stream, const pb_field_t *fi
|
|
665
671
|
|
666
672
|
if (src == NULL)
|
667
673
|
{
|
668
|
-
size = 0; /*
|
674
|
+
size = 0; /* Treat null pointer as an empty string */
|
669
675
|
}
|
670
676
|
else
|
671
677
|
{
|
@@ -677,7 +683,7 @@ static bool checkreturn pb_enc_string(pb_ostream_t *stream, const pb_field_t *fi
|
|
677
683
|
}
|
678
684
|
}
|
679
685
|
|
680
|
-
return pb_encode_string(stream, (const
|
686
|
+
return pb_encode_string(stream, (const pb_byte_t*)src, size);
|
681
687
|
}
|
682
688
|
|
683
689
|
static bool checkreturn pb_enc_submessage(pb_ostream_t *stream, const pb_field_t *field, const void *src)
|
@@ -35,7 +35,7 @@ struct pb_ostream_s
|
|
35
35
|
*/
|
36
36
|
int *callback;
|
37
37
|
#else
|
38
|
-
bool (*callback)(pb_ostream_t *stream, const
|
38
|
+
bool (*callback)(pb_ostream_t *stream, const pb_byte_t *buf, size_t count);
|
39
39
|
#endif
|
40
40
|
void *state; /* Free field for use by callback implementation. */
|
41
41
|
size_t max_size; /* Limit number of output bytes written (or use SIZE_MAX). */
|
@@ -86,7 +86,7 @@ bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *sr
|
|
86
86
|
* Alternatively, you can use a custom stream that writes directly to e.g.
|
87
87
|
* a file or a network socket.
|
88
88
|
*/
|
89
|
-
pb_ostream_t pb_ostream_from_buffer(
|
89
|
+
pb_ostream_t pb_ostream_from_buffer(pb_byte_t *buf, size_t bufsize);
|
90
90
|
|
91
91
|
/* Pseudo-stream for measuring the size of a message without actually storing
|
92
92
|
* the encoded data.
|
@@ -106,7 +106,7 @@ pb_ostream_t pb_ostream_from_buffer(uint8_t *buf, size_t bufsize);
|
|
106
106
|
/* Function to write into a pb_ostream_t stream. You can use this if you need
|
107
107
|
* to append or prepend some custom headers to the message.
|
108
108
|
*/
|
109
|
-
bool pb_write(pb_ostream_t *stream, const
|
109
|
+
bool pb_write(pb_ostream_t *stream, const pb_byte_t *buf, size_t count);
|
110
110
|
|
111
111
|
|
112
112
|
/************************************************
|
@@ -130,7 +130,7 @@ bool pb_encode_varint(pb_ostream_t *stream, uint64_t value);
|
|
130
130
|
bool pb_encode_svarint(pb_ostream_t *stream, int64_t value);
|
131
131
|
|
132
132
|
/* Encode a string or bytes type field. For strings, pass strlen(s) as size. */
|
133
|
-
bool pb_encode_string(pb_ostream_t *stream, const
|
133
|
+
bool pb_encode_string(pb_ostream_t *stream, const pb_byte_t *buffer, size_t size);
|
134
134
|
|
135
135
|
/* Encode a fixed32, sfixed32 or float value.
|
136
136
|
* You need to pass a pointer to a 4-byte wide C variable. */
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: src/ruby/bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-02-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
19
|
+
version: '3.1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
26
|
+
version: '3.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: googleauth
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,14 +114,14 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: '0
|
117
|
+
version: '1.0'
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: '0
|
124
|
+
version: '1.0'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: rake-compiler-dock
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -197,28 +197,28 @@ files:
|
|
197
197
|
- include/grpc/grpc_posix.h
|
198
198
|
- include/grpc/grpc_security.h
|
199
199
|
- include/grpc/grpc_security_constants.h
|
200
|
-
- include/grpc/impl/codegen/alloc.h
|
201
200
|
- include/grpc/impl/codegen/atm.h
|
202
201
|
- include/grpc/impl/codegen/atm_gcc_atomic.h
|
203
202
|
- include/grpc/impl/codegen/atm_gcc_sync.h
|
204
203
|
- include/grpc/impl/codegen/atm_windows.h
|
205
|
-
- include/grpc/impl/codegen/byte_buffer.h
|
206
204
|
- include/grpc/impl/codegen/byte_buffer_reader.h
|
207
205
|
- include/grpc/impl/codegen/compression_types.h
|
208
206
|
- include/grpc/impl/codegen/connectivity_state.h
|
207
|
+
- include/grpc/impl/codegen/exec_ctx_fwd.h
|
208
|
+
- include/grpc/impl/codegen/gpr_slice.h
|
209
|
+
- include/grpc/impl/codegen/gpr_types.h
|
209
210
|
- include/grpc/impl/codegen/grpc_types.h
|
210
|
-
- include/grpc/impl/codegen/log.h
|
211
211
|
- include/grpc/impl/codegen/port_platform.h
|
212
212
|
- include/grpc/impl/codegen/propagation_bits.h
|
213
213
|
- include/grpc/impl/codegen/slice.h
|
214
|
-
- include/grpc/impl/codegen/slice_buffer.h
|
215
214
|
- include/grpc/impl/codegen/status.h
|
216
215
|
- include/grpc/impl/codegen/sync.h
|
217
216
|
- include/grpc/impl/codegen/sync_generic.h
|
218
217
|
- include/grpc/impl/codegen/sync_posix.h
|
219
218
|
- include/grpc/impl/codegen/sync_windows.h
|
220
|
-
- include/grpc/impl/codegen/time.h
|
221
219
|
- include/grpc/module.modulemap
|
220
|
+
- include/grpc/slice.h
|
221
|
+
- include/grpc/slice_buffer.h
|
222
222
|
- include/grpc/status.h
|
223
223
|
- include/grpc/support/alloc.h
|
224
224
|
- include/grpc/support/atm.h
|
@@ -233,8 +233,6 @@ files:
|
|
233
233
|
- include/grpc/support/log.h
|
234
234
|
- include/grpc/support/log_windows.h
|
235
235
|
- include/grpc/support/port_platform.h
|
236
|
-
- include/grpc/support/slice.h
|
237
|
-
- include/grpc/support/slice_buffer.h
|
238
236
|
- include/grpc/support/string_util.h
|
239
237
|
- include/grpc/support/subprocess.h
|
240
238
|
- include/grpc/support/sync.h
|
@@ -250,11 +248,15 @@ files:
|
|
250
248
|
- include/grpc/support/useful.h
|
251
249
|
- src/boringssl/err_data.c
|
252
250
|
- src/core/ext/census/aggregation.h
|
251
|
+
- src/core/ext/census/base_resources.c
|
252
|
+
- src/core/ext/census/base_resources.h
|
253
253
|
- src/core/ext/census/census_interface.h
|
254
254
|
- src/core/ext/census/census_rpc_stats.h
|
255
255
|
- src/core/ext/census/context.c
|
256
256
|
- src/core/ext/census/gen/census.pb.c
|
257
257
|
- src/core/ext/census/gen/census.pb.h
|
258
|
+
- src/core/ext/census/gen/trace_context.pb.c
|
259
|
+
- src/core/ext/census/gen/trace_context.pb.h
|
258
260
|
- src/core/ext/census/grpc_context.c
|
259
261
|
- src/core/ext/census/grpc_filter.c
|
260
262
|
- src/core/ext/census/grpc_filter.h
|
@@ -264,43 +266,47 @@ files:
|
|
264
266
|
- src/core/ext/census/mlog.h
|
265
267
|
- src/core/ext/census/operation.c
|
266
268
|
- src/core/ext/census/placeholders.c
|
269
|
+
- src/core/ext/census/resource.c
|
270
|
+
- src/core/ext/census/resource.h
|
267
271
|
- src/core/ext/census/rpc_metric_id.h
|
272
|
+
- src/core/ext/census/trace_context.c
|
273
|
+
- src/core/ext/census/trace_context.h
|
268
274
|
- src/core/ext/census/tracing.c
|
269
|
-
- src/core/ext/
|
270
|
-
- src/core/ext/
|
271
|
-
- src/core/ext/
|
272
|
-
- src/core/ext/
|
273
|
-
- src/core/ext/
|
274
|
-
- src/core/ext/
|
275
|
-
- src/core/ext/
|
276
|
-
- src/core/ext/
|
277
|
-
- src/core/ext/
|
278
|
-
- src/core/ext/
|
279
|
-
- src/core/ext/
|
280
|
-
- src/core/ext/
|
281
|
-
- src/core/ext/
|
282
|
-
- src/core/ext/
|
283
|
-
- src/core/ext/
|
284
|
-
- src/core/ext/
|
285
|
-
- src/core/ext/
|
286
|
-
- src/core/ext/
|
287
|
-
- src/core/ext/
|
288
|
-
- src/core/ext/
|
289
|
-
- src/core/ext/
|
290
|
-
- src/core/ext/
|
291
|
-
- src/core/ext/
|
292
|
-
- src/core/ext/
|
293
|
-
- src/core/ext/
|
294
|
-
- src/core/ext/
|
295
|
-
- src/core/ext/
|
296
|
-
- src/core/ext/
|
297
|
-
- src/core/ext/
|
298
|
-
- src/core/ext/
|
299
|
-
- src/core/ext/
|
300
|
-
- src/core/ext/
|
301
|
-
- src/core/ext/
|
302
|
-
- src/core/ext/
|
303
|
-
- src/core/ext/
|
275
|
+
- src/core/ext/client_channel/channel_connectivity.c
|
276
|
+
- src/core/ext/client_channel/client_channel.c
|
277
|
+
- src/core/ext/client_channel/client_channel.h
|
278
|
+
- src/core/ext/client_channel/client_channel_factory.c
|
279
|
+
- src/core/ext/client_channel/client_channel_factory.h
|
280
|
+
- src/core/ext/client_channel/client_channel_plugin.c
|
281
|
+
- src/core/ext/client_channel/connector.c
|
282
|
+
- src/core/ext/client_channel/connector.h
|
283
|
+
- src/core/ext/client_channel/default_initial_connect_string.c
|
284
|
+
- src/core/ext/client_channel/http_connect_handshaker.c
|
285
|
+
- src/core/ext/client_channel/http_connect_handshaker.h
|
286
|
+
- src/core/ext/client_channel/initial_connect_string.c
|
287
|
+
- src/core/ext/client_channel/initial_connect_string.h
|
288
|
+
- src/core/ext/client_channel/lb_policy.c
|
289
|
+
- src/core/ext/client_channel/lb_policy.h
|
290
|
+
- src/core/ext/client_channel/lb_policy_factory.c
|
291
|
+
- src/core/ext/client_channel/lb_policy_factory.h
|
292
|
+
- src/core/ext/client_channel/lb_policy_registry.c
|
293
|
+
- src/core/ext/client_channel/lb_policy_registry.h
|
294
|
+
- src/core/ext/client_channel/parse_address.c
|
295
|
+
- src/core/ext/client_channel/parse_address.h
|
296
|
+
- src/core/ext/client_channel/resolver.c
|
297
|
+
- src/core/ext/client_channel/resolver.h
|
298
|
+
- src/core/ext/client_channel/resolver_factory.c
|
299
|
+
- src/core/ext/client_channel/resolver_factory.h
|
300
|
+
- src/core/ext/client_channel/resolver_registry.c
|
301
|
+
- src/core/ext/client_channel/resolver_registry.h
|
302
|
+
- src/core/ext/client_channel/subchannel.c
|
303
|
+
- src/core/ext/client_channel/subchannel.h
|
304
|
+
- src/core/ext/client_channel/subchannel_index.c
|
305
|
+
- src/core/ext/client_channel/subchannel_index.h
|
306
|
+
- src/core/ext/client_channel/uri_parser.c
|
307
|
+
- src/core/ext/client_channel/uri_parser.h
|
308
|
+
- src/core/ext/lb_policy/grpclb/grpclb.c
|
309
|
+
- src/core/ext/lb_policy/grpclb/grpclb.h
|
304
310
|
- src/core/ext/lb_policy/grpclb/load_balancer_api.c
|
305
311
|
- src/core/ext/lb_policy/grpclb/load_balancer_api.h
|
306
312
|
- src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c
|
@@ -315,9 +321,13 @@ files:
|
|
315
321
|
- src/core/ext/resolver/sockaddr/sockaddr_resolver.c
|
316
322
|
- src/core/ext/transport/chttp2/alpn/alpn.c
|
317
323
|
- src/core/ext/transport/chttp2/alpn/alpn.h
|
324
|
+
- src/core/ext/transport/chttp2/client/chttp2_connector.c
|
325
|
+
- src/core/ext/transport/chttp2/client/chttp2_connector.h
|
318
326
|
- src/core/ext/transport/chttp2/client/insecure/channel_create.c
|
319
327
|
- src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c
|
320
328
|
- src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
|
329
|
+
- src/core/ext/transport/chttp2/server/chttp2_server.c
|
330
|
+
- src/core/ext/transport/chttp2/server/chttp2_server.h
|
321
331
|
- src/core/ext/transport/chttp2/server/insecure/server_chttp2.c
|
322
332
|
- src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c
|
323
333
|
- src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c
|
@@ -359,8 +369,6 @@ files:
|
|
359
369
|
- src/core/ext/transport/chttp2/transport/stream_lists.c
|
360
370
|
- src/core/ext/transport/chttp2/transport/stream_map.c
|
361
371
|
- src/core/ext/transport/chttp2/transport/stream_map.h
|
362
|
-
- src/core/ext/transport/chttp2/transport/timeout_encoding.c
|
363
|
-
- src/core/ext/transport/chttp2/transport/timeout_encoding.h
|
364
372
|
- src/core/ext/transport/chttp2/transport/varint.c
|
365
373
|
- src/core/ext/transport/chttp2/transport/varint.h
|
366
374
|
- src/core/ext/transport/chttp2/transport/writing.c
|
@@ -375,10 +383,20 @@ files:
|
|
375
383
|
- src/core/lib/channel/connected_channel.c
|
376
384
|
- src/core/lib/channel/connected_channel.h
|
377
385
|
- src/core/lib/channel/context.h
|
386
|
+
- src/core/lib/channel/deadline_filter.c
|
387
|
+
- src/core/lib/channel/deadline_filter.h
|
388
|
+
- src/core/lib/channel/handshaker.c
|
389
|
+
- src/core/lib/channel/handshaker.h
|
390
|
+
- src/core/lib/channel/handshaker_factory.c
|
391
|
+
- src/core/lib/channel/handshaker_factory.h
|
392
|
+
- src/core/lib/channel/handshaker_registry.c
|
393
|
+
- src/core/lib/channel/handshaker_registry.h
|
378
394
|
- src/core/lib/channel/http_client_filter.c
|
379
395
|
- src/core/lib/channel/http_client_filter.h
|
380
396
|
- src/core/lib/channel/http_server_filter.c
|
381
397
|
- src/core/lib/channel/http_server_filter.h
|
398
|
+
- src/core/lib/channel/message_size_filter.c
|
399
|
+
- src/core/lib/channel/message_size_filter.h
|
382
400
|
- src/core/lib/compression/algorithm_metadata.h
|
383
401
|
- src/core/lib/compression/compression.c
|
384
402
|
- src/core/lib/compression/message_compress.c
|
@@ -394,17 +412,18 @@ files:
|
|
394
412
|
- src/core/lib/http/parser.h
|
395
413
|
- src/core/lib/iomgr/closure.c
|
396
414
|
- src/core/lib/iomgr/closure.h
|
415
|
+
- src/core/lib/iomgr/combiner.c
|
416
|
+
- src/core/lib/iomgr/combiner.h
|
397
417
|
- src/core/lib/iomgr/endpoint.c
|
398
418
|
- src/core/lib/iomgr/endpoint.h
|
399
419
|
- src/core/lib/iomgr/endpoint_pair.h
|
400
420
|
- src/core/lib/iomgr/endpoint_pair_posix.c
|
421
|
+
- src/core/lib/iomgr/endpoint_pair_uv.c
|
401
422
|
- src/core/lib/iomgr/endpoint_pair_windows.c
|
402
423
|
- src/core/lib/iomgr/error.c
|
403
424
|
- src/core/lib/iomgr/error.h
|
404
425
|
- src/core/lib/iomgr/ev_epoll_linux.c
|
405
426
|
- src/core/lib/iomgr/ev_epoll_linux.h
|
406
|
-
- src/core/lib/iomgr/ev_poll_and_epoll_posix.c
|
407
|
-
- src/core/lib/iomgr/ev_poll_and_epoll_posix.h
|
408
427
|
- src/core/lib/iomgr/ev_poll_posix.c
|
409
428
|
- src/core/lib/iomgr/ev_poll_posix.h
|
410
429
|
- src/core/lib/iomgr/ev_posix.c
|
@@ -420,6 +439,7 @@ files:
|
|
420
439
|
- src/core/lib/iomgr/iomgr_internal.h
|
421
440
|
- src/core/lib/iomgr/iomgr_posix.c
|
422
441
|
- src/core/lib/iomgr/iomgr_posix.h
|
442
|
+
- src/core/lib/iomgr/iomgr_uv.c
|
423
443
|
- src/core/lib/iomgr/iomgr_windows.c
|
424
444
|
- src/core/lib/iomgr/load_file.c
|
425
445
|
- src/core/lib/iomgr/load_file.h
|
@@ -429,45 +449,67 @@ files:
|
|
429
449
|
- src/core/lib/iomgr/polling_entity.h
|
430
450
|
- src/core/lib/iomgr/pollset.h
|
431
451
|
- src/core/lib/iomgr/pollset_set.h
|
452
|
+
- src/core/lib/iomgr/pollset_set_uv.c
|
432
453
|
- src/core/lib/iomgr/pollset_set_windows.c
|
433
454
|
- src/core/lib/iomgr/pollset_set_windows.h
|
455
|
+
- src/core/lib/iomgr/pollset_uv.c
|
456
|
+
- src/core/lib/iomgr/pollset_uv.h
|
434
457
|
- src/core/lib/iomgr/pollset_windows.c
|
435
458
|
- src/core/lib/iomgr/pollset_windows.h
|
459
|
+
- src/core/lib/iomgr/port.h
|
436
460
|
- src/core/lib/iomgr/resolve_address.h
|
437
461
|
- src/core/lib/iomgr/resolve_address_posix.c
|
462
|
+
- src/core/lib/iomgr/resolve_address_uv.c
|
438
463
|
- src/core/lib/iomgr/resolve_address_windows.c
|
464
|
+
- src/core/lib/iomgr/resource_quota.c
|
465
|
+
- src/core/lib/iomgr/resource_quota.h
|
439
466
|
- src/core/lib/iomgr/sockaddr.h
|
440
467
|
- src/core/lib/iomgr/sockaddr_posix.h
|
441
468
|
- src/core/lib/iomgr/sockaddr_utils.c
|
442
469
|
- src/core/lib/iomgr/sockaddr_utils.h
|
443
470
|
- src/core/lib/iomgr/sockaddr_windows.h
|
471
|
+
- src/core/lib/iomgr/socket_mutator.c
|
472
|
+
- src/core/lib/iomgr/socket_mutator.h
|
473
|
+
- src/core/lib/iomgr/socket_utils.h
|
444
474
|
- src/core/lib/iomgr/socket_utils_common_posix.c
|
445
475
|
- src/core/lib/iomgr/socket_utils_linux.c
|
446
476
|
- src/core/lib/iomgr/socket_utils_posix.c
|
447
477
|
- src/core/lib/iomgr/socket_utils_posix.h
|
478
|
+
- src/core/lib/iomgr/socket_utils_uv.c
|
479
|
+
- src/core/lib/iomgr/socket_utils_windows.c
|
448
480
|
- src/core/lib/iomgr/socket_windows.c
|
449
481
|
- src/core/lib/iomgr/socket_windows.h
|
450
482
|
- src/core/lib/iomgr/tcp_client.h
|
451
483
|
- src/core/lib/iomgr/tcp_client_posix.c
|
484
|
+
- src/core/lib/iomgr/tcp_client_posix.h
|
485
|
+
- src/core/lib/iomgr/tcp_client_uv.c
|
452
486
|
- src/core/lib/iomgr/tcp_client_windows.c
|
453
487
|
- src/core/lib/iomgr/tcp_posix.c
|
454
488
|
- src/core/lib/iomgr/tcp_posix.h
|
455
489
|
- src/core/lib/iomgr/tcp_server.h
|
456
490
|
- src/core/lib/iomgr/tcp_server_posix.c
|
491
|
+
- src/core/lib/iomgr/tcp_server_uv.c
|
457
492
|
- src/core/lib/iomgr/tcp_server_windows.c
|
493
|
+
- src/core/lib/iomgr/tcp_uv.c
|
494
|
+
- src/core/lib/iomgr/tcp_uv.h
|
458
495
|
- src/core/lib/iomgr/tcp_windows.c
|
459
496
|
- src/core/lib/iomgr/tcp_windows.h
|
460
497
|
- src/core/lib/iomgr/time_averaged_stats.c
|
461
498
|
- src/core/lib/iomgr/time_averaged_stats.h
|
462
|
-
- src/core/lib/iomgr/timer.c
|
463
499
|
- src/core/lib/iomgr/timer.h
|
500
|
+
- src/core/lib/iomgr/timer_generic.c
|
501
|
+
- src/core/lib/iomgr/timer_generic.h
|
464
502
|
- src/core/lib/iomgr/timer_heap.c
|
465
503
|
- src/core/lib/iomgr/timer_heap.h
|
504
|
+
- src/core/lib/iomgr/timer_uv.c
|
505
|
+
- src/core/lib/iomgr/timer_uv.h
|
466
506
|
- src/core/lib/iomgr/udp_server.c
|
467
507
|
- src/core/lib/iomgr/udp_server.h
|
468
508
|
- src/core/lib/iomgr/unix_sockets_posix.c
|
469
509
|
- src/core/lib/iomgr/unix_sockets_posix.h
|
470
510
|
- src/core/lib/iomgr/unix_sockets_posix_noop.c
|
511
|
+
- src/core/lib/iomgr/wakeup_fd_cv.c
|
512
|
+
- src/core/lib/iomgr/wakeup_fd_cv.h
|
471
513
|
- src/core/lib/iomgr/wakeup_fd_eventfd.c
|
472
514
|
- src/core/lib/iomgr/wakeup_fd_nospecial.c
|
473
515
|
- src/core/lib/iomgr/wakeup_fd_pipe.c
|
@@ -475,8 +517,8 @@ files:
|
|
475
517
|
- src/core/lib/iomgr/wakeup_fd_posix.c
|
476
518
|
- src/core/lib/iomgr/wakeup_fd_posix.h
|
477
519
|
- src/core/lib/iomgr/workqueue.h
|
478
|
-
- src/core/lib/iomgr/
|
479
|
-
- src/core/lib/iomgr/
|
520
|
+
- src/core/lib/iomgr/workqueue_uv.c
|
521
|
+
- src/core/lib/iomgr/workqueue_uv.h
|
480
522
|
- src/core/lib/iomgr/workqueue_windows.c
|
481
523
|
- src/core/lib/iomgr/workqueue_windows.h
|
482
524
|
- src/core/lib/json/json.c
|
@@ -499,8 +541,7 @@ files:
|
|
499
541
|
- src/core/lib/security/credentials/credentials_metadata.c
|
500
542
|
- src/core/lib/security/credentials/fake/fake_credentials.c
|
501
543
|
- src/core/lib/security/credentials/fake/fake_credentials.h
|
502
|
-
- src/core/lib/security/credentials/google_default/
|
503
|
-
- src/core/lib/security/credentials/google_default/credentials_windows.c
|
544
|
+
- src/core/lib/security/credentials/google_default/credentials_generic.c
|
504
545
|
- src/core/lib/security/credentials/google_default/google_default_credentials.c
|
505
546
|
- src/core/lib/security/credentials/google_default/google_default_credentials.h
|
506
547
|
- src/core/lib/security/credentials/iam/iam_credentials.c
|
@@ -519,12 +560,12 @@ files:
|
|
519
560
|
- src/core/lib/security/credentials/ssl/ssl_credentials.h
|
520
561
|
- src/core/lib/security/transport/auth_filters.h
|
521
562
|
- src/core/lib/security/transport/client_auth_filter.c
|
522
|
-
- src/core/lib/security/transport/handshake.c
|
523
|
-
- src/core/lib/security/transport/handshake.h
|
524
563
|
- src/core/lib/security/transport/secure_endpoint.c
|
525
564
|
- src/core/lib/security/transport/secure_endpoint.h
|
526
565
|
- src/core/lib/security/transport/security_connector.c
|
527
566
|
- src/core/lib/security/transport/security_connector.h
|
567
|
+
- src/core/lib/security/transport/security_handshaker.c
|
568
|
+
- src/core/lib/security/transport/security_handshaker.h
|
528
569
|
- src/core/lib/security/transport/server_auth_filter.c
|
529
570
|
- src/core/lib/security/transport/tsi_error.c
|
530
571
|
- src/core/lib/security/transport/tsi_error.h
|
@@ -532,6 +573,13 @@ files:
|
|
532
573
|
- src/core/lib/security/util/b64.h
|
533
574
|
- src/core/lib/security/util/json_util.c
|
534
575
|
- src/core/lib/security/util/json_util.h
|
576
|
+
- src/core/lib/slice/percent_encoding.c
|
577
|
+
- src/core/lib/slice/percent_encoding.h
|
578
|
+
- src/core/lib/slice/slice.c
|
579
|
+
- src/core/lib/slice/slice_buffer.c
|
580
|
+
- src/core/lib/slice/slice_internal.h
|
581
|
+
- src/core/lib/slice/slice_string_helpers.c
|
582
|
+
- src/core/lib/slice/slice_string_helpers.h
|
535
583
|
- src/core/lib/support/alloc.c
|
536
584
|
- src/core/lib/support/avl.c
|
537
585
|
- src/core/lib/support/backoff.c
|
@@ -553,10 +601,10 @@ files:
|
|
553
601
|
- src/core/lib/support/log_linux.c
|
554
602
|
- src/core/lib/support/log_posix.c
|
555
603
|
- src/core/lib/support/log_windows.c
|
604
|
+
- src/core/lib/support/mpscq.c
|
605
|
+
- src/core/lib/support/mpscq.h
|
556
606
|
- src/core/lib/support/murmur_hash.c
|
557
607
|
- src/core/lib/support/murmur_hash.h
|
558
|
-
- src/core/lib/support/slice.c
|
559
|
-
- src/core/lib/support/slice_buffer.c
|
560
608
|
- src/core/lib/support/stack_lockfree.c
|
561
609
|
- src/core/lib/support/stack_lockfree.h
|
562
610
|
- src/core/lib/support/string.c
|
@@ -620,12 +668,20 @@ files:
|
|
620
668
|
- src/core/lib/transport/byte_stream.h
|
621
669
|
- src/core/lib/transport/connectivity_state.c
|
622
670
|
- src/core/lib/transport/connectivity_state.h
|
671
|
+
- src/core/lib/transport/mdstr_hash_table.c
|
672
|
+
- src/core/lib/transport/mdstr_hash_table.h
|
623
673
|
- src/core/lib/transport/metadata.c
|
624
674
|
- src/core/lib/transport/metadata.h
|
625
675
|
- src/core/lib/transport/metadata_batch.c
|
626
676
|
- src/core/lib/transport/metadata_batch.h
|
677
|
+
- src/core/lib/transport/pid_controller.c
|
678
|
+
- src/core/lib/transport/pid_controller.h
|
679
|
+
- src/core/lib/transport/service_config.c
|
680
|
+
- src/core/lib/transport/service_config.h
|
627
681
|
- src/core/lib/transport/static_metadata.c
|
628
682
|
- src/core/lib/transport/static_metadata.h
|
683
|
+
- src/core/lib/transport/timeout_encoding.c
|
684
|
+
- src/core/lib/transport/timeout_encoding.h
|
629
685
|
- src/core/lib/transport/transport.c
|
630
686
|
- src/core/lib/transport/transport.h
|
631
687
|
- src/core/lib/transport/transport_impl.h
|
@@ -664,6 +720,8 @@ files:
|
|
664
720
|
- src/ruby/ext/grpc/rb_channel_credentials.h
|
665
721
|
- src/ruby/ext/grpc/rb_completion_queue.c
|
666
722
|
- src/ruby/ext/grpc/rb_completion_queue.h
|
723
|
+
- src/ruby/ext/grpc/rb_compression_options.c
|
724
|
+
- src/ruby/ext/grpc/rb_compression_options.h
|
667
725
|
- src/ruby/ext/grpc/rb_event_thread.c
|
668
726
|
- src/ruby/ext/grpc/rb_event_thread.h
|
669
727
|
- src/ruby/ext/grpc/rb_grpc.c
|
@@ -708,6 +766,8 @@ files:
|
|
708
766
|
- src/ruby/spec/channel_credentials_spec.rb
|
709
767
|
- src/ruby/spec/channel_spec.rb
|
710
768
|
- src/ruby/spec/client_server_spec.rb
|
769
|
+
- src/ruby/spec/compression_options_spec.rb
|
770
|
+
- src/ruby/spec/error_sanity_spec.rb
|
711
771
|
- src/ruby/spec/generic/active_call_spec.rb
|
712
772
|
- src/ruby/spec/generic/client_stub_spec.rb
|
713
773
|
- src/ruby/spec/generic/rpc_desc_spec.rb
|
@@ -729,7 +789,6 @@ files:
|
|
729
789
|
- third_party/boringssl/crypto/aes/mode_wrappers.c
|
730
790
|
- third_party/boringssl/crypto/asn1/a_bitstr.c
|
731
791
|
- third_party/boringssl/crypto/asn1/a_bool.c
|
732
|
-
- third_party/boringssl/crypto/asn1/a_bytes.c
|
733
792
|
- third_party/boringssl/crypto/asn1/a_d2i_fp.c
|
734
793
|
- third_party/boringssl/crypto/asn1/a_dup.c
|
735
794
|
- third_party/boringssl/crypto/asn1/a_enum.c
|
@@ -749,18 +808,14 @@ files:
|
|
749
808
|
- third_party/boringssl/crypto/asn1/asn1_locl.h
|
750
809
|
- third_party/boringssl/crypto/asn1/asn1_par.c
|
751
810
|
- third_party/boringssl/crypto/asn1/asn_pack.c
|
752
|
-
- third_party/boringssl/crypto/asn1/bio_asn1.c
|
753
|
-
- third_party/boringssl/crypto/asn1/bio_ndef.c
|
754
811
|
- third_party/boringssl/crypto/asn1/f_enum.c
|
755
812
|
- third_party/boringssl/crypto/asn1/f_int.c
|
756
813
|
- third_party/boringssl/crypto/asn1/f_string.c
|
757
814
|
- third_party/boringssl/crypto/asn1/t_bitst.c
|
758
|
-
- third_party/boringssl/crypto/asn1/t_pkey.c
|
759
815
|
- third_party/boringssl/crypto/asn1/tasn_dec.c
|
760
816
|
- third_party/boringssl/crypto/asn1/tasn_enc.c
|
761
817
|
- third_party/boringssl/crypto/asn1/tasn_fre.c
|
762
818
|
- third_party/boringssl/crypto/asn1/tasn_new.c
|
763
|
-
- third_party/boringssl/crypto/asn1/tasn_prn.c
|
764
819
|
- third_party/boringssl/crypto/asn1/tasn_typ.c
|
765
820
|
- third_party/boringssl/crypto/asn1/tasn_utl.c
|
766
821
|
- third_party/boringssl/crypto/asn1/x_bignum.c
|
@@ -792,6 +847,7 @@ files:
|
|
792
847
|
- third_party/boringssl/crypto/bn/internal.h
|
793
848
|
- third_party/boringssl/crypto/bn/kronecker.c
|
794
849
|
- third_party/boringssl/crypto/bn/montgomery.c
|
850
|
+
- third_party/boringssl/crypto/bn/montgomery_inv.c
|
795
851
|
- third_party/boringssl/crypto/bn/mul.c
|
796
852
|
- third_party/boringssl/crypto/bn/prime.c
|
797
853
|
- third_party/boringssl/crypto/bn/random.c
|
@@ -805,8 +861,7 @@ files:
|
|
805
861
|
- third_party/boringssl/crypto/bytestring/cbb.c
|
806
862
|
- third_party/boringssl/crypto/bytestring/cbs.c
|
807
863
|
- third_party/boringssl/crypto/bytestring/internal.h
|
808
|
-
- third_party/boringssl/crypto/chacha/
|
809
|
-
- third_party/boringssl/crypto/chacha/chacha_vec.c
|
864
|
+
- third_party/boringssl/crypto/chacha/chacha.c
|
810
865
|
- third_party/boringssl/crypto/cipher/aead.c
|
811
866
|
- third_party/boringssl/crypto/cipher/cipher.c
|
812
867
|
- third_party/boringssl/crypto/cipher/derive_key.c
|
@@ -824,26 +879,26 @@ files:
|
|
824
879
|
- third_party/boringssl/crypto/conf/conf.c
|
825
880
|
- third_party/boringssl/crypto/conf/conf_def.h
|
826
881
|
- third_party/boringssl/crypto/conf/internal.h
|
882
|
+
- third_party/boringssl/crypto/cpu-aarch64-linux.c
|
883
|
+
- third_party/boringssl/crypto/cpu-arm-linux.c
|
827
884
|
- third_party/boringssl/crypto/cpu-arm.c
|
828
885
|
- third_party/boringssl/crypto/cpu-intel.c
|
886
|
+
- third_party/boringssl/crypto/cpu-ppc64le.c
|
829
887
|
- third_party/boringssl/crypto/crypto.c
|
830
888
|
- third_party/boringssl/crypto/curve25519/curve25519.c
|
831
889
|
- third_party/boringssl/crypto/curve25519/internal.h
|
890
|
+
- third_party/boringssl/crypto/curve25519/spake25519.c
|
832
891
|
- third_party/boringssl/crypto/curve25519/x25519-x86_64.c
|
833
892
|
- third_party/boringssl/crypto/des/des.c
|
834
893
|
- third_party/boringssl/crypto/des/internal.h
|
835
894
|
- third_party/boringssl/crypto/dh/check.c
|
836
895
|
- third_party/boringssl/crypto/dh/dh.c
|
837
896
|
- third_party/boringssl/crypto/dh/dh_asn1.c
|
838
|
-
- third_party/boringssl/crypto/dh/internal.h
|
839
897
|
- third_party/boringssl/crypto/dh/params.c
|
840
898
|
- third_party/boringssl/crypto/digest/digest.c
|
841
899
|
- third_party/boringssl/crypto/digest/digests.c
|
842
900
|
- third_party/boringssl/crypto/digest/internal.h
|
843
901
|
- third_party/boringssl/crypto/digest/md32_common.h
|
844
|
-
- third_party/boringssl/crypto/directory.h
|
845
|
-
- third_party/boringssl/crypto/directory_posix.c
|
846
|
-
- third_party/boringssl/crypto/directory_win.c
|
847
902
|
- third_party/boringssl/crypto/dsa/dsa.c
|
848
903
|
- third_party/boringssl/crypto/dsa/dsa_asn1.c
|
849
904
|
- third_party/boringssl/crypto/ec/ec.c
|
@@ -864,7 +919,6 @@ files:
|
|
864
919
|
- third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c
|
865
920
|
- third_party/boringssl/crypto/engine/engine.c
|
866
921
|
- third_party/boringssl/crypto/err/err.c
|
867
|
-
- third_party/boringssl/crypto/evp/algorithm.c
|
868
922
|
- third_party/boringssl/crypto/evp/digestsign.c
|
869
923
|
- third_party/boringssl/crypto/evp/evp.c
|
870
924
|
- third_party/boringssl/crypto/evp/evp_asn1.c
|
@@ -876,6 +930,7 @@ files:
|
|
876
930
|
- third_party/boringssl/crypto/evp/p_rsa.c
|
877
931
|
- third_party/boringssl/crypto/evp/p_rsa_asn1.c
|
878
932
|
- third_party/boringssl/crypto/evp/pbkdf.c
|
933
|
+
- third_party/boringssl/crypto/evp/print.c
|
879
934
|
- third_party/boringssl/crypto/evp/sign.c
|
880
935
|
- third_party/boringssl/crypto/ex_data.c
|
881
936
|
- third_party/boringssl/crypto/hkdf/hkdf.c
|
@@ -891,6 +946,13 @@ files:
|
|
891
946
|
- third_party/boringssl/crypto/modes/gcm.c
|
892
947
|
- third_party/boringssl/crypto/modes/internal.h
|
893
948
|
- third_party/boringssl/crypto/modes/ofb.c
|
949
|
+
- third_party/boringssl/crypto/newhope/error_correction.c
|
950
|
+
- third_party/boringssl/crypto/newhope/internal.h
|
951
|
+
- third_party/boringssl/crypto/newhope/newhope.c
|
952
|
+
- third_party/boringssl/crypto/newhope/ntt.c
|
953
|
+
- third_party/boringssl/crypto/newhope/poly.c
|
954
|
+
- third_party/boringssl/crypto/newhope/precomp.c
|
955
|
+
- third_party/boringssl/crypto/newhope/reduce.c
|
894
956
|
- third_party/boringssl/crypto/obj/obj.c
|
895
957
|
- third_party/boringssl/crypto/obj/obj_dat.h
|
896
958
|
- third_party/boringssl/crypto/obj/obj_xref.c
|
@@ -908,9 +970,11 @@ files:
|
|
908
970
|
- third_party/boringssl/crypto/pkcs8/p5_pbev2.c
|
909
971
|
- third_party/boringssl/crypto/pkcs8/p8_pkey.c
|
910
972
|
- third_party/boringssl/crypto/pkcs8/pkcs8.c
|
973
|
+
- third_party/boringssl/crypto/poly1305/internal.h
|
911
974
|
- third_party/boringssl/crypto/poly1305/poly1305.c
|
912
975
|
- third_party/boringssl/crypto/poly1305/poly1305_arm.c
|
913
976
|
- third_party/boringssl/crypto/poly1305/poly1305_vec.c
|
977
|
+
- third_party/boringssl/crypto/rand/deterministic.c
|
914
978
|
- third_party/boringssl/crypto/rand/internal.h
|
915
979
|
- third_party/boringssl/crypto/rand/rand.c
|
916
980
|
- third_party/boringssl/crypto/rand/urandom.c
|
@@ -928,8 +992,6 @@ files:
|
|
928
992
|
- third_party/boringssl/crypto/sha/sha256.c
|
929
993
|
- third_party/boringssl/crypto/sha/sha512.c
|
930
994
|
- third_party/boringssl/crypto/stack/stack.c
|
931
|
-
- third_party/boringssl/crypto/test/scoped_types.h
|
932
|
-
- third_party/boringssl/crypto/test/test_util.h
|
933
995
|
- third_party/boringssl/crypto/thread.c
|
934
996
|
- third_party/boringssl/crypto/thread_none.c
|
935
997
|
- third_party/boringssl/crypto/thread_pthread.c
|
@@ -939,12 +1001,15 @@ files:
|
|
939
1001
|
- third_party/boringssl/crypto/x509/a_sign.c
|
940
1002
|
- third_party/boringssl/crypto/x509/a_strex.c
|
941
1003
|
- third_party/boringssl/crypto/x509/a_verify.c
|
1004
|
+
- third_party/boringssl/crypto/x509/algorithm.c
|
942
1005
|
- third_party/boringssl/crypto/x509/asn1_gen.c
|
943
1006
|
- third_party/boringssl/crypto/x509/by_dir.c
|
944
1007
|
- third_party/boringssl/crypto/x509/by_file.c
|
945
1008
|
- third_party/boringssl/crypto/x509/charmap.h
|
946
1009
|
- third_party/boringssl/crypto/x509/i2d_pr.c
|
1010
|
+
- third_party/boringssl/crypto/x509/internal.h
|
947
1011
|
- third_party/boringssl/crypto/x509/pkcs7.c
|
1012
|
+
- third_party/boringssl/crypto/x509/rsa_pss.c
|
948
1013
|
- third_party/boringssl/crypto/x509/t_crl.c
|
949
1014
|
- third_party/boringssl/crypto/x509/t_req.c
|
950
1015
|
- third_party/boringssl/crypto/x509/t_x509.c
|
@@ -1062,10 +1127,12 @@ files:
|
|
1062
1127
|
- third_party/boringssl/include/openssl/md4.h
|
1063
1128
|
- third_party/boringssl/include/openssl/md5.h
|
1064
1129
|
- third_party/boringssl/include/openssl/mem.h
|
1130
|
+
- third_party/boringssl/include/openssl/newhope.h
|
1131
|
+
- third_party/boringssl/include/openssl/nid.h
|
1065
1132
|
- third_party/boringssl/include/openssl/obj.h
|
1066
1133
|
- third_party/boringssl/include/openssl/obj_mac.h
|
1067
1134
|
- third_party/boringssl/include/openssl/objects.h
|
1068
|
-
- third_party/boringssl/include/openssl/
|
1135
|
+
- third_party/boringssl/include/openssl/opensslconf.h
|
1069
1136
|
- third_party/boringssl/include/openssl/opensslv.h
|
1070
1137
|
- third_party/boringssl/include/openssl/ossl_typ.h
|
1071
1138
|
- third_party/boringssl/include/openssl/pem.h
|
@@ -1073,9 +1140,9 @@ files:
|
|
1073
1140
|
- third_party/boringssl/include/openssl/pkcs7.h
|
1074
1141
|
- third_party/boringssl/include/openssl/pkcs8.h
|
1075
1142
|
- third_party/boringssl/include/openssl/poly1305.h
|
1076
|
-
- third_party/boringssl/include/openssl/pqueue.h
|
1077
1143
|
- third_party/boringssl/include/openssl/rand.h
|
1078
1144
|
- third_party/boringssl/include/openssl/rc4.h
|
1145
|
+
- third_party/boringssl/include/openssl/ripemd.h
|
1079
1146
|
- third_party/boringssl/include/openssl/rsa.h
|
1080
1147
|
- third_party/boringssl/include/openssl/safestack.h
|
1081
1148
|
- third_party/boringssl/include/openssl/sha.h
|
@@ -1093,22 +1160,18 @@ files:
|
|
1093
1160
|
- third_party/boringssl/include/openssl/x509v3.h
|
1094
1161
|
- third_party/boringssl/ssl/custom_extensions.c
|
1095
1162
|
- third_party/boringssl/ssl/d1_both.c
|
1096
|
-
- third_party/boringssl/ssl/d1_clnt.c
|
1097
1163
|
- third_party/boringssl/ssl/d1_lib.c
|
1098
|
-
- third_party/boringssl/ssl/d1_meth.c
|
1099
1164
|
- third_party/boringssl/ssl/d1_pkt.c
|
1100
1165
|
- third_party/boringssl/ssl/d1_srtp.c
|
1101
|
-
- third_party/boringssl/ssl/
|
1166
|
+
- third_party/boringssl/ssl/dtls_method.c
|
1102
1167
|
- third_party/boringssl/ssl/dtls_record.c
|
1168
|
+
- third_party/boringssl/ssl/handshake_client.c
|
1169
|
+
- third_party/boringssl/ssl/handshake_server.c
|
1103
1170
|
- third_party/boringssl/ssl/internal.h
|
1104
|
-
- third_party/boringssl/ssl/pqueue/pqueue.c
|
1105
1171
|
- third_party/boringssl/ssl/s3_both.c
|
1106
|
-
- third_party/boringssl/ssl/s3_clnt.c
|
1107
1172
|
- third_party/boringssl/ssl/s3_enc.c
|
1108
1173
|
- third_party/boringssl/ssl/s3_lib.c
|
1109
|
-
- third_party/boringssl/ssl/s3_meth.c
|
1110
1174
|
- third_party/boringssl/ssl/s3_pkt.c
|
1111
|
-
- third_party/boringssl/ssl/s3_srvr.c
|
1112
1175
|
- third_party/boringssl/ssl/ssl_aead_ctx.c
|
1113
1176
|
- third_party/boringssl/ssl/ssl_asn1.c
|
1114
1177
|
- third_party/boringssl/ssl/ssl_buffer.c
|
@@ -1122,10 +1185,11 @@ files:
|
|
1122
1185
|
- third_party/boringssl/ssl/ssl_stat.c
|
1123
1186
|
- third_party/boringssl/ssl/t1_enc.c
|
1124
1187
|
- third_party/boringssl/ssl/t1_lib.c
|
1125
|
-
- third_party/boringssl/ssl/
|
1126
|
-
- third_party/boringssl/ssl/
|
1127
|
-
- third_party/boringssl/ssl/
|
1128
|
-
- third_party/boringssl/ssl/
|
1188
|
+
- third_party/boringssl/ssl/tls13_both.c
|
1189
|
+
- third_party/boringssl/ssl/tls13_client.c
|
1190
|
+
- third_party/boringssl/ssl/tls13_enc.c
|
1191
|
+
- third_party/boringssl/ssl/tls13_server.c
|
1192
|
+
- third_party/boringssl/ssl/tls_method.c
|
1129
1193
|
- third_party/boringssl/ssl/tls_record.c
|
1130
1194
|
- third_party/nanopb/pb.h
|
1131
1195
|
- third_party/nanopb/pb_common.c
|
@@ -1182,7 +1246,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1182
1246
|
version: '0'
|
1183
1247
|
requirements: []
|
1184
1248
|
rubyforge_project:
|
1185
|
-
rubygems_version: 2.
|
1249
|
+
rubygems_version: 2.6.10
|
1186
1250
|
signing_key:
|
1187
1251
|
specification_version: 4
|
1188
1252
|
summary: GRPC system in Ruby
|
@@ -1208,3 +1272,5 @@ test_files:
|
|
1208
1272
|
- src/ruby/spec/channel_credentials_spec.rb
|
1209
1273
|
- src/ruby/spec/call_credentials_spec.rb
|
1210
1274
|
- src/ruby/spec/server_spec.rb
|
1275
|
+
- src/ruby/spec/error_sanity_spec.rb
|
1276
|
+
- src/ruby/spec/compression_options_spec.rb
|