Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
runtime /
transport /
[ HOME SHELL ]
Name
Size
Permission
Action
control.c
22.29
KB
-rw-r--r--
control.h
1.11
KB
-rw-r--r--
debugfs.c
1.71
KB
-rw-r--r--
procfs.c
4.44
KB
-rw-r--r--
relay_compat.h
536
B
-rw-r--r--
relay_v2.c
11.77
KB
-rw-r--r--
relayfs.c
4.81
KB
-rw-r--r--
relayfs.h
609
B
-rw-r--r--
ring_buffer.c
19.58
KB
-rw-r--r--
symbols.c
15.61
KB
-rw-r--r--
transport.c
21.77
KB
-rw-r--r--
transport.h
3.38
KB
-rw-r--r--
transport_msgs.h
5.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : control.h
/* -*- linux-c -*- * * control channel header * Copyright (C) 2009-2018 Red Hat Inc. * * This file is part of systemtap, and is free software. You can * redistribute it and/or modify it under the terms of the GNU General * Public License (GPL); either version 2, or (at your option) any * later version. */ #ifndef _CONTROL_H_ #define _CONTROL_H_ #include <linux/spinlock.h> #include <linux/list.h> #include "../stp_helper_lock.h" static struct list_head _stp_ctl_ready_q; static stp_spinlock_t _stp_ctl_ready_lock; static wait_queue_head_t _stp_ctl_wq; struct _stp_buffer { struct list_head list; int len; int type; char buf[STP_CTL_BUFFER_SIZE]; }; static struct file_operations _stp_ctl_fops_cmd; static int _stp_ctl_send(int type, void *data, unsigned len); static int _stp_ctl_send_notify(int type, void *data, unsigned len); static int _stp_ctl_write_fs(int type, void *data, unsigned len); static int _stp_register_ctl_channel(void); static void _stp_unregister_ctl_channel(void); static int _stp_register_ctl_channel_fs(void); static void _stp_unregister_ctl_channel_fs(void); #endif /* _CONTROL_H_ */
Close