diff options
Diffstat (limited to 'scramble_wlw.h')
-rw-r--r-- | scramble_wlw.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scramble_wlw.h b/scramble_wlw.h new file mode 100644 index 0000000..099d271 --- /dev/null +++ b/scramble_wlw.h @@ -0,0 +1,16 @@ +#ifndef _SCRAMBLE_WLW_H_ +#define _SCRAMBLE_WLW_H_ + +#include <stdint.h> +#include <netinet/in.h> + +typedef uint32_t (*scrambler_ip4_t)(uint32_t, int); +typedef void (*scrambler_ip6_t)(struct in6_addr *, int); + +void scramble_wlw_init(const char *, scrambler_ip4_t s4, scrambler_ip6_t); +void scramble_wlw_clear(); + +uint32_t scramble_wlw_v4(uint32_t, int); +void scramble_wlw_v6(struct in6_addr *, int); + +#endif /* _SCRAMBLE_WLW_H */ |