#ifndef H_COMMON
#define H_COMMON

typedef unsigned char __u8;
typedef unsigned short __u16;
typedef unsigned int __u32;
typedef unsigned long long __u64;

struct reset {
    __u8 saddr[4];
    __u8 daddr[4];
    __u16 sport;
    __u16 dport;
    __u16 family;
    __u16 proto;
} __attribute__((packed));

#endif