summaryrefslogtreecommitdiffstats
path: root/include/helpers/sane.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/helpers/sane.h')
-rw-r--r--include/helpers/sane.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/helpers/sane.h b/include/helpers/sane.h
new file mode 100644
index 0000000..1e70ff6
--- /dev/null
+++ b/include/helpers/sane.h
@@ -0,0 +1,13 @@
+#ifndef _CTD_SANE_H
+#define _CTD_SANE_H
+
+enum sane_state {
+ SANE_STATE_NORMAL,
+ SANE_STATE_START_REQUESTED,
+};
+
+struct nf_ct_sane_master {
+ enum sane_state state;
+};
+
+#endif