diff options
| author | Michael Brown | 2007-01-04 04:28:30 +0100 |
|---|---|---|
| committer | Michael Brown | 2007-01-04 04:28:30 +0100 |
| commit | b29861a5aa8385cdaf4d41a92cc4786740b2d702 (patch) | |
| tree | b2a8352ca3001aa55524617c5f903d121b30a9a9 /src/include | |
| parent | An AoE session holds a persistent reference to a net device. (diff) | |
| download | ipxe-b29861a5aa8385cdaf4d41a92cc4786740b2d702.tar.gz ipxe-b29861a5aa8385cdaf4d41a92cc4786740b2d702.tar.xz ipxe-b29861a5aa8385cdaf4d41a92cc4786740b2d702.zip | |
IPv6 minirouting table entries hold persistent references to net devices.
Diffstat (limited to 'src/include')
| -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 */ |
