mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-29 20:11:28 +00:00
13 lines
204 B
Go
13 lines
204 B
Go
|
package tun
|
||
|
|
||
|
import (
|
||
|
E "github.com/sagernet/sing/common/exceptions"
|
||
|
N "github.com/sagernet/sing/common/network"
|
||
|
)
|
||
|
|
||
|
type Handler interface {
|
||
|
N.TCPConnectionHandler
|
||
|
N.UDPConnectionHandler
|
||
|
E.Handler
|
||
|
}
|