mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 19:08:25 -07:00
14 lines
170 B
Go
14 lines
170 B
Go
|
//go:build !windows
|
||
|
// +build !windows
|
||
|
|
||
|
package aghnet
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
// rcArpA runs "arp -a".
|
||
|
func rcArpA() (r io.Reader, err error) {
|
||
|
return runCmd("arp", "-a")
|
||
|
}
|