mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-10 20:15:39 -04:00
11 lines
308 B
Go
11 lines
308 B
Go
//go:build windows
|
|
|
|
package firewall
|
|
|
|
import "github.com/netbirdio/netbird/client/firewall/uspfilter"
|
|
|
|
// interfaceAllower returns the Windows netsh-based interface allower.
|
|
func interfaceAllower(iface IFaceMapper, _ uint16) uspfilter.InterfaceAllower {
|
|
return uspfilter.NewWindowsInterfaceAllower(iface)
|
|
}
|