Browse Source

wlantest: Skip frames inserted by wlantest when reading pcap file

This makes debug output clearer when re-reading a file that has
previously been processed and decrypted by wlantest.
Jouni Malinen 14 years ago
parent
commit
62a0255c1f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      wlantest/process.c

+ 4 - 0
wlantest/process.c

@@ -228,6 +228,10 @@ void wlantest_process(struct wlantest *wt, const u8 *data, size_t len)
 		}
 	}
 
+	if (iter.max_length == 8) {
+		wpa_printf(MSG_DEBUG, "Skip frame inserted by wlantest");
+		return;
+	}
 	frame = data + iter.max_length;
 	frame_len = len - iter.max_length;