integration: Update go's http2 package URI

This commit is contained in:
Tatsuhiro Tsujikawa 2015-10-09 00:08:54 +09:00
parent 8e6b92bdd7
commit 509c515575
6 changed files with 9 additions and 9 deletions

View File

@ -217,10 +217,10 @@ We have the integration tests for the nghttpx proxy server. The tests are
written in the `Go programming language <http://golang.org/>`_ and uses
its testing framework. We depend on the following libraries:
* https://github.com/bradfitz/http2
* golang.org/x/net/http2
* golang.org/x/net/websocket
* https://github.com/tatsuhiro-t/go-nghttp2
* https://github.com/tatsuhiro-t/spdy
* golang.org/x/net/websocket
To download the above packages, after settings ``GOPATH``, run the
following command under ``integration-tests`` directory::

View File

@ -36,7 +36,7 @@ EXTRA_DIST = \
return.rb
itprep-local:
go get -d -v github.com/bradfitz/http2
go get -d -v golang.org/x/net/http2
go get -d -v github.com/tatsuhiro-t/go-nghttp2
go get -d -v github.com/tatsuhiro-t/spdy
go get -d -v golang.org/x/net/websocket

View File

@ -4,7 +4,7 @@ import (
"bufio"
"bytes"
"fmt"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2/hpack"
"golang.org/x/net/websocket"
"io"
"net/http"

View File

@ -3,8 +3,8 @@ package nghttp2
import (
"crypto/tls"
"fmt"
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2"
"golang.org/x/net/http2/hpack"
"io"
"io/ioutil"
"net/http"

View File

@ -1,7 +1,7 @@
package nghttp2
import (
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2/hpack"
"github.com/tatsuhiro-t/spdy"
"net/http"
"testing"

View File

@ -6,8 +6,8 @@ import (
"crypto/tls"
"errors"
"fmt"
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2"
"golang.org/x/net/http2/hpack"
"github.com/tatsuhiro-t/go-nghttp2"
"github.com/tatsuhiro-t/spdy"
"golang.org/x/net/websocket"