mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
6 lines
153 B
PHP
6 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');
|