sing-tun/tun_linux_gvisor.go
2023-04-22 20:14:32 +08:00

18 lines
335 B
Go

//go:build with_gvisor && linux
package tun
import (
"github.com/sagernet/sing-tun/internal/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.tunFd},
MTU: t.options.MTU,
})
}