quinn-os/ipv4.h
2015-09-05 12:48:48 +10:00

13 lines
337 B
C

#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