[net-next 10/18] net: ieee802154: Define frame types

From: Miquel Raynal
Date: Wed Dec 22 2021 - 10:58:21 EST


A 802.15.4 frame can be of different types, here is a definition
matching the specification. This enumeration will be soon be used when
adding scanning support.

Signed-off-by: Miquel Raynal <miquel.raynal@xxxxxxxxxxx>
---
include/net/ieee802154_netdev.h | 11 +++++++++++
1 file changed, 11 insertions(+)

diff --git a/include/net/ieee802154_netdev.h b/include/net/ieee802154_netdev.h
index a92999817dc0..04738ae3b25e 100644
--- a/include/net/ieee802154_netdev.h
+++ b/include/net/ieee802154_netdev.h
@@ -105,6 +105,17 @@ struct ieee802154_hdr_fc {
#endif
};

+enum ieee802154_frame_type {
+ IEEE802154_BEACON_FRAME,
+ IEEE802154_DATA_FRAME,
+ IEEE802154_ACKNOWLEDGEMENT_FRAME,
+ IEEE802154_MAC_COMMAND_FRAME,
+ IEEE802154_RESERVED_FRAME,
+ IEEE802154_MULTIPURPOSE_FRAME,
+ IEEE802154_FRAGMENT_FRAME,
+ IEEE802154_EXTENDED_FRAME,
+};
+
struct ieee802154_hdr {
struct ieee802154_hdr_fc fc;
u8 seq;
--
2.27.0