1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:37:35 +00:00

LibCore: Allow listening for socket errors and hang-ups

This commit is contained in:
Dan Klishch 2024-02-01 21:51:36 -05:00 committed by Andrew Kaster
parent 6836091a21
commit 506707cc2b
2 changed files with 6 additions and 0 deletions

View file

@ -83,6 +83,8 @@ enum class NotificationType {
None = 0,
Read = 1,
Write = 2,
HangUp = 4,
Error = 8,
};
AK_ENUM_BITWISE_OPERATORS(NotificationType);