mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
17 lines
265 B
Go
17 lines
265 B
Go
package tun
|
|
|
|
import (
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
"gvisor.dev/gvisor/pkg/tcpip/stack"
|
|
)
|
|
|
|
type Handler interface {
|
|
N.TCPConnectionHandler
|
|
N.UDPConnectionHandler
|
|
}
|
|
|
|
type Tun interface {
|
|
NewEndpoint() (stack.LinkEndpoint, error)
|
|
Close() error
|
|
}
|