Added a bunch of network protocols

This commit is contained in:
Jozef Nagy 2024-04-12 22:28:57 +02:00
parent 075ed7cac3
commit 83afc73363
No known key found for this signature in database
GPG key ID: 5B49DC29F09685D6
5 changed files with 776 additions and 3 deletions

View file

@ -80,6 +80,23 @@ typedef VOID *EFI_HII_HANDLE;
// LBA
typedef UINT64 EFI_LBA;
// EFI IPv4 Address
typedef struct {
UINT8 Addr[4];
} EFI_IPv4_ADDRESS;
// EFI IPv6 Address
typedef struct {
UINT8 Addr[16];
} EFI_IPv6_ADDRESS;
// EFI IP Address
typedef union {
UINT32 Addr[4];
EFI_IPv4_ADDRESS v4;
EFI_IPv6_ADDRESS v6;
} EFI_IP_ADDRESS;
// EFI Mac Address
typedef struct {
UINT8 Addr[32];