diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 08:00:12 +0000 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 17:53:08 -0500 |
commit | d22c338e07cc98276ea5cc4feaa5a370baa63243 (patch) | |
tree | ac72ae8a2d99ba9b48757aa148a8fe1b5f1cdd7d /include | |
parent | 228041893c2b6f79326f4b49ee7b3b3a90e90e8e (diff) | |
download | talos-obmc-uboot-d22c338e07cc98276ea5cc4feaa5a370baa63243.tar.gz talos-obmc-uboot-d22c338e07cc98276ea5cc4feaa5a370baa63243.zip |
net: Add link-local addressing support
Code based on networking/zcip.c in busybox
commit 8531d76a15890c2c535908ce888b2e2aed35b172
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net.h b/include/net.h index 52b9a29b18..a902a64752 100644 --- a/include/net.h +++ b/include/net.h @@ -395,7 +395,7 @@ extern int NetRestartWrap; /* Tried all network devices */ enum proto_t { BOOTP, RARP, ARP, TFTPGET, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP, - TFTPSRV, TFTPPUT + TFTPSRV, TFTPPUT, LINKLOCAL }; /* from net/net.c */ |