Files
AetherForge/server/internal/sys/firewall_stub.go
drjones b10d353a8b Stabilize Fusion builds and simplify optional modules.
Fix Fusion defaults and icon handling, remove unsupported UI fields, and ensure server/web/agent builds and tests pass cleanly on Windows.
2026-05-27 20:13:24 -07:00

10 lines
188 B
Go

//go:build !windows
package sys
import "fmt"
func EnsureInboundTCPPort(port int, ruleName string) error {
return fmt.Errorf("automatic firewall rules are only supported on Windows")
}