mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
16 lines
258 B
Go
16 lines
258 B
Go
//go:build no_gvisor
|
|
|
|
package tun
|
|
|
|
import "context"
|
|
|
|
func NewGVisor(
|
|
ctx context.Context,
|
|
tun Tun,
|
|
tunMtu uint32,
|
|
endpointIndependentNat bool,
|
|
endpointIndependentNatTimeout int64,
|
|
handler Handler,
|
|
) (Stack, error) {
|
|
return nil, ErrGVisorNotIncluded
|
|
}
|