Switch from github.com/bradfitz/http2 to golang.org/x/net/http2.

The latter is now the official HTTP2 package for Go.
This commit is contained in:
David Symonds
2015-09-24 18:12:31 +10:00
parent 326b94b90e
commit eb3bd654cd
5 changed files with 12 additions and 12 deletions

View File

@ -37,7 +37,7 @@ import (
"fmt" "fmt"
"sync" "sync"
"github.com/bradfitz/http2" "golang.org/x/net/http2"
) )
const ( const (

View File

@ -43,9 +43,9 @@ import (
"sync" "sync"
"time" "time"
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/context" "golang.org/x/net/context"
"golang.org/x/net/http2"
"golang.org/x/net/http2/hpack"
"google.golang.org/grpc/codes" "google.golang.org/grpc/codes"
"google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials"
"google.golang.org/grpc/grpclog" "google.golang.org/grpc/grpclog"

View File

@ -42,9 +42,9 @@ import (
"strconv" "strconv"
"sync" "sync"
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/context" "golang.org/x/net/context"
"golang.org/x/net/http2"
"golang.org/x/net/http2/hpack"
"google.golang.org/grpc/codes" "google.golang.org/grpc/codes"
"google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials"
"google.golang.org/grpc/grpclog" "google.golang.org/grpc/grpclog"

View File

@ -43,8 +43,8 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/bradfitz/http2" "golang.org/x/net/http2"
"github.com/bradfitz/http2/hpack" "golang.org/x/net/http2/hpack"
"google.golang.org/grpc/codes" "google.golang.org/grpc/codes"
"google.golang.org/grpc/grpclog" "google.golang.org/grpc/grpclog"
"google.golang.org/grpc/metadata" "google.golang.org/grpc/metadata"
@ -143,10 +143,10 @@ func newHPACKDecoder() *hpackDecoder {
case "content-type": case "content-type":
// TODO(zhaoq): Tentatively disable the check until a bug is fixed. // TODO(zhaoq): Tentatively disable the check until a bug is fixed.
/* /*
if !strings.Contains(f.Value, "application/grpc") { if !strings.Contains(f.Value, "application/grpc") {
d.err = StreamErrorf(codes.FailedPrecondition, "transport: received the unexpected header") d.err = StreamErrorf(codes.FailedPrecondition, "transport: received the unexpected header")
return return
} }
*/ */
case "grpc-status": case "grpc-status":
code, err := strconv.Atoi(f.Value) code, err := strconv.Atoi(f.Value)

View File

@ -44,8 +44,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/bradfitz/http2"
"golang.org/x/net/context" "golang.org/x/net/context"
"golang.org/x/net/http2"
"google.golang.org/grpc/codes" "google.golang.org/grpc/codes"
) )