1 2 3 4 5 6 7 8 9 10 11 12 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