mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-10-26 11:27:18 +00:00
10 lines
205 B
Go
10 lines
205 B
Go
//go:build darwin || freebsd || openbsd
|
|
|
|
package aghnet
|
|
|
|
import "github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
|
|
func canBindPrivilegedPorts() (can bool, err error) {
|
|
return aghos.HaveAdminRights()
|
|
}
|