소스 검색

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

tags/v0.9.3
Michael Brown 18 년 전
부모
커밋
de042993c0
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      src/usr/route.c

+ 2
- 0
src/usr/route.c 파일 보기

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

Loading…
취소
저장