summaryrefslogtreecommitdiff
path: root/lib/header_internal.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2009-12-22 13:25:48 +0200
committerPanu Matilainen <pmatilai@redhat.com>2009-12-22 13:25:48 +0200
commitcef9afbf2ab652e3a8d9f1aa96d517036408d81b (patch)
tree3300579b1b0dfe5186b73f87b0d672f36da99eee /lib/header_internal.h
parenta14d06482a667441b47bdf4a6e76e751b99389ee (diff)
downloadlibrpm-tizen-cef9afbf2ab652e3a8d9f1aa96d517036408d81b.tar.gz
librpm-tizen-cef9afbf2ab652e3a8d9f1aa96d517036408d81b.tar.bz2
librpm-tizen-cef9afbf2ab652e3a8d9f1aa96d517036408d81b.zip
Make header struct really opaque outside header.c
- the low-level stuff in signature.c and package.c need entryInfo_s and indexEntry_s but not the header itself - also move the other defines which have no use outside header.c there
Diffstat (limited to 'lib/header_internal.h')
-rw-r--r--lib/header_internal.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/header_internal.h b/lib/header_internal.h
index d9cb67ecb..cc8b8939c 100644
--- a/lib/header_internal.h
+++ b/lib/header_internal.h
@@ -5,12 +5,8 @@
* \file lib/header_internal.h
*/
-#include <netinet/in.h>
-
#include <rpm/header.h>
-#define INDEX_MALLOC_SIZE 8
-
/** \ingroup header
* Description of tag data.
*/
@@ -25,10 +21,6 @@ struct entryInfo_s {
#define REGION_TAG_TYPE RPM_BIN_TYPE
#define REGION_TAG_COUNT sizeof(struct entryInfo_s)
-#define ENTRY_IS_REGION(_e) \
- (((_e)->info.tag >= HEADER_IMAGE) && ((_e)->info.tag < HEADER_REGIONS))
-#define ENTRY_IN_REGION(_e) ((_e)->info.offset < 0)
-
/** \ingroup header
* A single tag from a Header.
*/
@@ -40,26 +32,6 @@ struct indexEntry_s {
int rdlen; /*!< No. bytes of data in region. */
};
-typedef enum headerFlags_e {
- HEADERFLAG_SORTED = (1 << 0), /*!< Are header entries sorted? */
- HEADERFLAG_ALLOCATED = (1 << 1), /*!< Is 1st header region allocated? */
- HEADERFLAG_LEGACY = (1 << 2), /*!< Header came from legacy source? */
- HEADERFLAG_DEBUG = (1 << 3), /*!< Debug this header? */
-} headerFlags;
-
-/** \ingroup header
- * The Header data structure.
- */
-struct headerToken_s {
- void * blob; /*!< Header region blob. */
- indexEntry index; /*!< Array of tags. */
- int indexUsed; /*!< Current size of tag array. */
- int indexAlloced; /*!< Allocated size of tag array. */
- unsigned int instance; /*!< Rpmdb instance (offset) */
- headerFlags flags;
- int nrefs; /*!< Reference count. */
-};
-
/**
* Sanity check on no. of tags.
* This check imposes a limit of 65K tags, more than enough.