Files
Alexandr Stelnykovych 89ee86890a refactor: simplify IVPN compatibility state reconciliation
Rename ensureSPNCompatibility to reconcileCompatibilityState and extract the
implementation logic to improve code clarity and maintainability across all
platform implementations.
2026-05-05 14:00:26 +03:00

17 lines
377 B
Go

//go:build !linux && !windows
package ivpn
import (
"github.com/safing/portmaster/service/mgr"
"github.com/safing/portmaster/spn/hub"
)
type platformSpecific struct{}
func (i *InteropIvpn) spnConnectingHook(w *mgr.WorkerCtx, hookCtx hub.Announcement) (cancel bool, err error) {
return true, nil
}
func (i *InteropIvpn) reconcileCompatibilityState(wc *mgr.WorkerCtx) {
}