mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
11 lines
191 B
Go
11 lines
191 B
Go
//go:build !with_gvisor
|
|
|
|
package tun
|
|
|
|
import "github.com/sagernet/sing/common/buf"
|
|
|
|
type DirectDestination interface {
|
|
WritePacket(buffer *buf.Buffer) error
|
|
Close() error
|
|
Timeout() bool
|
|
}
|