diff options
Diffstat (limited to 'kernel/inc/net.h')
-rw-r--r-- | kernel/inc/net.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/kernel/inc/net.h b/kernel/inc/net.h index 300c0bd..943583a 100644 --- a/kernel/inc/net.h +++ b/kernel/inc/net.h @@ -21,15 +21,14 @@ #define IP_PROT_UDP 0x11 struct ethernet_packet { - u8 dst_mac_addr[6]; - u8 src_mac_addr[6]; + u8 dst[6]; + u8 src[6]; u16 type; u8 data[]; } __attribute__((packed)); struct ip_packet { - u8 version : 4; - u8 ihl : 4; + u8 version_ihl; u8 dscp_ecn; u16 length; u16 id; @@ -42,6 +41,12 @@ struct ip_packet { u8 data[]; } __attribute__((packed)); +struct icmp_packet { + u8 type; + u8 version; + u16 checksum; +} __attribute__((packed)); + void ethernet_handle_packet(struct ethernet_packet *packet, int len); void net_install(); |