diff options
author | unknown <msvensson@neptunus.(none)> | 2006-04-22 00:48:13 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-04-22 00:48:13 +0200 |
commit | 98a2008fd247c996c0c53cb69ac92ddc1118b109 (patch) | |
tree | 2eb5e609d509b73d85a94e2edde0ca1a50800db2 /include | |
parent | a66fc918e954b00f3f9981e8b260ce50aeccf230 (diff) | |
download | mariadb-git-98a2008fd247c996c0c53cb69ac92ddc1118b109.tar.gz |
Backport fix for mysql client not using SSl library directly
- Add function mysql_get_ssl_cipher
- Use function mysql_get_ssl_cipher from mysql
client/mysql.cc:
Backport fix for mysql client not using SSl library directly
include/mysql.h:
Backport fix for mysql client not using SSl library directly
libmysql/libmysql.def:
Backport fix for mysql client not using SSl library directly
libmysqld/libmysqld.def:
Backport fix for mysql client not using SSl library directly
sql-common/client.c:
Backport fix for mysql client not using SSl library directly
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysql.h b/include/mysql.h index 925a4525378..6217ce631b5 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -409,6 +409,7 @@ MYSQL * STDCALL mysql_init(MYSQL *mysql); my_bool STDCALL mysql_ssl_set(MYSQL *mysql, const char *key, const char *cert, const char *ca, const char *capath, const char *cipher); +const char * STDCALL mysql_get_ssl_cipher(MYSQL *mysql); my_bool STDCALL mysql_change_user(MYSQL *mysql, const char *user, const char *passwd, const char *db); MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host, |