MCPcopy Create free account
hub / github.com/MJx0/KittyMemoryEx / kitty_soinfo_t

Class kitty_soinfo_t

KittyMemoryEx/KittyScanner.hpp:149–165  ·  view source on GitHub ↗

* @brief Structure to hold info of linker soinfo */

Source from the content-addressed store, hash-verified

147 * @brief Structure to hold info of linker soinfo
148 */
149struct kitty_soinfo_t
150{
151 uintptr_t ptr = 0;
152 uintptr_t base = 0;
153 size_t size = 0;
154 uintptr_t phdr = 0;
155 size_t phnum = 0;
156 uintptr_t dyn = 0;
157 uintptr_t strtab = 0;
158 uintptr_t symtab = 0;
159 size_t strsz = 0;
160 uintptr_t bias = 0;
161 uintptr_t next = 0;
162 uint16_t e_machine = 0;
163 std::string path;
164 std::string realpath;
165};
166
167/**
168 * @brief Enum class representing the type of ELF file to scan for.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected