remove kext glue dll from dependencies

This commit is contained in:
Vladimir
2022-11-03 10:58:00 +01:00
parent 1ff27784c3
commit 5d2715ca17
3 changed files with 2 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ func start(ch chan packet.Packet) error {
return fmt.Errorf("interception: could not get kext sys: %s", err)
}
err = windowskext.Init("", kextFile.Path())
err = windowskext.Init(kextFile.Path())
if err != nil {
return fmt.Errorf("interception: could not init windows kext: %s", err)
}

View File

@@ -41,7 +41,7 @@ func init() {
}
// Init initializes the DLL and the Kext (Kernel Driver).
func Init(dllPath, path string) error {
func Init(path string) error {
driverPath = path
return nil
}

View File

@@ -52,7 +52,6 @@ func MandatoryUpdates() (identifiers []string) {
identifiers = append(
identifiers,
PlatformIdentifier("core/portmaster-core.exe"),
PlatformIdentifier("kext/portmaster-kext.dll"),
PlatformIdentifier("kext/portmaster-kext.sys"),
PlatformIdentifier("kext/portmaster-kext.pdb"),
PlatformIdentifier("start/portmaster-start.exe"),