summaryrefslogtreecommitdiffstats
path: root/include/nfct.h
blob: bfffdd6fa909f527820a28c4f1224813f6722646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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