mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Add handshake interface support for gVisor UDP
This commit is contained in:
parent
0a68b9f1d8
commit
aa8760b454
11 changed files with 156 additions and 61 deletions
18
stack_gvisor_log.go
Normal file
18
stack_gvisor_log.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
//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{}) {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue