MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
have_ipv4_mapped.inc
1 # Check if ipv4 mapped to ipv6 is available.
2 --disable_query_log
3 --disable_abort_on_error
4 connect (checkcon123456789,::FFFF:127.0.0.1,root,,test);
5 if($mysql_errno)
6 {
7 skip wrong IP;
8 }
9 connection default;
10 disconnect checkcon123456789;
11 --enable_abort_on_error
12 --enable_query_log
13 # end check
14