summaryrefslogtreecommitdiffstats
path: root/include/set_elem.h
blob: 467c1a0eb4f74b76ec8835ab94ad8c160e7356ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _LIBNFTNL_SET_ELEM_INTERNAL_H_
#define _LIBNFTNL_SET_ELEM_INTERNAL_H_

#include <data_reg.h>

struct nft_set_elem {
	struct list_head	head;
	uint32_t		set_elem_flags;
	union nft_data_reg	key;
	union nft_data_reg	data;
	uint32_t		flags;
};

#endif