Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
mysql /
Delete
Unzip
Name
Size
Permission
Date
Action
mysql
[ DIR ]
drwxr-xr-x
2026-04-21 08:42
errmsg.h
5.65
KB
-rw-r--r--
2026-04-07 15:27
field_types.h
3.01
KB
-rw-r--r--
2026-04-07 15:27
my_command.h
4.36
KB
-rw-r--r--
2026-04-07 15:27
my_compress.h
3.61
KB
-rw-r--r--
2026-04-07 15:27
my_list.h
2.07
KB
-rw-r--r--
2026-04-07 15:27
mysql.h
32.81
KB
-rw-r--r--
2026-04-07 15:27
mysql_com.h
36.51
KB
-rw-r--r--
2026-04-07 15:27
mysql_time.h
3.52
KB
-rw-r--r--
2026-04-07 15:27
mysql_version.h
1.11
KB
-rw-r--r--
2026-04-07 17:25
mysqld_error.h
257.29
KB
-rw-r--r--
2026-04-07 17:28
mysqlx_ername.h
7.08
KB
-rw-r--r--
2026-04-07 17:25
mysqlx_error.h
4.06
KB
-rw-r--r--
2026-04-07 17:25
mysqlx_version.h
1.81
KB
-rw-r--r--
2026-04-07 17:25
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_