diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-01-10 02:25:11 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-01-10 02:25:11 +0000 |
commit | f008b77ba2b7d921a9d765c9931694e9c7d13ee9 (patch) | |
tree | 1464a93bb9b01a2ae75ed87aa5b5d1e52b91392d /src/net/icmpv6.c | |
parent | 98696598954faf6e645de9174f62f6f6c34e9fc9 (diff) | |
download | ipxe-f008b77ba2b7d921a9d765c9931694e9c7d13ee9.tar.gz |
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.c | 3 |
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 ); } /** |