summaryrefslogtreecommitdiffstats
path: root/src/flowtable.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/flowtable.c')
-rw-r--r--src/flowtable.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/flowtable.c b/src/flowtable.c
index 93df4ec..c1ddae4 100644
--- a/src/flowtable.c
+++ b/src/flowtable.c
@@ -178,12 +178,6 @@ void nftnl_flowtable_set(struct nftnl_flowtable *c, uint16_t attr, const void *d
}
EXPORT_SYMBOL(nftnl_flowtable_set);
-void nftnl_flowtable_set_array(struct nftnl_flowtable *c, uint16_t attr, const char **data)
-{
- nftnl_flowtable_set_data(c, attr, &data[0], nftnl_flowtable_validate[attr]);
-}
-EXPORT_SYMBOL(nftnl_flowtable_set_array);
-
void nftnl_flowtable_set_u32(struct nftnl_flowtable *c, uint16_t attr, uint32_t data)
{
nftnl_flowtable_set_data(c, attr, &data, sizeof(uint32_t));
@@ -272,12 +266,6 @@ int32_t nftnl_flowtable_get_s32(const struct nftnl_flowtable *c, uint16_t attr)
}
EXPORT_SYMBOL(nftnl_flowtable_get_s32);
-const char **nftnl_flowtable_get_array(const struct nftnl_flowtable *c, uint16_t attr)
-{
- return (const char **)nftnl_flowtable_get(c, attr);
-}
-EXPORT_SYMBOL(nftnl_flowtable_get_array);
-
void nftnl_flowtable_nlmsg_build_payload(struct nlmsghdr *nlh,
const struct nftnl_flowtable *c)
{