Improve build tags

This commit is contained in:
世界 2022-08-07 15:40:46 +08:00
parent 4c11eaac36
commit a937ff2d8d
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
18 changed files with 360 additions and 280 deletions

17
tun_linux_gvisor.go Normal file
View file

@ -0,0 +1,17 @@
//go:build !no_gvisor && linux
package tun
import (
"gvisor.dev/gvisor/pkg/tcpip/link/fdbased"
"gvisor.dev/gvisor/pkg/tcpip/stack"
)
var _ GVisorTun = (*NativeTun)(nil)
func (t *NativeTun) NewEndpoint() (stack.LinkEndpoint, error) {
return fdbased.New(&fdbased.Options{
FDs: []int{t.fd},
MTU: t.mtu,
})
}