summaryrefslogtreecommitdiffstats
path: root/src/net/icmpv6.c
diff options
context:
space:
mode:
authorMichael Brown2007-01-10 03:25:11 +0100
committerMichael Brown2007-01-10 03:25:11 +0100
commitf008b77ba2b7d921a9d765c9931694e9c7d13ee9 (patch)
tree1464a93bb9b01a2ae75ed87aa5b5d1e52b91392d /src/net/icmpv6.c
parentAdd interface management commands (diff)
downloadipxe-f008b77ba2b7d921a9d765c9931694e9c7d13ee9.tar.gz
ipxe-f008b77ba2b7d921a9d765c9931694e9c7d13ee9.tar.xz
ipxe-f008b77ba2b7d921a9d765c9931694e9c7d13ee9.zip
Allow an explicit network device to be specified for IP-layer
transmissions.
Diffstat (limited to 'src/net/icmpv6.c')
-rw-r--r--src/net/icmpv6.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/icmpv6.c b/src/net/icmpv6.c
index 3f2b06f8..4eed0584 100644
--- a/src/net/icmpv6.c
+++ b/src/net/icmpv6.c
@@ -60,7 +60,8 @@ int icmp6_send_solicit ( struct net_device *netdev, struct in6_addr *src __unuse
st_dest.sin6.sin6_addr.in6_u.u6_addr8[13] = 0xff;
/* Send packet over IP6 */
- return tcpip_tx ( pkb, &icmp6_protocol, &st_dest.st, &nsolicit->csum );
+ return tcpip_tx ( pkb, &icmp6_protocol, &st_dest.st,
+ NULL, &nsolicit->csum );
}
/**