mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
21 lines
232 B
Go
21 lines
232 B
Go
//go:build !windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func DeleteBlockFirewallRule(_ context.Context) {
|
|
}
|
|
|
|
func AddAllowFirewallRule() {
|
|
}
|
|
|
|
func DeleteAllowFirewallRule() {
|
|
}
|
|
|
|
func FindAllowFirewallRule() bool {
|
|
return false
|
|
}
|