mirror of https://github.com/ipxe/ipxe.git
Use -ENETUNREACH to mean "no reachable network device exists, don't bother
retrying".pull/1/head
parent
8edf8f6fa8
commit
c953c1a1c3
|
@ -384,7 +384,7 @@ static int ipv4_tx ( struct pk_buff *pkb,
|
|||
}
|
||||
if ( ! netdev ) {
|
||||
DBG ( "IPv4 has no route to %s\n", inet_ntoa ( iphdr->dest ) );
|
||||
rc = -EHOSTUNREACH;
|
||||
rc = -ENETUNREACH;
|
||||
goto err;
|
||||
}
|
||||
|
||||
|
|
|
@ -239,7 +239,7 @@ static int ipv6_tx ( struct pk_buff *pkb,
|
|||
/* No network interface identified */
|
||||
if ( !netdev ) {
|
||||
DBG ( "No route to host %s\n", inet6_ntoa ( ip6hdr->dest ) );
|
||||
rc = -EHOSTUNREACH;
|
||||
rc = -ENETUNREACH;
|
||||
goto err;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue