nl80211: Debug print set_key() command names
This makes it easier to understand the debug log for various set_key() operations. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
ac22241532
commit
796253a65f
1 changed files with 4 additions and 0 deletions
|
@ -3107,6 +3107,8 @@ static int wpa_driver_nl80211_set_key(struct i802_bss *bss,
|
||||||
|
|
||||||
if ((key_flag & KEY_FLAG_PAIRWISE_MASK) ==
|
if ((key_flag & KEY_FLAG_PAIRWISE_MASK) ==
|
||||||
KEY_FLAG_PAIRWISE_RX_TX_MODIFY) {
|
KEY_FLAG_PAIRWISE_RX_TX_MODIFY) {
|
||||||
|
wpa_printf(MSG_DEBUG,
|
||||||
|
"nl80211: SET_KEY (pairwise RX/TX modify)");
|
||||||
msg = nl80211_ifindex_msg(drv, ifindex, 0, NL80211_CMD_SET_KEY);
|
msg = nl80211_ifindex_msg(drv, ifindex, 0, NL80211_CMD_SET_KEY);
|
||||||
if (!msg)
|
if (!msg)
|
||||||
goto fail2;
|
goto fail2;
|
||||||
|
@ -3116,6 +3118,7 @@ static int wpa_driver_nl80211_set_key(struct i802_bss *bss,
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto fail2;
|
goto fail2;
|
||||||
} else if (alg == WPA_ALG_NONE) {
|
} else if (alg == WPA_ALG_NONE) {
|
||||||
|
wpa_printf(MSG_DEBUG, "nl80211: DEL_KEY");
|
||||||
msg = nl80211_ifindex_msg(drv, ifindex, 0, NL80211_CMD_DEL_KEY);
|
msg = nl80211_ifindex_msg(drv, ifindex, 0, NL80211_CMD_DEL_KEY);
|
||||||
if (!msg)
|
if (!msg)
|
||||||
goto fail2;
|
goto fail2;
|
||||||
|
@ -3127,6 +3130,7 @@ static int wpa_driver_nl80211_set_key(struct i802_bss *bss,
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto fail2;
|
goto fail2;
|
||||||
}
|
}
|
||||||
|
wpa_printf(MSG_DEBUG, "nl80211: NEW_KEY");
|
||||||
msg = nl80211_ifindex_msg(drv, ifindex, 0, NL80211_CMD_NEW_KEY);
|
msg = nl80211_ifindex_msg(drv, ifindex, 0, NL80211_CMD_NEW_KEY);
|
||||||
if (!msg)
|
if (!msg)
|
||||||
goto fail2;
|
goto fail2;
|
||||||
|
|
Loading…
Reference in a new issue