diff options
Diffstat (limited to 'kernel/network/ipv4.h')
-rw-r--r-- | kernel/network/ipv4.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/network/ipv4.h b/kernel/network/ipv4.h index f578202..cd15fce 100644 --- a/kernel/network/ipv4.h +++ b/kernel/network/ipv4.h @@ -1,5 +1,5 @@ -#include <stdint.h> +#include <typedefs.h> -void handle_ipv4(const uint8_t *payload, uint32_t packet_length); -void send_ipv4_packet(uint32_t ip, uint8_t protocol, const uint8_t *payload, - uint16_t length); +void handle_ipv4(const u8 *payload, u32 packet_length); +void send_ipv4_packet(u32 ip, u8 protocol, const u8 *payload, + u16 length); |