mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-15 01:09:20 +02:00
Wireguard inbound: Do not use kernel TUN (#3960)
Co-authored-by: RPRX <63339210+RPRX@users.noreply.github.com>
This commit is contained in:
parent
4ec5c78c34
commit
b7aacd3245
|
@ -31,8 +31,13 @@ func (c *DeviceConfig) fallbackIP6() bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *DeviceConfig) createTun() tunCreator {
|
func (c *DeviceConfig) createTun() tunCreator {
|
||||||
|
if !c.IsClient {
|
||||||
|
// See tun_linux.go createKernelTun()
|
||||||
|
errors.LogWarning(context.Background(), "Using gVisor TUN. WG inbound doesn't support kernel TUN yet.")
|
||||||
|
return createGVisorTun
|
||||||
|
}
|
||||||
if c.NoKernelTun {
|
if c.NoKernelTun {
|
||||||
errors.LogWarning(context.Background(), "Using gVisor TUN.")
|
errors.LogWarning(context.Background(), "Using gVisor TUN. NoKernelTun is set to true.")
|
||||||
return createGVisorTun
|
return createGVisorTun
|
||||||
}
|
}
|
||||||
kernelTunSupported, err := KernelTunSupported()
|
kernelTunSupported, err := KernelTunSupported()
|
||||||
|
|
Loading…
Reference in New Issue