Skip to content

Commit

Permalink
Fix IPv6 test
Browse files Browse the repository at this point in the history
  • Loading branch information
rs committed Jan 21, 2023
1 parent 3bd9731 commit 963aef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func main() {

func hasIPv6() bool {
fmt.Println("Testing IPv6 connectivity")
c, err := net.Dial("tcp", "[2a00:1450:4007:80a::2013]:80")
c, err := net.Dial("tcp", "ipv6.test-ipv6.is:80")
if c != nil {
c.Close()
}
Expand Down

0 comments on commit 963aef5

Please sign in to comment.