summaryrefslogtreecommitdiff
path: root/src/network/room_member.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/room_member.h')
-rw-r--r--src/network/room_member.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/room_member.h b/src/network/room_member.h
index fce608c82..bc1af3a7e 100644
--- a/src/network/room_member.h
+++ b/src/network/room_member.h
@@ -15,7 +15,7 @@ namespace Network {
15/// Information about the received WiFi packets. 15/// Information about the received WiFi packets.
16/// Acts as our own 802.11 header. 16/// Acts as our own 802.11 header.
17struct WifiPacket { 17struct WifiPacket {
18 enum class PacketType { Beacon, Data, Authentication, AssociationResponse }; 18 enum class PacketType : u8 { Beacon, Data, Authentication, AssociationResponse };
19 PacketType type; ///< The type of 802.11 frame. 19 PacketType type; ///< The type of 802.11 frame.
20 std::vector<u8> data; ///< Raw 802.11 frame data, starting at the management frame header 20 std::vector<u8> data; ///< Raw 802.11 frame data, starting at the management frame header
21 /// for management frames. 21 /// for management frames.