OXIESEC PANEL
- Current Dir:
/
/
usr
/
include
/
mysql
Server IP: 103.185.75.71
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/29/2025 11:45:31 AM
rwxr-xr-x
📄
errmsg.h
5.65 KB
09/24/2025 11:00:44 AM
rw-r--r--
📄
field_types.h
3.01 KB
09/24/2025 11:00:44 AM
rw-r--r--
📄
my_command.h
4.36 KB
09/24/2025 11:00:44 AM
rw-r--r--
📄
my_compress.h
3.61 KB
09/24/2025 11:00:44 AM
rw-r--r--
📄
my_list.h
2.07 KB
09/24/2025 11:00:44 AM
rw-r--r--
📁
mysql
-
12/27/2025 09:20:24 AM
rwxr-xr-x
📄
mysql.h
32.81 KB
09/24/2025 11:00:44 AM
rw-r--r--
📄
mysql_com.h
36.51 KB
09/24/2025 11:00:44 AM
rw-r--r--
📄
mysql_time.h
3.52 KB
09/24/2025 11:00:44 AM
rw-r--r--
📄
mysql_version.h
1.11 KB
09/24/2025 02:05:52 PM
rw-r--r--
📄
mysqld_error.h
256.82 KB
09/24/2025 02:08:11 PM
rw-r--r--
📄
mysqlx_ername.h
7.08 KB
09/24/2025 02:05:52 PM
rw-r--r--
📄
mysqlx_error.h
4.06 KB
09/24/2025 02:05:52 PM
rw-r--r--
📄
mysqlx_version.h
1.81 KB
09/24/2025 02:05:52 PM
rw-r--r--
Editing: mysqlx_version.h
Close
/* * Copyright (c) 2016, 2025, 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_