1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/vendor/google.golang.org/grpc
Ian Campbell 379557a958 Update grpc to v1.3.0 and bump protobuf bindings.
and update some dependent packages.

We would like to keep moby/moby and swarmkit somewhat in sync here and
https://github.com/docker/swarmkit/pull/2229 proposes a similar bump to
swarmkit, needed due to https://github.com/docker/swarmkit/pull/1965 which
pulls in containerd which uses some newer features of the grpc package.

Signed-off-by: Ian Campbell <ian.campbell@docker.com>
2017-06-08 14:34:23 +01:00
..
codes
credentials Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
grpclb/grpc_lb_v1 Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
grpclog
health/grpc_health_v1 Vendor swarmkit, containerd, and related dependencies 2017-01-23 17:51:14 -08:00
internal
keepalive Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
metadata Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
naming
peer
stats Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
status Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
tap Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
transport Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
backoff.go Vendor swarmkit, containerd, and related dependencies 2017-01-23 17:51:14 -08:00
balancer.go Vendor swarmkit, containerd, and related dependencies 2017-01-23 17:51:14 -08:00
call.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
clientconn.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
codec.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
doc.go
go16.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
go17.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
grpclb.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
interceptor.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
LICENSE
PATENTS
proxy.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
README.md Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
rpc_util.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
server.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
stream.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
trace.go

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