summaryrefslogtreecommitdiff
path: root/include/nfct.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/nfct.h')
-rw-r--r--include/nfct.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/include/nfct.h b/include/nfct.h
new file mode 100644
index 0000000..bfffdd6
--- /dev/null
+++ b/include/nfct.h
@@ -0,0 +1,46 @@
+#ifndef _NFCT_H_
+#define _NFCT_H_
+
+#include "linux_list.h"
+
+enum {
+ NFCT_SUBSYS_NONE = 0,
+ NFCT_SUBSYS_TIMEOUT,
+ NFCT_SUBSYS_HELPER,
+ NFCT_SUBSYS_VERSION,
+ NFCT_SUBSYS_HELP,
+ NFCT_SUBSYS_MAX
+};
+
+enum {
+ NFCT_CMD_NONE = 0,
+ NFCT_CMD_LIST,
+ NFCT_CMD_ADD,
+ NFCT_CMD_DELETE,
+ NFCT_CMD_GET,
+ NFCT_CMD_FLUSH,
+ NFCT_CMD_DISABLE,
+ NFCT_CMD_DEFAULT_SET,
+ NFCT_CMD_DEFAULT_GET,
+ NFCT_CMD_MAX,
+};
+
+#define __init __attribute__((constructor))
+
+void nfct_perror(const char *msg);
+
+struct nfct_extension {
+ struct list_head head;
+ int type;
+ int (*parse_params)(struct mnl_socket *nl, int argc, char *argv[], int cmd);
+};
+
+void nfct_extension_register(struct nfct_extension *ext);
+
+struct mnl_socket *nfct_mnl_open(void);
+int nfct_mnl_talk(struct mnl_socket *nl, struct nlmsghdr *nlh,
+ uint32_t seq, uint32_t portid,
+ int (*cb)(const struct nlmsghdr *nlh, void *data),
+ void *data);
+
+#endif