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

LibTLS: Move NameType to Extensions.h

This commit is contained in:
stelar7 2023-04-14 00:10:16 +02:00 committed by Sam Atkins
parent 9110f26c79
commit 0fea6e7f13
3 changed files with 8 additions and 5 deletions

View file

@ -159,6 +159,13 @@ enum class ExtensionType : u16 {
__ENUM_EXTENSION_TYPES
};
#define __ENUM_NAME_TYPES \
_ENUM_KEY_VALUE(HOST_NAME, 0)
enum class NameType : u8 {
__ENUM_NAME_TYPES
};
#undef _ENUM_KEY
#undef _ENUM_KEY_VALUE