mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Improve build tags
This commit is contained in:
parent
4c11eaac36
commit
a937ff2d8d
18 changed files with 360 additions and 280 deletions
11
tun_linux.go
11
tun_linux.go
|
@ -1,5 +1,3 @@
|
|||
//go:build !no_gvisor
|
||||
|
||||
package tun
|
||||
|
||||
import (
|
||||
|
@ -12,8 +10,6 @@ import (
|
|||
"github.com/sagernet/sing/common/rw"
|
||||
|
||||
"golang.org/x/sys/unix"
|
||||
"gvisor.dev/gvisor/pkg/tcpip/link/fdbased"
|
||||
"gvisor.dev/gvisor/pkg/tcpip/stack"
|
||||
)
|
||||
|
||||
type NativeTun struct {
|
||||
|
@ -130,13 +126,6 @@ func (t *NativeTun) configure(tunLink netlink.Link) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (t *NativeTun) NewEndpoint() (stack.LinkEndpoint, error) {
|
||||
return fdbased.New(&fdbased.Options{
|
||||
FDs: []int{t.fd},
|
||||
MTU: t.mtu,
|
||||
})
|
||||
}
|
||||
|
||||
func (t *NativeTun) Close() error {
|
||||
var errors []error
|
||||
if t.autoRoute {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue