sing-tun/tun_linux_gvisor.go
2022-08-07 15:40:46 +08:00

17 lines
317 B
Go

//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,
})
}