mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-11-06 01:49:04 -06:00
Network: Changed timeout for receiving packets to 100ms
This commit is contained in:
@@ -30,8 +30,7 @@ const MacAddress NoPreferredMac = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
|
||||
constexpr MacAddress BroadcastMac = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
|
||||
|
||||
// The different types of messages that can be sent. The first byte of each packet defines the type
|
||||
using MessageID = u8;
|
||||
enum RoomMessageTypes {
|
||||
enum RoomMessageTypes : u8 {
|
||||
IdJoinRequest = 1,
|
||||
IdJoinSuccess,
|
||||
IdRoomInformation,
|
||||
|
||||
Reference in New Issue
Block a user