Add tun inbound for linux
This commit is contained in:
11
common/tun/tun_other.go
Normal file
11
common/tun/tun_other.go
Normal file
@@ -0,0 +1,11 @@
|
||||
//go:build !linux
|
||||
|
||||
package tun
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func Open(name string) (uintptr, error) {
|
||||
return 0, os.ErrInvalid
|
||||
}
|
||||
Reference in New Issue
Block a user