mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
14 lines
289 B
PHP
14 lines
289 B
PHP
# Check if ipv4 mapped to ipv6 is available.
|
|
--disable_query_log
|
|
--disable_abort_on_error
|
|
connect (checkcon123456789,::FFFF:127.0.0.1,root,,test);
|
|
if($mysql_errno)
|
|
{
|
|
skip wrong IP;
|
|
}
|
|
connection default;
|
|
disconnect checkcon123456789;
|
|
--enable_abort_on_error
|
|
--enable_query_log
|
|
# end check
|
|
|