mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix for bug#49234 method not found ssl_set
Patch was tested and compiles on Windows. (Thanks Kalle)
This commit is contained in:
parent
2404c4c84f
commit
dd9fc198ce
16 changed files with 339 additions and 66 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue