mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
18 lines
306 B
Go
18 lines
306 B
Go
package tun
|
|
|
|
import (
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
type Handler interface {
|
|
M.TCPConnectionHandler
|
|
N.UDPConnectionHandler
|
|
E.Handler
|
|
}
|
|
|
|
type Stack interface {
|
|
Start() error
|
|
Close() error
|
|
}
|