Moved if_ether.h and if_arp.h to include/gpxe, for consistency with Linux

kernel.

Removed obsolete struct arprequest from if_arp.h and put it in nic.c so
that nic.c will still compile.  ARP will very shortly be handled by
net/arp.c instead.
This commit is contained in:
Michael Brown
2006-04-19 01:52:41 +00:00
parent 9f67ad9db0
commit 49f933fbc3
5 changed files with 130 additions and 37 deletions

View File

@@ -119,7 +119,7 @@
#define NULL ((void *)0)
#endif
#include "if_ether.h"
#include <gpxe/if_ether.h>
enum {
ARP_CLIENT, ARP_SERVER, ARP_GATEWAY,
@@ -144,7 +144,7 @@ enum {
#define ENCAP_OPT
#endif
#include "if_arp.h"
#include <gpxe/if_arp.h>
#include "ip.h"
#include "udp.h"
#include "old_tcp.h"