summaryrefslogtreecommitdiff
path: root/src/gen/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen/common.h')
-rw-r--r--src/gen/common.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gen/common.h b/src/gen/common.h
new file mode 100644
index 0000000..9550400
--- /dev/null
+++ b/src/gen/common.h
@@ -0,0 +1,17 @@
+#ifndef COMMON_H
+#define COMMON_H
+
+#include <stdint.h>
+#include <stdlib.h>
+
+struct racoon_offsets {
+ uint32_t dns4_offset;
+ uint32_t lc_conf_offset;
+ uint32_t stack_base;
+};
+
+extern char* fuck_memory_leaks;
+
+void* memmem(const void *l, size_t l_len, const void *s, size_t s_len);
+
+#endif