Fix for bug#49234 method not found ssl_set

Patch was tested and compiles on Windows. (Thanks Kalle)
This commit is contained in:
Andrey Hristov 2010-04-15 11:01:30 +00:00
parent 2404c4c84f
commit dd9fc198ce
16 changed files with 339 additions and 66 deletions

View file

@ -107,6 +107,12 @@ PHP_MINFO_FUNCTION(mysqlnd)
"supported");
#else
"not supported");
#endif
php_info_print_table_row(2, "SSL",
#ifdef MYSQLND_SSL_SUPPORTED
"supported");
#else
"not supported");
#endif
snprintf(buf, sizeof(buf), "%ld", MYSQLND_G(net_cmd_buffer_size));
php_info_print_table_row(2, "Command buffer size", buf);