Init commit

This commit is contained in:
世界 2022-07-11 17:15:22 +08:00
commit 4f7247190c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
16 changed files with 573 additions and 0 deletions

9
gvisor_nonlinux.go Normal file
View file

@ -0,0 +1,9 @@
//go:build !linux
package tun
import "gvisor.dev/gvisor/pkg/tcpip/stack"
func NewEndpoint(tunFd uintptr, tunMtu uint32) (stack.LinkEndpoint, error) {
return NewPosixEndpoint(tunFd, tunMtu)
}