quinn-os/ipv4.h
2021-12-19 21:22:17 +10:00

10 lines
379 B
C

#ifndef __IPV4_H
#define __IPV4_H
extern void init_ipv4();
extern void ipv4_process_outbound();
extern void ipv4_queue_outbound(struct ether_t *ether, unsigned int dest, char *packet, int len);
extern void ipv4_send(struct ether_t *ether, int type, unsigned int dest, char *packet, int len);
extern void ipv4_process_packet(struct ether_t *ether, char *packet, int len);
#endif