mirror of
https://github.com/safing/portmaster
synced 2025-04-07 12:39:09 +00:00
12 lines
192 B
Go
12 lines
192 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package kextinterface
|
|
|
|
type KextFile struct{}
|
|
|
|
func (f *KextFile) Read(buffer []byte) (int, error) {
|
|
return 0, nil
|
|
}
|
|
|
|
// func (f *KextFile) flushBuffer() {}
|