Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
include /
server /
[ HOME SHELL ]
Name
Size
Permission
Action
mysql
[ DIR ]
drwxr-xr-x
private
[ DIR ]
drwxr-xr-x
big_endian.h
4.4
KB
-rw-r--r--
byte_order_generic.h
5.12
KB
-rw-r--r--
byte_order_generic_x86_64.h
4.03
KB
-rw-r--r--
byte_order_generic_x86.h
4.18
KB
-rw-r--r--
decimal.h
4.56
KB
-rw-r--r--
errmsg.h
4.31
KB
-rw-r--r--
handler_ername.h
4.39
KB
-rw-r--r--
handler_state.h
758
B
-rw-r--r--
json_lib.h
13.42
KB
-rw-r--r--
keycache.h
8.62
KB
-rw-r--r--
little_endian.h
3.49
KB
-rw-r--r--
ma_dyncol.h
7.85
KB
-rw-r--r--
mariadb_capi_rename.h
3.09
KB
-rw-r--r--
m_ctype.h
49.1
KB
-rw-r--r--
m_string.h
9.44
KB
-rw-r--r--
my_alloca.h
1.42
KB
-rw-r--r--
my_alloc.h
2
KB
-rw-r--r--
my_attribute.h
2.2
KB
-rw-r--r--
my_byteorder.h
1.98
KB
-rw-r--r--
my_compiler.h
5.11
KB
-rw-r--r--
my_config.h
14.34
KB
-rw-r--r--
my_dbug.h
9.6
KB
-rw-r--r--
my_decimal_limits.h
2.03
KB
-rw-r--r--
my_dir.h
3.8
KB
-rw-r--r--
my_getopt.h
5.52
KB
-rw-r--r--
my_global.h
33.08
KB
-rw-r--r--
my_list.h
1.47
KB
-rw-r--r--
my_net.h
1.98
KB
-rw-r--r--
my_pthread.h
27.22
KB
-rw-r--r--
mysql_com.h
29.05
KB
-rw-r--r--
mysql_com_server.h
1.28
KB
-rw-r--r--
mysqld_ername.h
122.35
KB
-rw-r--r--
mysqld_error.h
45.93
KB
-rw-r--r--
mysql_embed.h
1.1
KB
-rw-r--r--
mysql.h
38.79
KB
-rw-r--r--
mysql_time.h
2.36
KB
-rw-r--r--
mysql_version.h
1.27
KB
-rw-r--r--
my_sys.h
42.17
KB
-rw-r--r--
my_valgrind.h
4.16
KB
-rw-r--r--
my_xml.h
2.77
KB
-rw-r--r--
pack.h
1.08
KB
-rw-r--r--
sql_common.h
5.4
KB
-rw-r--r--
sql_state.h
14.55
KB
-rw-r--r--
sslopt-case.h
1.38
KB
-rw-r--r--
sslopt-longopts.h
2.65
KB
-rw-r--r--
sslopt-vars.h
1.37
KB
-rw-r--r--
typelib.h
2.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mysql_com_server.h
/* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. 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 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-1335 USA */ /* Definitions private to the server, used in the networking layer to notify specific events. */ #ifndef _mysql_com_server_h #define _mysql_com_server_h struct st_net_server; typedef void (*before_header_callback_fn) (struct st_net *net, void *user_data, size_t count); typedef void (*after_header_callback_fn) (struct st_net *net, void *user_data, size_t count, my_bool rc); struct st_net_server { before_header_callback_fn m_before_header; after_header_callback_fn m_after_header; void *m_user_data; }; typedef struct st_net_server NET_SERVER; #endif
Close