aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-09-26 16:29:49 +0200
committerMarvin Borner2020-09-26 16:29:49 +0200
commitcac7c352a1ece2744de42128a9c69df16f05d26a (patch)
tree667d9b817f77df30468c63af735de0790f59acac /kernel/inc
parent038722e045684a1a04f0fd6a51da2a6ea9dc9bb5 (diff)
Very simple icmp ping handling
Diffstat (limited to 'kernel/inc')
-rw-r--r--kernel/inc/net.h13
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();