integration: Update go's http2 package URI
This commit is contained in:
parent
8e6b92bdd7
commit
509c515575
|
@ -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
|
written in the `Go programming language <http://golang.org/>`_ and uses
|
||||||
its testing framework. We depend on the following libraries:
|
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/go-nghttp2
|
||||||
* https://github.com/tatsuhiro-t/spdy
|
* https://github.com/tatsuhiro-t/spdy
|
||||||
* golang.org/x/net/websocket
|
|
||||||
|
|
||||||
To download the above packages, after settings ``GOPATH``, run the
|
To download the above packages, after settings ``GOPATH``, run the
|
||||||
following command under ``integration-tests`` directory::
|
following command under ``integration-tests`` directory::
|
||||||
|
|
|
@ -36,7 +36,7 @@ EXTRA_DIST = \
|
||||||
return.rb
|
return.rb
|
||||||
|
|
||||||
itprep-local:
|
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/go-nghttp2
|
||||||
go get -d -v github.com/tatsuhiro-t/spdy
|
go get -d -v github.com/tatsuhiro-t/spdy
|
||||||
go get -d -v golang.org/x/net/websocket
|
go get -d -v golang.org/x/net/websocket
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/bradfitz/http2/hpack"
|
"golang.org/x/net/http2/hpack"
|
||||||
"golang.org/x/net/websocket"
|
"golang.org/x/net/websocket"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
|
@ -3,8 +3,8 @@ package nghttp2
|
||||||
import (
|
import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/bradfitz/http2"
|
"golang.org/x/net/http2"
|
||||||
"github.com/bradfitz/http2/hpack"
|
"golang.org/x/net/http2/hpack"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package nghttp2
|
package nghttp2
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/bradfitz/http2/hpack"
|
"golang.org/x/net/http2/hpack"
|
||||||
"github.com/tatsuhiro-t/spdy"
|
"github.com/tatsuhiro-t/spdy"
|
||||||
"net/http"
|
"net/http"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/bradfitz/http2"
|
"golang.org/x/net/http2"
|
||||||
"github.com/bradfitz/http2/hpack"
|
"golang.org/x/net/http2/hpack"
|
||||||
"github.com/tatsuhiro-t/go-nghttp2"
|
"github.com/tatsuhiro-t/go-nghttp2"
|
||||||
"github.com/tatsuhiro-t/spdy"
|
"github.com/tatsuhiro-t/spdy"
|
||||||
"golang.org/x/net/websocket"
|
"golang.org/x/net/websocket"
|
||||||
|
|
Loading…
Reference in New Issue