Reviewers:
golang-dev_googlegroups.com,
Message:
Hello
golan...@googlegroups.com (cc:
golan...@googlegroups.com),
I'd like you to review this change to
https://code.google.com/p/go
Description:
net: fix protocol number for IPv6 test
The protocol number of ICMP for IPv6 is 58, not 1.
Please review this at
http://codereview.appspot.com/6810093/
Affected files:
M src/pkg/net/ipraw_test.go
Index: src/pkg/net/ipraw_test.go
===================================================================
--- a/src/pkg/net/ipraw_test.go
+++ b/src/pkg/net/ipraw_test.go
@@ -21,7 +21,7 @@
ipv6 bool // test with underlying AF_INET6 socket
}{
{"ip4:icmp", "", "127.0.0.1", false},
- {"ip6:icmp", "", "::1", true},
+ {"ip6:ipv6-icmp", "", "::1", true},
}
func TestICMP(t *testing.T) {