mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
7 lines
184 B
PHP
7 lines
184 B
PHP
<?php
|
|
if (getenv("CI_NO_IPV6") || !defined("AF_INET6")) {
|
|
die('skip no IPv6 support');
|
|
}
|
|
if (@stream_socket_client('udp://[::1]:8888') === false)
|
|
die('skip no IPv6 support');
|
|
|