blob: 8f5a32b9752ff7c9a80b9793292e1536e74994f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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;
#endif
|