sing-box/adapter/inbound.go
2022-07-02 14:07:50 +08:00

21 lines
302 B
Go

package adapter
import (
M "github.com/sagernet/sing/common/metadata"
)
type Inbound interface {
Service
Type() string
Tag() string
}
type InboundContext struct {
Inbound string
Network string
Source M.Socksaddr
Destination M.Socksaddr
Domain string
Protocol string
}