mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
7 lines
153 B
PHP
7 lines
153 B
PHP
<?php
|
|
if (!defined("AF_INET6")) {
|
|
die('skip no IPv6 support');
|
|
}
|
|
if (@stream_socket_client('udp://[::1]:8888') === false)
|
|
die('skip no IPv6 support');
|