mirror of
https://github.com/golang/go
synced 2024-11-25 01:37:57 -07:00
net: fix dialing google test
R=golang-dev, bradfitz, rsc CC=golang-dev https://golang.org/cl/5573060
This commit is contained in:
parent
dbce368ef9
commit
9acea02de2
@ -19,7 +19,7 @@ var ipv6 = flag.Bool("ipv6", false, "assume ipv6 tunnel is present")
|
|||||||
// fd is already connected to the destination, port 80.
|
// fd is already connected to the destination, port 80.
|
||||||
// Run an HTTP request to fetch the appropriate page.
|
// Run an HTTP request to fetch the appropriate page.
|
||||||
func fetchGoogle(t *testing.T, fd Conn, network, addr string) {
|
func fetchGoogle(t *testing.T, fd Conn, network, addr string) {
|
||||||
req := []byte("GET /intl/en/privacy/ HTTP/1.0\r\nHost: www.google.com\r\n\r\n")
|
req := []byte("GET /robots.txt HTTP/1.0\r\nHost: www.google.com\r\n\r\n")
|
||||||
n, err := fd.Write(req)
|
n, err := fd.Write(req)
|
||||||
|
|
||||||
buf := make([]byte, 1000)
|
buf := make([]byte, 1000)
|
||||||
|
Loading…
Reference in New Issue
Block a user