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:
Tatsuhiro Tsujikawa 2015-05-23 00:01:45 +09:00
parent f0379aa428
commit 1c06cfd29f
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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"
)

View File

@ -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"