1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Guard 802.11 parsing code on PPI around HAVE_DOT11

This commit is contained in:
Matias Fontanini
2015-09-21 21:06:57 -07:00
parent 693cef04df
commit 30445f1e97

View File

@@ -100,6 +100,7 @@ void PPI::write_serialization(uint8_t *buffer, uint32_t total_sz, const PDU *) {
}
void PPI::parse_80211(const uint8_t* buffer, uint32_t total_sz) {
#ifdef HAVE_DOT11
if (_data.size() >= 13) {
// Is FCS-at-end on?
if ((_data[12] & 1) == 1) {
@@ -111,6 +112,7 @@ void PPI::parse_80211(const uint8_t* buffer, uint32_t total_sz) {
}
}
inner_pdu(Dot11::from_bytes(buffer, total_sz));
#endif // HAVE_DOT11
}
} // Tins