Get the hardware address on Unix by running lanscan.
()
| 619 | return None |
| 620 | |
| 621 | def _lanscan_getnode(): |
| 622 | """Get the hardware address on Unix by running lanscan.""" |
| 623 | # This might work on HP-UX. |
| 624 | return _find_mac_near_keyword('lanscan', '-ai', [b'lan0'], lambda i: 0) |
| 625 | |
| 626 | def _netstat_getnode(): |
| 627 | """Get the hardware address on Unix by running netstat.""" |
nothing calls this directly
no test coverage detected
searching dependent graphs…