integration: Use our own copy of golang spdy package
Official golang spdy package is done. We made a copy of it until we drop spdy support.
This commit is contained in:
parent
f0379aa428
commit
1c06cfd29f
|
@ -37,7 +37,7 @@ EXTRA_DIST = \
|
|||
itprep:
|
||||
go get -d -v github.com/bradfitz/http2
|
||||
go get -d -v github.com/tatsuhiro-t/go-nghttp2
|
||||
go get -d -v golang.org/x/net/spdy
|
||||
go get -d -v github.com/tatsuhiro-t/spdy
|
||||
|
||||
it:
|
||||
sh setenv go test -v
|
||||
|
|
|
@ -2,7 +2,7 @@ package nghttp2
|
|||
|
||||
import (
|
||||
"github.com/bradfitz/http2/hpack"
|
||||
"golang.org/x/net/spdy"
|
||||
"github.com/tatsuhiro-t/spdy"
|
||||
"net/http"
|
||||
"testing"
|
||||
)
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"github.com/bradfitz/http2"
|
||||
"github.com/bradfitz/http2/hpack"
|
||||
"github.com/tatsuhiro-t/go-nghttp2"
|
||||
"golang.org/x/net/spdy"
|
||||
"github.com/tatsuhiro-t/spdy"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net"
|
||||
|
|
Loading…
Reference in New Issue