mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 14:05:45 +00:00
Network: Changed timeout for receiving packets to 100ms
This commit is contained in:
parent
e443c779a5
commit
e9ce27c941
5 changed files with 50 additions and 43 deletions
|
@ -15,7 +15,7 @@ namespace Network {
|
|||
/// Information about the received WiFi packets.
|
||||
/// Acts as our own 802.11 header.
|
||||
struct WifiPacket {
|
||||
enum class PacketType { Beacon, Data, Authentication, AssociationResponse };
|
||||
enum class PacketType : u8 { Beacon, Data, Authentication, AssociationResponse };
|
||||
PacketType type; ///< The type of 802.11 frame.
|
||||
std::vector<u8> data; ///< Raw 802.11 frame data, starting at the management frame header
|
||||
/// for management frames.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue