diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-01-04 03:28:30 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-01-04 03:28:30 +0000 |
commit | b29861a5aa8385cdaf4d41a92cc4786740b2d702 (patch) | |
tree | b2a8352ca3001aa55524617c5f903d121b30a9a9 /src/include/gpxe/ip6.h | |
parent | b22d4405c0c74aaac8a7f20c7bb13c4eb4f4af71 (diff) | |
download | ipxe-b29861a5aa8385cdaf4d41a92cc4786740b2d702.tar.gz |
IPv6 minirouting table entries hold persistent references to net devices.
Diffstat (limited to 'src/include/gpxe/ip6.h')
-rw-r--r-- | src/include/gpxe/ip6.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/gpxe/ip6.h b/src/include/gpxe/ip6.h index 0589f8e9d..0ba17120e 100644 --- a/src/include/gpxe/ip6.h +++ b/src/include/gpxe/ip6.h @@ -69,5 +69,10 @@ extern struct net_protocol ipv6_protocol; extern struct tcpip_net_protocol ipv6_tcpip_protocol; extern char * inet6_ntoa ( struct in6_addr in6 ); +extern int add_ipv6_address ( struct net_device *netdev, + struct in6_addr prefix, int prefix_len, + struct in6_addr address, + struct in6_addr gateway ); +extern void del_ipv6_address ( struct net_device *netdev ); #endif /* _GPXE_IP6_H */ |