Add handshake interface support for gVisor UDP

This commit is contained in:
世界 2023-07-23 14:18:36 +08:00
parent 0a68b9f1d8
commit aa8760b454
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
11 changed files with 156 additions and 61 deletions

View file

@ -1,18 +0,0 @@
//go:build with_gvisor
package tun
import (
"time"
gLog "github.com/sagernet/gvisor/pkg/log"
)
func init() {
gLog.SetTarget((*nopEmitter)(nil))
}
type nopEmitter struct{}
func (n *nopEmitter) Emit(depth int, level gLog.Level, timestamp time.Time, format string, v ...interface{}) {
}