diff options
Diffstat (limited to 'include/us-conntrack.h')
-rw-r--r-- | include/us-conntrack.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/us-conntrack.h b/include/us-conntrack.h new file mode 100644 index 0000000..3d71e22 --- /dev/null +++ b/include/us-conntrack.h @@ -0,0 +1,13 @@ +#ifndef _US_CONNTRACK_H_ +#define _US_CONNTRACK_H_ + +#include <libnetfilter_conntrack/libnetfilter_conntrack.h> + +/* be careful, do not modify the layout */ +struct us_conntrack { + struct nf_conntrack *ct; + struct cache *cache; /* add new attributes here */ + char data[0]; +}; + +#endif |