Commit 509c5155 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

integration: Update go's http2 package URI

parent 8e6b92bd
......@@ -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::
......
......@@ -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
......
......@@ -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"
......
......@@ -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"
......
package nghttp2
import (
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2/hpack"
"github.com/tatsuhiro-t/spdy"
"net/http"
"testing"
......
......@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment