1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-13 21:42:58 +03:00

Backport fix for mysql client not using SSl library directly

- Add function mysql_get_ssl_cipher
 - Use function mysql_get_ssl_cipher from mysql
This commit is contained in:
msvensson@neptunus.(none)
2006-04-22 00:48:13 +02:00
parent 26be6ababe
commit 29ace143a1
5 changed files with 26 additions and 3 deletions

View File

@@ -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,