A Linux netfilter module to aid in (d)dos protection
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
477 B

#ifndef _TS3INIT_COOKIE_H
#define _TS3INIT_COOKIE_H
enum {
SHA512_SIZE = 64,
SIP_KEY_SIZE = 16
};
struct xt_ts3init_cookie_cache
{
time_t time[2];
union
{
__u8 seed8[SHA512_SIZE*2];
__u64 seed64[(SHA512_SIZE/sizeof(__u64))*2];
};
};
__u64* ts3init_get_cookie_seed(time_t current_time, __u8 packet_index,
struct xt_ts3init_cookie_cache* cache,
const __u8* cookie_seed);
#endif /* _TS3INIT_COOKIE_H */