3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-21 22:09:23 +01:00

hwsim: add ADD/DEL_MAC_ADDR events

These events are important to support both moving radios to other
namespaces, and to allow scan address randomization to work.
This commit is contained in:
James Prestwood 2023-06-28 13:20:31 -07:00 committed by Denis Kenzior
parent 0be288c5aa
commit cda7644557

View File

@ -62,6 +62,8 @@ enum {
HWSIM_CMD_NEW_RADIO,
HWSIM_CMD_DEL_RADIO,
HWSIM_CMD_GET_RADIO,
HWSIM_CMD_ADD_MAC_ADDR,
HWSIM_CMD_DEL_MAC_ADDR,
__HWSIM_CMD_MAX,
};
#define HWSIM_CMD_MAX (__HWSIM_CMD_MAX - 1)