Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
mysql /
Delete
Unzip
Name
Size
Permission
Date
Action
client_plugin.h
8.21
KB
-rw-r--r--
2026-04-08 00:27
errmsg.h
5.65
KB
-rw-r--r--
2026-04-08 00:27
field_types.h
3.01
KB
-rw-r--r--
2026-04-08 00:27
my_command.h
4.36
KB
-rw-r--r--
2026-04-08 00:27
my_compress.h
3.61
KB
-rw-r--r--
2026-04-08 00:27
my_list.h
2.07
KB
-rw-r--r--
2026-04-08 00:27
mysql.h
32.81
KB
-rw-r--r--
2026-04-08 00:27
mysql_com.h
36.51
KB
-rw-r--r--
2026-04-08 00:27
mysql_time.h
3.52
KB
-rw-r--r--
2026-04-08 00:27
mysql_version.h
1.1
KB
-rw-r--r--
2026-06-20 20:54
mysqld_error.h
257.29
KB
-rw-r--r--
2026-06-20 20:54
mysqlx_ername.h
7.08
KB
-rw-r--r--
2026-06-20 20:54
mysqlx_error.h
4.06
KB
-rw-r--r--
2026-06-20 20:54
mysqlx_version.h
1.81
KB
-rw-r--r--
2026-06-20 20:54
plugin_auth_common.h
6.75
KB
-rw-r--r--
2026-04-08 00:27
udf_registration_types.h
3.78
KB
-rw-r--r--
2026-04-08 00:27
Save
Rename
/* * Copyright (c) 2016, 2026, 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 designed to work 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 either included with * the program or referenced in the documentation. * * 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 */ /* Version numbers for X Plugin */ #ifndef _MYSQLX_VERSION_H_ #define _MYSQLX_VERSION_H_ #define MYSQLX_PLUGIN_VERSION_MAJOR 1 #define MYSQLX_PLUGIN_VERSION_MINOR 0 #define MYSQLX_PLUGIN_VERSION_PATCH 2 #define MYSQLX_PLUGIN_NAME "mysqlx" #define MYSQLX_STATUS_VARIABLE_PREFIX(NAME) "Mysqlx_" NAME #define MYSQLX_SYSTEM_VARIABLE_PREFIX(NAME) "mysqlx_" NAME #define MYSQLX_TCP_PORT 33060U #define MYSQLX_UNIX_ADDR "/var/run/mysqld/mysqlx.sock" #define MYSQLX_PLUGIN_VERSION ( (MYSQLX_PLUGIN_VERSION_MAJOR << 8) | MYSQLX_PLUGIN_VERSION_MINOR ) #define MYSQLX_PLUGIN_VERSION_STRING "1.0.2" #endif // _MYSQLX_VERSION_H_