#ifdef __IPV4_H #define __IPV4_H #include "ether.h" #include "tcp.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); #endif