coredns/vendor/google.golang.org/grpc
Miek Gieben 30217a4cb2 Drop caddy from vendor (#700)
* Removed caddy

* new stuff

* Now need to go get caddy

* Duh
2017-06-03 08:27:41 +01:00
..
codes Update vendor with go dep 2017-04-28 09:14:54 -07:00
credentials Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
grpclb Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
grpclog update deps (#686) 2017-06-01 18:11:50 +01:00
internal Update vendor with go dep 2017-04-28 09:14:54 -07:00
keepalive Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
metadata Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
naming Update vendor with go dep 2017-04-28 09:14:54 -07:00
peer Update vendor with go dep 2017-04-28 09:14:54 -07:00
stats Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
status Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
tap Update vendor with go dep 2017-04-28 09:14:54 -07:00
transport Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
.travis.yml Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
backoff.go Update vendor with go dep 2017-04-28 09:14:54 -07:00
backoff_test.go Update vendor with go dep 2017-04-28 09:14:54 -07:00
balancer.go Update vendor with go dep 2017-04-28 09:14:54 -07:00
balancer_test.go Update vendor with go dep 2017-04-28 09:14:54 -07:00
call.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
call_test.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
clientconn.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
clientconn_test.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
codec.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
codec_benchmark_test.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
codec_test.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
codegen.sh Update vendor with go dep 2017-04-28 09:14:54 -07:00
CONTRIBUTING.md Update vendor with go dep 2017-04-28 09:14:54 -07:00
coverage.sh Update vendor with go dep 2017-04-28 09:14:54 -07:00
doc.go Update vendor with go dep 2017-04-28 09:14:54 -07:00
go16.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
go17.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
grpclb.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
interceptor.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
LICENSE Update vendor with go dep 2017-04-28 09:14:54 -07:00
Makefile Update vendor with go dep 2017-04-28 09:14:54 -07:00
PATENTS Update vendor with go dep 2017-04-28 09:14:54 -07:00
proxy.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
proxy_test.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
README.md Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
rpc_util.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
rpc_util_test.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
server.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
server_test.go Update vendor with go dep 2017-04-28 09:14:54 -07:00
stream.go Drop caddy from vendor (#700) 2017-06-03 08:27:41 +01:00
trace.go Update vendor with go dep 2017-04-28 09:14:54 -07:00

gRPC-Go

Build Status GoDoc

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 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 google.golang.org/grpc

Prerequisites

This requires Go 1.6 or later.

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.

Status

GA

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