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 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
// SPDX-License-Identifier: GPL-2.0
/* Copyright (C) B.A.T.M.A.N. contributors:
*
* Antonio Quartulli <a@unstable.cc>
*
* License-Filename: LICENSES/preferred/GPL-2.0
*/
#include "main.h"
#include <errno.h>
#include <linux/genetlink.h>
#include <netlink/genl/genl.h>
#include "batman_adv.h"
#include "netlink.h"
#include "sys.h"
static struct simple_boolean_data distributed_arp_table;
static int print_distributed_arp_table(struct nl_msg *msg, void *arg)
{
return sys_simple_print_boolean(msg, arg,
BATADV_ATTR_DISTRIBUTED_ARP_TABLE_ENABLED);
}
static int get_distributed_arp_table(struct state *state)
{
return sys_simple_nlquery(state, BATADV_CMD_GET_MESH,
NULL, print_distributed_arp_table);
}
static int set_attrs_distributed_arp_table(struct nl_msg *msg, void *arg)
{
struct state *state = arg;
struct settings_data *settings = state->cmd->arg;
struct simple_boolean_data *data = settings->data;
nla_put_u8(msg, BATADV_ATTR_DISTRIBUTED_ARP_TABLE_ENABLED, data->val);
return 0;
}
static int set_distributed_arp_table(struct state *state)
{
return sys_simple_nlquery(state, BATADV_CMD_SET_MESH,
set_attrs_distributed_arp_table, NULL);
}
static struct settings_data batctl_settings_distributed_arp_table = {
.data = &distributed_arp_table,
.parse = parse_simple_boolean,
.netlink_get = get_distributed_arp_table,
.netlink_set = set_distributed_arp_table,
};
COMMAND_NAMED(SUBCOMMAND_MIF, distributed_arp_table, "dat", handle_sys_setting,
COMMAND_FLAG_MESH_IFACE | COMMAND_FLAG_NETLINK,
&batctl_settings_distributed_arp_table,
"[0|1] \tdisplay or modify distributed_arp_table setting");
|