Changes to allow matching (for delete) on part of a rule, for rules which
change in the kernel (eg. ipt_limit).
diff --git a/include/iptables.h b/include/iptables.h
index 9b1a4a1..1ddd871 100644
--- a/include/iptables.h
+++ b/include/iptables.h
@@ -15,6 +15,9 @@
 	/* Size of match data. */
 	size_t size;
 
+	/* Size of match data relevent for userspace comparison purposes */
+	size_t userspacesize;
+
 	/* Function which prints out usage message. */
 	void (*help)(void);
 
@@ -59,6 +62,9 @@
 	/* Size of target data. */
 	size_t size;
 
+	/* Size of target data relevent for userspace comparison purposes */
+	size_t userspacesize;
+
 	/* Function which prints out usage message. */
 	void (*help)(void);