From 56e36b29cde3fd7185237c2a12969121b0c13063 Mon Sep 17 00:00:00 2001 From: Seth Forshee Date: Wed, 9 May 2018 10:36:20 -0500 Subject: [PATCH] iw: support reloading the regulatory database Add a "iw reg reload" command, useful for testing new regulatory databases. Signed-off-by: Seth Forshee Signed-off-by: Johannes Berg --- reg.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/reg.c b/reg.c index cee0b5e..cadff38 100644 --- a/reg.c +++ b/reg.c @@ -259,3 +259,13 @@ COMMAND(reg, get, NULL, NL80211_CMD_GET_REG, 0, CIB_PHY, handle_reg_get, "Print out the devices' current regulatory domain information."); HIDDEN(reg, dump, NULL, NL80211_CMD_GET_REG, NLM_F_DUMP, CIB_NONE, handle_reg_dump); + +static int handle_reg_reload(struct nl80211_state *state, + struct nl_msg *msg, + int argc, char **argv, + enum id_input id) +{ + return 0; +} +COMMAND(reg, reload, NULL, NL80211_CMD_RELOAD_REGDB, 0, CIB_NONE, + handle_reg_reload, "Reload the kernel's regulatory database."); -- 2.39.2