diff options
author | Johannes Schlüter <johannes@php.net> | 2012-10-31 16:54:11 +0100 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2012-10-31 16:54:11 +0100 |
commit | 44b1a07d851c267bb0c0c47857629ef3f790215a (patch) | |
tree | 66b125d6869015adfe1e1afcc3503f8f599108dd /ext/pdo_mysql/php_pdo_mysql_int.h | |
parent | a0a34f5bcaf1b3d7b567a7d6646cfb1f75156092 (diff) | |
download | php-git-44b1a07d851c267bb0c0c47857629ef3f790215a.tar.gz |
Allow setting SHA256 auth public key as option
Diffstat (limited to 'ext/pdo_mysql/php_pdo_mysql_int.h')
-rw-r--r-- | ext/pdo_mysql/php_pdo_mysql_int.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/pdo_mysql/php_pdo_mysql_int.h b/ext/pdo_mysql/php_pdo_mysql_int.h index 0b6d7752d3..32cf039152 100644 --- a/ext/pdo_mysql/php_pdo_mysql_int.h +++ b/ext/pdo_mysql/php_pdo_mysql_int.h @@ -170,7 +170,10 @@ enum { PDO_MYSQL_ATTR_SSL_CERT, PDO_MYSQL_ATTR_SSL_CA, PDO_MYSQL_ATTR_SSL_CAPATH, - PDO_MYSQL_ATTR_SSL_CIPHER + PDO_MYSQL_ATTR_SSL_CIPHER, +#if MYSQL_VERSION_ID > 50605 || defined(MYSQLI_USE_MYSQLND) + PDO_MYSQL_ATTR_SERVER_PUBLIC_KEY +#endif }; #endif |