mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-17 21:38:44 +00:00
13 lines
267 B
C
13 lines
267 B
C
#ifndef GRUB_NET_ETHERNET_HEADER
|
|
#define GRUB_NET_ETHERNET_HEADER 1
|
|
#include <grub/misc.h>
|
|
struct etherhdr {
|
|
grub_uint8_t dst[6];
|
|
grub_uint8_t src[6];
|
|
grub_uint16_t type;
|
|
} __attribute__ ((packed)) ;
|
|
|
|
void ethernet_ini(void);
|
|
void ethernet_fini(void);
|
|
#endif
|