summaryrefslogtreecommitdiff
path: root/include/errmsg.h
diff options
context:
space:
mode:
authorunknown <gluh@gluh.(none)>2002-11-05 12:05:58 +0400
committerunknown <gluh@gluh.(none)>2002-11-05 12:05:58 +0400
commit69a5dd196cc89c690b3531b75bb77f9c4a048b50 (patch)
treee27e1d7b216164535ab3100467fa0dea7d08a146 /include/errmsg.h
parentf6b9a33fb67c9143bda91e2fbdef6272c6d2e209 (diff)
downloadmariadb-git-69a5dd196cc89c690b3531b75bb77f9c4a048b50.tar.gz
Error code for ssl connection
Fix bug when server hang(with SSL, with modified libmysql) Add options master-ssl-capath and master-ssl-cipher Add some error checking(SSL) include/errmsg.h: Error code for SSL connection include/violite.h: Change return value in sslaccept Remove unused variable open_ libmysql/errmsg.c: Add client side descriptive message when ssl handshake fail libmysql/libmysql.c: Add ssl error code Add proper error checking sql/mysqld.cc: Add options master-ssl-capath and master-ssl-cipher sql/sql_parse.cc: Add error checking after sslaccept vio/viossl.c: Add ssl handshake error cheking vio/viosslfactories.c: Change error description when using wrong key or certificate
Diffstat (limited to 'include/errmsg.h')
-rw-r--r--include/errmsg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/errmsg.h b/include/errmsg.h
index 76a57f47611..842d53c9303 100644
--- a/include/errmsg.h
+++ b/include/errmsg.h
@@ -61,3 +61,4 @@ extern const char *client_errors[]; /* Error messages */
#define CR_PROBE_SLAVE_HOSTS 2023
#define CR_PROBE_SLAVE_CONNECT 2024
#define CR_PROBE_MASTER_CONNECT 2025
+#define CR_SSL_CONNECTION_ERROR 2026