Go to file
openharmony_ci f1cf33fa89
!83 fix CVE-2023-44487
Merge pull request !83 from wenlong_12/master
2024-08-01 06:54:23 +00:00
backport-Ignore-Connection-Aborted-errors-on-accept-29318.patch fix CVE-2023-4785 2023-09-26 11:26:00 +08:00
backport-iomgr-EventEngine-Improve-server-handling-o.patch fix CVE-2023-4785 2023-09-26 11:26:00 +08:00
BUILD.gn fix CVE-2023-44487 2024-08-01 11:52:02 +08:00
bundle.json bundle.json的inner_kits去掉header字段 2024-07-19 02:37:27 +00:00
fix-CVE-2023-33953-add-header-limit.patch fix CVE-2023-33953 2024-03-19 19:08:23 +08:00
fix-CVE-2023-44487.patch fix CVE-2023-44487 2024-08-01 11:52:02 +08:00
grpc-1.41.1.tar.gz grpc版本升级到1.41.1 2023-04-23 17:21:03 +08:00
grpc.spec fix CVE-2023-33953 2024-03-19 19:08:23 +08:00
install.sh fix CVE-2023-44487 2024-08-01 11:52:02 +08:00
libgrpc.map 修复grpc 独立编译 2024-05-21 07:49:11 +00:00
libgrpcxx.map Change version-script to fix llvm15 2023-02-28 22:06:33 +08:00
LICENSE update OpenHarmony 2.0 Canary 2021-06-02 02:28:56 +08:00
lock_file.lock fix compail fail 2023-06-06 10:33:25 +08:00
OAT.xml grpc增加oat 文件 2023-04-25 18:59:53 +08:00
README.md update OpenHarmony 2.0 Canary 2021-06-02 02:28:56 +08:00
README.OpenSource 升级grpc 到1.41.1-7 的版本。 2024-05-16 07:38:26 +00:00
src_core_lib_debug.patch grpc版本升级到1.41.1 2023-04-23 17:21:03 +08:00
src_core_lib_iomgr.patch grpc版本升级到1.41.1 2023-04-23 17:21:03 +08:00

gRPC - An RPC library and framework

gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. gRPC enables client and server applications to communicate transparently, and simplifies the building of connected systems.

Homepage: grpc.io
Mailing List: grpc-io@googlegroups.com

Join the chat at https://gitter.im/grpc/grpc

To start using gRPC

To maximize usability, gRPC supports the standard method for adding dependencies to a user's chosen language (if there is one). In most languages, the gRPC runtime comes as a package available in a user's language package manager.

For instructions on how to use the language-specific gRPC runtime for a project, please refer to these documents

  • C++: follow the instructions under the src/cpp directory
  • C#: NuGet package Grpc
  • Dart: pub package grpc
  • Go: go get google.golang.org/grpc
  • Java: Use JARs from Maven Central Repository
  • Kotlin: Use JARs from Maven Central Repository
  • Node: npm install grpc
  • Objective-C: Add gRPC-ProtoRPC dependency to podspec
  • PHP: pecl install grpc
  • Python: pip install grpcio
  • Ruby: gem install grpc
  • WebJS: follow the grpc-web instructions

Per-language quickstart guides and tutorials can be found in the documentation section on the grpc.io website. Code examples are available in the examples directory.

Precompiled bleeding-edge package builds of gRPC master branch's HEAD are uploaded daily to packages.grpc.io.

To start developing gRPC

Contributions are welcome!

Please read How to contribute which will guide you through the entire workflow of how to build the source code, how to run the tests, and how to contribute changes to the gRPC codebase. The "How to contribute" document also contains info on how the contribution process works and contains best practices for creating contributions.

Troubleshooting

Sometimes things go wrong. Please check out the Troubleshooting guide if you are experiencing issues with gRPC.

Performance

See the Performance dashboard for performance numbers of master branch daily builds.

Concepts

See gRPC Concepts

About This Repository

This repository contains source code for gRPC libraries implemented in multiple languages written on top of a shared C core library src/core.

Libraries in different languages may be in various states of development. We are seeking contributions for all of these libraries:

Language Source
Shared C [core library] src/core
C++ src/cpp
Ruby src/ruby
Python src/python
PHP src/php
C# (core library based) src/csharp
Objective-C src/objective-c
Language Source repo
Java grpc-java
Kotlin grpc-kotlin
Go grpc-go
NodeJS grpc-node
WebJS grpc-web
Dart grpc-dart
.NET (pure C# impl.) grpc-dotnet