mirror of
https://github.com/xcat2/xNBA.git
synced 2026-03-26 00:03:28 +00:00
Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
22 lines
609 B
C
22 lines
609 B
C
#include <stdint.h>
|
|
#include <byteswap.h>
|
|
#include <string.h>
|
|
#include <ipxe/icmp6.h>
|
|
#include <ipxe/ip6.h>
|
|
#include <ipxe/in.h>
|
|
#include <ipxe/netdevice.h>
|
|
#include <ipxe/iobuf.h>
|
|
#include <ipxe/tcpip.h>
|
|
|
|
#define NDP_STATE_INVALID 0
|
|
#define NDP_STATE_INCOMPLETE 1
|
|
#define NDP_STATE_REACHABLE 2
|
|
#define NDP_STATE_DELAY 3
|
|
#define NDP_STATE_PROBE 4
|
|
#define NDP_STATE_STALE 5
|
|
|
|
int ndp_resolve ( struct net_device *netdev, struct in6_addr *src,
|
|
struct in6_addr *dest, void *dest_ll_addr );
|
|
int ndp_process_advert ( struct io_buffer *iobuf, struct sockaddr_tcpip *st_src,
|
|
struct sockaddr_tcpip *st_dest );
|