2001-12-06 13:10:51 +01:00
|
|
|
/* Copyright (C) 2000 MySQL AB
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-07-31 21:29:14 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-12-06 13:10:51 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_OPENSSL
|
Bug #1039: tmpdir and datadir not available via @@ system variable syntax
Bug #19606: ssl variables are not displayed in show variables
Bug #19616: log_queries_not_using_indexes is not listed in show variables
Make basedir, datadir, tmpdir, log_queries_not_using_indexes, ssl_ca,
ssl_capath, ssl_cert, ssl_cipher, and ssl_key all available both from
SHOW VARIABLES and as @@variables.
As a side-effect of this change, log_queries_not_using_indexes can
be changed at runtime (but only globally, not per-connection).
2006-05-09 01:38:45 +02:00
|
|
|
#ifdef SSL_VARS_NOT_STATIC
|
|
|
|
#define SSL_STATIC
|
|
|
|
#else
|
|
|
|
#define SSL_STATIC static
|
|
|
|
#endif
|
|
|
|
SSL_STATIC my_bool opt_use_ssl = 0;
|
|
|
|
SSL_STATIC char *opt_ssl_ca = 0;
|
|
|
|
SSL_STATIC char *opt_ssl_capath = 0;
|
|
|
|
SSL_STATIC char *opt_ssl_cert = 0;
|
|
|
|
SSL_STATIC char *opt_ssl_cipher = 0;
|
|
|
|
SSL_STATIC char *opt_ssl_key = 0;
|
2006-04-18 17:58:27 +02:00
|
|
|
#ifdef MYSQL_CLIENT
|
2006-05-20 01:17:24 +02:00
|
|
|
SSL_STATIC my_bool opt_ssl_verify_server_cert= 0;
|
2006-04-18 17:58:27 +02:00
|
|
|
#endif
|
2000-07-31 21:29:14 +02:00
|
|
|
#endif
|