cloudflared-mirror/vendor/google.golang.org/grpc
Areg Harutyunyan 0468866626 TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
..
balancer TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
codes TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
connectivity TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
credentials TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
encoding TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
grpclog TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
internal TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
keepalive TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
metadata TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
naming TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
peer TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
resolver TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
stats TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
status TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
tap TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
transport TUN-813: Clean up cloudflared dependencies 2018-07-24 18:07:02 -05:00
.travis.yml TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
AUTHORS TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
CONTRIBUTING.md TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
LICENSE TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
Makefile TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
README.md TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
backoff.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
balancer.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
balancer_conn_wrappers.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
balancer_v1_wrapper.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
call.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
clientconn.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
codec.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
codegen.sh TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
doc.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
envconfig.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
go16.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
go17.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
interceptor.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
picker_wrapper.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
pickfirst.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
proxy.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
resolver_conn_wrapper.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
rpc_util.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
server.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
service_config.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
stickiness_linkedmap.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
stream.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
trace.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
version.go TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00
vet.sh TUN-528: Move cloudflared into a separate repo 2018-07-19 15:02:24 -05:00

README.md

gRPC-Go

Build Status GoDoc GoReportCard

The Go implementation of gRPC: A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the gRPC Quick Start: Go guide.

Installation

To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:

$ go get -u google.golang.org/grpc

Prerequisites

This requires Go 1.6 or later. Go 1.7 will be required soon.

Constraints

The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the list, you need a discussion with gRPC-Go authors and consultants.

Documentation

See API documentation for package and API descriptions and find examples in the examples directory.

Performance

See the current benchmarks for some of the languages supported in this dashboard.

Status

General Availability Google Cloud Platform Launch Stages.

FAQ

Compiling error, undefined: grpc.SupportPackageIsVersion

Please update proto package, gRPC package and rebuild the proto files:

  • go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
  • go get -u google.golang.org/grpc
  • protoc --go_out=plugins=grpc:. *.proto