Files
P4wnP1_aloa/service/bluetooth/util.go
2018-09-20 19:04:37 +02:00

11 lines
180 B
Go

package bluetooth
import "net"
func compareHwAddr(a net.HardwareAddr, b net.HardwareAddr) bool {
for idx,_ := range a {
if a[idx] != b[idx] { return false }
}
return true
}