├── .github ├── ISSUE_TEMPLATE ├── dependabot.yml └── workflows │ ├── dart.yml │ ├── health.yaml │ ├── post_summaries.yaml │ └── publish.yaml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── analysis_options.yaml ├── example ├── README.md ├── googleapis │ ├── .gitignore │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ │ └── logging.dart │ ├── lib │ │ └── src │ │ │ └── generated │ │ │ └── google │ │ │ ├── api │ │ │ ├── label.pb.dart │ │ │ ├── label.pbenum.dart │ │ │ ├── label.pbjson.dart │ │ │ ├── launch_stage.pb.dart │ │ │ ├── launch_stage.pbenum.dart │ │ │ ├── launch_stage.pbjson.dart │ │ │ ├── monitored_resource.pb.dart │ │ │ ├── monitored_resource.pbenum.dart │ │ │ └── monitored_resource.pbjson.dart │ │ │ ├── logging │ │ │ ├── type │ │ │ │ ├── http_request.pb.dart │ │ │ │ ├── http_request.pbenum.dart │ │ │ │ ├── http_request.pbjson.dart │ │ │ │ ├── log_severity.pb.dart │ │ │ │ ├── log_severity.pbenum.dart │ │ │ │ └── log_severity.pbjson.dart │ │ │ └── v2 │ │ │ │ ├── log_entry.pb.dart │ │ │ │ ├── log_entry.pbenum.dart │ │ │ │ ├── log_entry.pbjson.dart │ │ │ │ ├── logging.pb.dart │ │ │ │ ├── logging.pbenum.dart │ │ │ │ ├── logging.pbgrpc.dart │ │ │ │ └── logging.pbjson.dart │ │ │ ├── protobuf │ │ │ ├── any.pb.dart │ │ │ ├── any.pbenum.dart │ │ │ ├── any.pbjson.dart │ │ │ ├── duration.pb.dart │ │ │ ├── duration.pbenum.dart │ │ │ ├── duration.pbjson.dart │ │ │ ├── empty.pb.dart │ │ │ ├── empty.pbenum.dart │ │ │ ├── empty.pbjson.dart │ │ │ ├── struct.pb.dart │ │ │ ├── struct.pbenum.dart │ │ │ ├── struct.pbjson.dart │ │ │ ├── timestamp.pb.dart │ │ │ ├── timestamp.pbenum.dart │ │ │ └── timestamp.pbjson.dart │ │ │ └── rpc │ │ │ ├── status.pb.dart │ │ │ ├── status.pbenum.dart │ │ │ └── status.pbjson.dart │ ├── pubspec.yaml │ └── tool │ │ └── regenerate.sh ├── grpc-web │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── app.dart │ │ └── src │ │ │ └── generated │ │ │ ├── echo.pb.dart │ │ │ ├── echo.pbenum.dart │ │ │ ├── echo.pbgrpc.dart │ │ │ └── echo.pbjson.dart │ ├── protos │ │ └── echo.proto │ ├── pubspec.yaml │ └── web │ │ ├── index.html │ │ └── main.dart ├── helloworld │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ │ ├── client.dart │ │ ├── server.dart │ │ ├── unix_client.dart │ │ └── unix_server.dart │ ├── lib │ │ └── src │ │ │ └── generated │ │ │ ├── helloworld.pb.dart │ │ │ ├── helloworld.pbenum.dart │ │ │ ├── helloworld.pbgrpc.dart │ │ │ └── helloworld.pbjson.dart │ ├── protos │ │ └── helloworld.proto │ └── pubspec.yaml ├── metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ │ ├── client.dart │ │ └── server.dart │ ├── lib │ │ └── src │ │ │ ├── client.dart │ │ │ ├── generated │ │ │ ├── metadata.pb.dart │ │ │ └── metadata.pbgrpc.dart │ │ │ └── server.dart │ ├── protos │ │ └── metadata.proto │ ├── pubspec.yaml │ └── tool │ │ └── regenerate.sh └── route_guide │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ ├── client.dart │ └── server.dart │ ├── data │ └── route_guide_db.json │ ├── lib │ └── src │ │ ├── client.dart │ │ ├── common.dart │ │ ├── generated │ │ ├── route_guide.pb.dart │ │ ├── route_guide.pbenum.dart │ │ ├── route_guide.pbgrpc.dart │ │ └── route_guide.pbjson.dart │ │ └── server.dart │ ├── protos │ └── route_guide.proto │ └── pubspec.yaml ├── interop ├── analysis_options.yaml ├── bin │ ├── client.dart │ └── server.dart ├── ca.pem ├── lib │ └── src │ │ ├── client.dart │ │ └── generated │ │ ├── empty.pb.dart │ │ ├── messages.pb.dart │ │ ├── messages.pbenum.dart │ │ ├── test.pb.dart │ │ └── test.pbgrpc.dart ├── protos │ ├── empty.proto │ ├── messages.proto │ └── test.proto ├── pubspec.yaml ├── server1.key ├── server1.pem └── tool │ └── regenerate.sh ├── lib ├── grpc.dart ├── grpc_connection_interface.dart ├── grpc_or_grpcweb.dart ├── grpc_web.dart ├── service_api.dart └── src │ ├── auth │ ├── auth.dart │ ├── auth_io.dart │ └── rsa.dart │ ├── client │ ├── call.dart │ ├── channel.dart │ ├── client.dart │ ├── client_keepalive.dart │ ├── client_transport_connector.dart │ ├── common.dart │ ├── connection.dart │ ├── grpc_or_grpcweb_channel_grpc.dart │ ├── grpc_or_grpcweb_channel_web.dart │ ├── http2_channel.dart │ ├── http2_connection.dart │ ├── interceptor.dart │ ├── method.dart │ ├── options.dart │ ├── proxy.dart │ ├── query_parameter.dart │ ├── transport │ │ ├── cors.dart │ │ ├── http2_credentials.dart │ │ ├── http2_transport.dart │ │ ├── transport.dart │ │ ├── web_streams.dart │ │ └── xhr_transport.dart │ └── web_channel.dart │ ├── generated │ └── google │ │ ├── protobuf │ │ ├── any.pb.dart │ │ ├── any.pbenum.dart │ │ ├── any.pbjson.dart │ │ ├── duration.pb.dart │ │ ├── duration.pbenum.dart │ │ └── duration.pbjson.dart │ │ └── rpc │ │ ├── error_details.pb.dart │ │ ├── error_details.pbenum.dart │ │ ├── error_details.pbjson.dart │ │ ├── status.pb.dart │ │ ├── status.pbenum.dart │ │ └── status.pbjson.dart │ ├── protos │ └── google │ │ ├── protobuf │ │ ├── any.proto │ │ └── duration.proto │ │ └── rpc │ │ ├── error_details.proto │ │ └── status.proto │ ├── server │ ├── call.dart │ ├── handler.dart │ ├── interceptor.dart │ ├── server.dart │ ├── server_keepalive.dart │ └── service.dart │ └── shared │ ├── api.dart │ ├── codec.dart │ ├── codec │ ├── codec_all.dart │ ├── codec_io.dart │ └── codec_web.dart │ ├── codec_registry.dart │ ├── io_bits │ ├── io_bits.dart │ ├── io_bits_io.dart │ └── io_bits_web.dart │ ├── message.dart │ ├── profiler.dart │ ├── security.dart │ ├── status.dart │ ├── streams.dart │ └── timeout.dart ├── pubspec.yaml ├── test ├── client_certificate_test.dart ├── client_handles_bad_connections_test.dart ├── client_tests │ ├── call_test.dart │ ├── client_interceptor_test.dart │ ├── client_keepalive_manager_test.dart │ ├── client_keepalive_manager_test.mocks.dart │ ├── client_test.dart │ ├── client_transport_connector_test.dart │ ├── client_xhr_transport_test.dart │ ├── grpc_or_grpcweb_channel_grpc_test.dart │ └── grpc_or_grpcweb_channel_web_test.dart ├── common.dart ├── connection_server_test.dart ├── data │ ├── README.md │ ├── certstore.p12 │ ├── localhost.crt │ └── localhost.key ├── grpc_compression_flag_test.dart ├── grpc_web_decoding_test.dart ├── grpc_web_server.dart ├── grpc_web_test.dart ├── keepalive_test.dart ├── options_test.dart ├── proxy_secure_test.dart ├── proxy_test.dart ├── round_trip_test.dart ├── server_cancellation_test.dart ├── server_handles_broken_connection_test.dart ├── server_keepalive_manager_test.dart ├── server_test.dart ├── shared_tests │ └── codec_registry_test.dart ├── src │ ├── client_utils.dart │ ├── client_utils.mocks.dart │ ├── generated │ │ ├── echo.pb.dart │ │ ├── echo.pbenum.dart │ │ ├── echo.pbgrpc.dart │ │ └── echo.pbjson.dart │ ├── protos │ │ └── echo.proto │ ├── server_utils.dart │ └── utils.dart ├── stream_test.dart ├── timeline_test.dart ├── timeout_test.dart └── tools │ ├── http2_client.dart │ └── http2_server.dart └── tool ├── regenerate.sh └── test_all.sh /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.github/workflows/health.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/.github/workflows/health.yaml -------------------------------------------------------------------------------- /.github/workflows/post_summaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/.github/workflows/post_summaries.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/SECURITY.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/README.md -------------------------------------------------------------------------------- /example/googleapis/.gitignore: -------------------------------------------------------------------------------- 1 | logging-service-account.json 2 | -------------------------------------------------------------------------------- /example/googleapis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/README.md -------------------------------------------------------------------------------- /example/googleapis/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options.yaml 2 | -------------------------------------------------------------------------------- /example/googleapis/bin/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/bin/logging.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/label.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/label.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/label.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/label.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/label.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/label.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/launch_stage.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/launch_stage.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/launch_stage.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/launch_stage.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/launch_stage.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/launch_stage.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/monitored_resource.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/monitored_resource.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/monitored_resource.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/monitored_resource.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/api/monitored_resource.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/api/monitored_resource.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/type/http_request.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/type/http_request.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/type/http_request.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/type/http_request.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/type/http_request.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/type/http_request.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/type/log_severity.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/type/log_severity.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/type/log_severity.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/type/log_severity.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/type/log_severity.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/type/log_severity.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/v2/log_entry.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/v2/log_entry.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/v2/log_entry.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/v2/log_entry.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/v2/log_entry.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/v2/log_entry.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/v2/logging.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/v2/logging.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/v2/logging.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/v2/logging.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/v2/logging.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/v2/logging.pbgrpc.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/logging/v2/logging.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/logging/v2/logging.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/any.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/any.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/any.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/any.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/any.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/any.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/duration.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/duration.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/duration.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/duration.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/duration.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/duration.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/empty.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/empty.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/empty.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/empty.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/empty.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/empty.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/struct.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/struct.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/struct.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/struct.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/struct.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/struct.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/timestamp.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/timestamp.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/timestamp.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/timestamp.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/protobuf/timestamp.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/protobuf/timestamp.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/rpc/status.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/rpc/status.pb.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/rpc/status.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/rpc/status.pbenum.dart -------------------------------------------------------------------------------- /example/googleapis/lib/src/generated/google/rpc/status.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/lib/src/generated/google/rpc/status.pbjson.dart -------------------------------------------------------------------------------- /example/googleapis/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/pubspec.yaml -------------------------------------------------------------------------------- /example/googleapis/tool/regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/googleapis/tool/regenerate.sh -------------------------------------------------------------------------------- /example/grpc-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/README.md -------------------------------------------------------------------------------- /example/grpc-web/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/grpc-web/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/lib/app.dart -------------------------------------------------------------------------------- /example/grpc-web/lib/src/generated/echo.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/lib/src/generated/echo.pb.dart -------------------------------------------------------------------------------- /example/grpc-web/lib/src/generated/echo.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/lib/src/generated/echo.pbenum.dart -------------------------------------------------------------------------------- /example/grpc-web/lib/src/generated/echo.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/lib/src/generated/echo.pbgrpc.dart -------------------------------------------------------------------------------- /example/grpc-web/lib/src/generated/echo.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/lib/src/generated/echo.pbjson.dart -------------------------------------------------------------------------------- /example/grpc-web/protos/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/protos/echo.proto -------------------------------------------------------------------------------- /example/grpc-web/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/pubspec.yaml -------------------------------------------------------------------------------- /example/grpc-web/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/web/index.html -------------------------------------------------------------------------------- /example/grpc-web/web/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/grpc-web/web/main.dart -------------------------------------------------------------------------------- /example/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/README.md -------------------------------------------------------------------------------- /example/helloworld/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/helloworld/bin/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/bin/client.dart -------------------------------------------------------------------------------- /example/helloworld/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/bin/server.dart -------------------------------------------------------------------------------- /example/helloworld/bin/unix_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/bin/unix_client.dart -------------------------------------------------------------------------------- /example/helloworld/bin/unix_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/bin/unix_server.dart -------------------------------------------------------------------------------- /example/helloworld/lib/src/generated/helloworld.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/lib/src/generated/helloworld.pb.dart -------------------------------------------------------------------------------- /example/helloworld/lib/src/generated/helloworld.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/lib/src/generated/helloworld.pbenum.dart -------------------------------------------------------------------------------- /example/helloworld/lib/src/generated/helloworld.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/lib/src/generated/helloworld.pbgrpc.dart -------------------------------------------------------------------------------- /example/helloworld/lib/src/generated/helloworld.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/lib/src/generated/helloworld.pbjson.dart -------------------------------------------------------------------------------- /example/helloworld/protos/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/protos/helloworld.proto -------------------------------------------------------------------------------- /example/helloworld/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/helloworld/pubspec.yaml -------------------------------------------------------------------------------- /example/metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/README.md -------------------------------------------------------------------------------- /example/metadata/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/metadata/bin/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/bin/client.dart -------------------------------------------------------------------------------- /example/metadata/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/bin/server.dart -------------------------------------------------------------------------------- /example/metadata/lib/src/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/lib/src/client.dart -------------------------------------------------------------------------------- /example/metadata/lib/src/generated/metadata.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/lib/src/generated/metadata.pb.dart -------------------------------------------------------------------------------- /example/metadata/lib/src/generated/metadata.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/lib/src/generated/metadata.pbgrpc.dart -------------------------------------------------------------------------------- /example/metadata/lib/src/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/lib/src/server.dart -------------------------------------------------------------------------------- /example/metadata/protos/metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/protos/metadata.proto -------------------------------------------------------------------------------- /example/metadata/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/pubspec.yaml -------------------------------------------------------------------------------- /example/metadata/tool/regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/metadata/tool/regenerate.sh -------------------------------------------------------------------------------- /example/route_guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/README.md -------------------------------------------------------------------------------- /example/route_guide/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/route_guide/bin/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/bin/client.dart -------------------------------------------------------------------------------- /example/route_guide/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/bin/server.dart -------------------------------------------------------------------------------- /example/route_guide/data/route_guide_db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/data/route_guide_db.json -------------------------------------------------------------------------------- /example/route_guide/lib/src/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/lib/src/client.dart -------------------------------------------------------------------------------- /example/route_guide/lib/src/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/lib/src/common.dart -------------------------------------------------------------------------------- /example/route_guide/lib/src/generated/route_guide.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/lib/src/generated/route_guide.pb.dart -------------------------------------------------------------------------------- /example/route_guide/lib/src/generated/route_guide.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/lib/src/generated/route_guide.pbenum.dart -------------------------------------------------------------------------------- /example/route_guide/lib/src/generated/route_guide.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/lib/src/generated/route_guide.pbgrpc.dart -------------------------------------------------------------------------------- /example/route_guide/lib/src/generated/route_guide.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/lib/src/generated/route_guide.pbjson.dart -------------------------------------------------------------------------------- /example/route_guide/lib/src/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/lib/src/server.dart -------------------------------------------------------------------------------- /example/route_guide/protos/route_guide.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/protos/route_guide.proto -------------------------------------------------------------------------------- /example/route_guide/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/example/route_guide/pubspec.yaml -------------------------------------------------------------------------------- /interop/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /interop/bin/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/bin/client.dart -------------------------------------------------------------------------------- /interop/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/bin/server.dart -------------------------------------------------------------------------------- /interop/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/ca.pem -------------------------------------------------------------------------------- /interop/lib/src/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/lib/src/client.dart -------------------------------------------------------------------------------- /interop/lib/src/generated/empty.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/lib/src/generated/empty.pb.dart -------------------------------------------------------------------------------- /interop/lib/src/generated/messages.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/lib/src/generated/messages.pb.dart -------------------------------------------------------------------------------- /interop/lib/src/generated/messages.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/lib/src/generated/messages.pbenum.dart -------------------------------------------------------------------------------- /interop/lib/src/generated/test.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/lib/src/generated/test.pb.dart -------------------------------------------------------------------------------- /interop/lib/src/generated/test.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/lib/src/generated/test.pbgrpc.dart -------------------------------------------------------------------------------- /interop/protos/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/protos/empty.proto -------------------------------------------------------------------------------- /interop/protos/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/protos/messages.proto -------------------------------------------------------------------------------- /interop/protos/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/protos/test.proto -------------------------------------------------------------------------------- /interop/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/pubspec.yaml -------------------------------------------------------------------------------- /interop/server1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/server1.key -------------------------------------------------------------------------------- /interop/server1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/server1.pem -------------------------------------------------------------------------------- /interop/tool/regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/interop/tool/regenerate.sh -------------------------------------------------------------------------------- /lib/grpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/grpc.dart -------------------------------------------------------------------------------- /lib/grpc_connection_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/grpc_connection_interface.dart -------------------------------------------------------------------------------- /lib/grpc_or_grpcweb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/grpc_or_grpcweb.dart -------------------------------------------------------------------------------- /lib/grpc_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/grpc_web.dart -------------------------------------------------------------------------------- /lib/service_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/service_api.dart -------------------------------------------------------------------------------- /lib/src/auth/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/auth/auth.dart -------------------------------------------------------------------------------- /lib/src/auth/auth_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/auth/auth_io.dart -------------------------------------------------------------------------------- /lib/src/auth/rsa.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/auth/rsa.dart -------------------------------------------------------------------------------- /lib/src/client/call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/call.dart -------------------------------------------------------------------------------- /lib/src/client/channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/channel.dart -------------------------------------------------------------------------------- /lib/src/client/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/client.dart -------------------------------------------------------------------------------- /lib/src/client/client_keepalive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/client_keepalive.dart -------------------------------------------------------------------------------- /lib/src/client/client_transport_connector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/client_transport_connector.dart -------------------------------------------------------------------------------- /lib/src/client/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/common.dart -------------------------------------------------------------------------------- /lib/src/client/connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/connection.dart -------------------------------------------------------------------------------- /lib/src/client/grpc_or_grpcweb_channel_grpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/grpc_or_grpcweb_channel_grpc.dart -------------------------------------------------------------------------------- /lib/src/client/grpc_or_grpcweb_channel_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/grpc_or_grpcweb_channel_web.dart -------------------------------------------------------------------------------- /lib/src/client/http2_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/http2_channel.dart -------------------------------------------------------------------------------- /lib/src/client/http2_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/http2_connection.dart -------------------------------------------------------------------------------- /lib/src/client/interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/interceptor.dart -------------------------------------------------------------------------------- /lib/src/client/method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/method.dart -------------------------------------------------------------------------------- /lib/src/client/options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/options.dart -------------------------------------------------------------------------------- /lib/src/client/proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/proxy.dart -------------------------------------------------------------------------------- /lib/src/client/query_parameter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/query_parameter.dart -------------------------------------------------------------------------------- /lib/src/client/transport/cors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/transport/cors.dart -------------------------------------------------------------------------------- /lib/src/client/transport/http2_credentials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/transport/http2_credentials.dart -------------------------------------------------------------------------------- /lib/src/client/transport/http2_transport.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/transport/http2_transport.dart -------------------------------------------------------------------------------- /lib/src/client/transport/transport.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/transport/transport.dart -------------------------------------------------------------------------------- /lib/src/client/transport/web_streams.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/transport/web_streams.dart -------------------------------------------------------------------------------- /lib/src/client/transport/xhr_transport.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/transport/xhr_transport.dart -------------------------------------------------------------------------------- /lib/src/client/web_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/client/web_channel.dart -------------------------------------------------------------------------------- /lib/src/generated/google/protobuf/any.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/protobuf/any.pb.dart -------------------------------------------------------------------------------- /lib/src/generated/google/protobuf/any.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/protobuf/any.pbenum.dart -------------------------------------------------------------------------------- /lib/src/generated/google/protobuf/any.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/protobuf/any.pbjson.dart -------------------------------------------------------------------------------- /lib/src/generated/google/protobuf/duration.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/protobuf/duration.pb.dart -------------------------------------------------------------------------------- /lib/src/generated/google/protobuf/duration.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/protobuf/duration.pbenum.dart -------------------------------------------------------------------------------- /lib/src/generated/google/protobuf/duration.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/protobuf/duration.pbjson.dart -------------------------------------------------------------------------------- /lib/src/generated/google/rpc/error_details.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/rpc/error_details.pb.dart -------------------------------------------------------------------------------- /lib/src/generated/google/rpc/error_details.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/rpc/error_details.pbenum.dart -------------------------------------------------------------------------------- /lib/src/generated/google/rpc/error_details.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/rpc/error_details.pbjson.dart -------------------------------------------------------------------------------- /lib/src/generated/google/rpc/status.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/rpc/status.pb.dart -------------------------------------------------------------------------------- /lib/src/generated/google/rpc/status.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/rpc/status.pbenum.dart -------------------------------------------------------------------------------- /lib/src/generated/google/rpc/status.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/generated/google/rpc/status.pbjson.dart -------------------------------------------------------------------------------- /lib/src/protos/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/protos/google/protobuf/any.proto -------------------------------------------------------------------------------- /lib/src/protos/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/protos/google/protobuf/duration.proto -------------------------------------------------------------------------------- /lib/src/protos/google/rpc/error_details.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/protos/google/rpc/error_details.proto -------------------------------------------------------------------------------- /lib/src/protos/google/rpc/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/protos/google/rpc/status.proto -------------------------------------------------------------------------------- /lib/src/server/call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/server/call.dart -------------------------------------------------------------------------------- /lib/src/server/handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/server/handler.dart -------------------------------------------------------------------------------- /lib/src/server/interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/server/interceptor.dart -------------------------------------------------------------------------------- /lib/src/server/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/server/server.dart -------------------------------------------------------------------------------- /lib/src/server/server_keepalive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/server/server_keepalive.dart -------------------------------------------------------------------------------- /lib/src/server/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/server/service.dart -------------------------------------------------------------------------------- /lib/src/shared/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/api.dart -------------------------------------------------------------------------------- /lib/src/shared/codec.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/codec.dart -------------------------------------------------------------------------------- /lib/src/shared/codec/codec_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/codec/codec_all.dart -------------------------------------------------------------------------------- /lib/src/shared/codec/codec_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/codec/codec_io.dart -------------------------------------------------------------------------------- /lib/src/shared/codec/codec_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/codec/codec_web.dart -------------------------------------------------------------------------------- /lib/src/shared/codec_registry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/codec_registry.dart -------------------------------------------------------------------------------- /lib/src/shared/io_bits/io_bits.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/io_bits/io_bits.dart -------------------------------------------------------------------------------- /lib/src/shared/io_bits/io_bits_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/io_bits/io_bits_io.dart -------------------------------------------------------------------------------- /lib/src/shared/io_bits/io_bits_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/io_bits/io_bits_web.dart -------------------------------------------------------------------------------- /lib/src/shared/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/message.dart -------------------------------------------------------------------------------- /lib/src/shared/profiler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/profiler.dart -------------------------------------------------------------------------------- /lib/src/shared/security.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/security.dart -------------------------------------------------------------------------------- /lib/src/shared/status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/status.dart -------------------------------------------------------------------------------- /lib/src/shared/streams.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/streams.dart -------------------------------------------------------------------------------- /lib/src/shared/timeout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/lib/src/shared/timeout.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/client_certificate_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_certificate_test.dart -------------------------------------------------------------------------------- /test/client_handles_bad_connections_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_handles_bad_connections_test.dart -------------------------------------------------------------------------------- /test/client_tests/call_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/call_test.dart -------------------------------------------------------------------------------- /test/client_tests/client_interceptor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/client_interceptor_test.dart -------------------------------------------------------------------------------- /test/client_tests/client_keepalive_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/client_keepalive_manager_test.dart -------------------------------------------------------------------------------- /test/client_tests/client_keepalive_manager_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/client_keepalive_manager_test.mocks.dart -------------------------------------------------------------------------------- /test/client_tests/client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/client_test.dart -------------------------------------------------------------------------------- /test/client_tests/client_transport_connector_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/client_transport_connector_test.dart -------------------------------------------------------------------------------- /test/client_tests/client_xhr_transport_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/client_xhr_transport_test.dart -------------------------------------------------------------------------------- /test/client_tests/grpc_or_grpcweb_channel_grpc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/grpc_or_grpcweb_channel_grpc_test.dart -------------------------------------------------------------------------------- /test/client_tests/grpc_or_grpcweb_channel_web_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/client_tests/grpc_or_grpcweb_channel_web_test.dart -------------------------------------------------------------------------------- /test/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/common.dart -------------------------------------------------------------------------------- /test/connection_server_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/connection_server_test.dart -------------------------------------------------------------------------------- /test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/data/README.md -------------------------------------------------------------------------------- /test/data/certstore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/data/certstore.p12 -------------------------------------------------------------------------------- /test/data/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/data/localhost.crt -------------------------------------------------------------------------------- /test/data/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/data/localhost.key -------------------------------------------------------------------------------- /test/grpc_compression_flag_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/grpc_compression_flag_test.dart -------------------------------------------------------------------------------- /test/grpc_web_decoding_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/grpc_web_decoding_test.dart -------------------------------------------------------------------------------- /test/grpc_web_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/grpc_web_server.dart -------------------------------------------------------------------------------- /test/grpc_web_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/grpc_web_test.dart -------------------------------------------------------------------------------- /test/keepalive_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/keepalive_test.dart -------------------------------------------------------------------------------- /test/options_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/options_test.dart -------------------------------------------------------------------------------- /test/proxy_secure_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/proxy_secure_test.dart -------------------------------------------------------------------------------- /test/proxy_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/proxy_test.dart -------------------------------------------------------------------------------- /test/round_trip_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/round_trip_test.dart -------------------------------------------------------------------------------- /test/server_cancellation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/server_cancellation_test.dart -------------------------------------------------------------------------------- /test/server_handles_broken_connection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/server_handles_broken_connection_test.dart -------------------------------------------------------------------------------- /test/server_keepalive_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/server_keepalive_manager_test.dart -------------------------------------------------------------------------------- /test/server_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/server_test.dart -------------------------------------------------------------------------------- /test/shared_tests/codec_registry_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/shared_tests/codec_registry_test.dart -------------------------------------------------------------------------------- /test/src/client_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/client_utils.dart -------------------------------------------------------------------------------- /test/src/client_utils.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/client_utils.mocks.dart -------------------------------------------------------------------------------- /test/src/generated/echo.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/generated/echo.pb.dart -------------------------------------------------------------------------------- /test/src/generated/echo.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/generated/echo.pbenum.dart -------------------------------------------------------------------------------- /test/src/generated/echo.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/generated/echo.pbgrpc.dart -------------------------------------------------------------------------------- /test/src/generated/echo.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/generated/echo.pbjson.dart -------------------------------------------------------------------------------- /test/src/protos/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/protos/echo.proto -------------------------------------------------------------------------------- /test/src/server_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/server_utils.dart -------------------------------------------------------------------------------- /test/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/src/utils.dart -------------------------------------------------------------------------------- /test/stream_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/stream_test.dart -------------------------------------------------------------------------------- /test/timeline_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/timeline_test.dart -------------------------------------------------------------------------------- /test/timeout_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/timeout_test.dart -------------------------------------------------------------------------------- /test/tools/http2_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/tools/http2_client.dart -------------------------------------------------------------------------------- /test/tools/http2_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/test/tools/http2_server.dart -------------------------------------------------------------------------------- /tool/regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/tool/regenerate.sh -------------------------------------------------------------------------------- /tool/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-dart/HEAD/tool/test_all.sh --------------------------------------------------------------------------------