mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-05 04:47:41 +03:00
10 lines
192 B
Go
10 lines
192 B
Go
//go:build !(no_gvisor || !(linux || windows || darwin))
|
|
|
|
package tun
|
|
|
|
import "gvisor.dev/gvisor/pkg/tcpip/stack"
|
|
|
|
type GVisorTun interface {
|
|
Tun
|
|
NewEndpoint() (stack.LinkEndpoint, error)
|
|
}
|