david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Warn when net device on an active route is not open.

This commit is contained in:
Michael Brown 2007-01-10 20:58:36 +00:00
parent d45c5e7ce7
commit de042993c0
1 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,8 @@ void route ( void ) {
printf ( "%s", inet_ntoa ( miniroute->netmask ) );
if ( miniroute->gateway.s_addr != INADDR_NONE )
printf ( " gw %s", inet_ntoa ( miniroute->gateway ) );
if ( ! ( miniroute->netdev->state & NETDEV_OPEN ) )
printf ( " (inaccessible)" );
printf ( "\n" );
}
}