sing-box/adapter/inbound.go
2022-07-01 19:37:41 +08:00

23 lines
319 B
Go

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