From 2a0c9e4026d3f8e1f5bcfc9e00319ba4515f0b2f Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Sun, 14 Aug 2011 14:42:53 -0400 Subject: [PATCH] [ticket/9297] Adjust comment - IPv6 is needed for IPv6 connections to work. Looks like IPv6-encapsulated IPv4 addresses do not actually work if the host has no IPv6 connectivity. PHPBB3-9297 --- tests/network/ftp_fsock_test.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/network/ftp_fsock_test.php b/tests/network/ftp_fsock_test.php index b801ae4037..cfffe8fd67 100644 --- a/tests/network/ftp_fsock_test.php +++ b/tests/network/ftp_fsock_test.php @@ -45,11 +45,9 @@ class phpbb_ftp_fsock_test extends phpbb_test_case { $o = $this->get_object($hostname); $result = $o->_init(); - // PHP can connect to IPv6 addresses which are IPv6-encapsulated - // IPv4 addresses on systems that don't have IPv6 connectivity, - // provided that PHP was built with IPv6 support. - // If this test fails on such an IPv6-encapsulated IPv4 address, - // check whether you disabled IPv6 support in your PHP. + // This test may fail on IPv6 addresses if IPv6 support is + // not available. PHP must be compiled with IPv6 support enabled, + // and your operating system must be configured for IPv6 as well. if ($result !== true) { $this->markTestSkipped("Failed to connect to $hostname: $result");