Parcourir la source

wlantest: Process TX status frames as RX frames too

This is needed to allow capture files from the mac80211 cooked monitor
mode interface to be processed properly. Without this, the locally
generated frames may not get processed.

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 12 ans
Parent
commit
44f6d554ee
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      wlantest/process.c

+ 4 - 1
wlantest/process.c

@@ -331,8 +331,11 @@ void wlantest_process(struct wlantest *wt, const u8 *data, size_t len)
 		return;
 	if (!txflags)
 		rx_frame(wt, frame, frame_len);
-	else
+	else {
 		tx_status(wt, frame, frame_len, !failed);
+		/* Process as RX frame to support local monitor interface */
+		rx_frame(wt, frame, frame_len);
+	}
 }