10 lines
379 B
C
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
|