12 lines
185 B
Go
12 lines
185 B
Go
//go:build !with_gvisor
|
|
|
|
package tun
|
|
|
|
import (
|
|
"github.com/sagernet/sing/common/buf"
|
|
)
|
|
|
|
type DirectRouteDestination interface {
|
|
WritePacket(packet *buf.Buffer) error
|
|
Close() error
|
|
}
|