summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormsvensson@neptunus.(none) <>2006-04-22 00:48:13 +0200
committermsvensson@neptunus.(none) <>2006-04-22 00:48:13 +0200
commit29ace143a1cad2ef38d29816b8c3ff17632c298c (patch)
tree2eb5e609d509b73d85a94e2edde0ca1a50800db2 /include
parent26be6ababe97a8c2374d0ca5af41c43ac575a7c3 (diff)
downloadmariadb-git-29ace143a1cad2ef38d29816b8c3ff17632c298c.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
Diffstat (limited to 'include')
-rw-r--r--include/mysql.h1
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,