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.172
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 : baby_steps.h
/* * $Id$ */ #ifndef BABY_STEPS_H #define BABY_STEPS_H #ifdef __cplusplus extern "C" { #endif #include <net-snmp/agent/agent_handler.h> /* * Flags for baby step modes */ #define BABY_STEP_NONE 0 #define BABY_STEP_PRE_REQUEST (0x1 << 1) #define BABY_STEP_OBJECT_LOOKUP (0x1 << 2) #ifndef NETSNMP_NO_WRITE_SUPPORT #define BABY_STEP_CHECK_VALUE (0x1 << 3) #define BABY_STEP_ROW_CREATE (0x1 << 4) #define BABY_STEP_UNDO_SETUP (0x1 << 5) #define BABY_STEP_SET_VALUE (0x1 << 6) #define BABY_STEP_CHECK_CONSISTENCY (0x1 << 7) #define BABY_STEP_UNDO_SET (0x1 << 8) #define BABY_STEP_COMMIT (0x1 << 9) #define BABY_STEP_UNDO_COMMIT (0x1 << 10) #define BABY_STEP_IRREVERSIBLE_COMMIT (0x1 << 11) #define BABY_STEP_UNDO_CLEANUP (0x1 << 12) #endif /* NETSNMP_NO_WRITE_SUPPORT */ #define BABY_STEP_POST_REQUEST (0x1 << 13) #define BABY_STEP_ALL (0xffffffff) #ifndef NETSNMP_NO_WRITE_SUPPORT #define BABY_STEP_CHECK_OBJECT BABY_STEP_CHECK_VALUE #define BABY_STEP_SET_VALUES BABY_STEP_SET_VALUE #define BABY_STEP_UNDO_SETS BABY_STEP_UNDO_SET #endif /* NETSNMP_NO_WRITE_SUPPORT */ /** @name baby_steps * * This helper expands the original net-snmp set modes into the newer, finer * grained modes. * * @{ */ typedef struct netsnmp_baby_steps_modes_s { /** Number of handlers whose myvoid pointer points at this object. */ int refcnt; u_int registered; u_int completed; } netsnmp_baby_steps_modes; void netsnmp_baby_steps_init(void); netsnmp_mib_handler *netsnmp_baby_steps_handler_get(u_long modes); /** @} */ /** @name access_multiplexer * * This helper calls individual access methods based on the mode. All * access methods share the same handler, and the same myvoid pointer. * If you need individual myvoid pointers, check out the multiplexer * handler (though it currently only works for traditional modes). * * @{ */ /** @struct netsnmp_mib_handler_access_methods * Defines the access methods to be called by the access_multiplexer helper */ typedef struct netsnmp_baby_steps_access_methods_s { /* * baby step modes */ Netsnmp_Node_Handler *pre_request; Netsnmp_Node_Handler *object_lookup; Netsnmp_Node_Handler *get_values; #ifndef NETSNMP_NO_WRITE_SUPPORT Netsnmp_Node_Handler *object_syntax_checks; Netsnmp_Node_Handler *row_creation; Netsnmp_Node_Handler *undo_setup; Netsnmp_Node_Handler *set_values; Netsnmp_Node_Handler *consistency_checks; Netsnmp_Node_Handler *commit; Netsnmp_Node_Handler *undo_sets; Netsnmp_Node_Handler *undo_cleanup; Netsnmp_Node_Handler *undo_commit; Netsnmp_Node_Handler *irreversible_commit; #endif /* NETSNMP_NO_WRITE_SUPPORT */ Netsnmp_Node_Handler *post_request; void *my_access_void; } netsnmp_baby_steps_access_methods; netsnmp_mib_handler * netsnmp_baby_steps_access_multiplexer_get( netsnmp_baby_steps_access_methods *); int netsnmp_baby_step_mode2flag( u_int mode ); /** @} */ /** backwards compatability. don't use in new code */ #define netsnmp_get_baby_steps_handler netsnmp_baby_steps_handler_get #define netsnmp_init_baby_steps_helper netsnmp_baby_steps_handler_init #ifdef __cplusplus } #endif #endif /* baby_steps */
Close