sing-box/adapter/inbound.go
2022-07-06 12:39:44 +08:00

29 lines
425 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
// cache
SniffEnabled bool
SniffOverrideDestination bool
SourceGeoIPCode string
GeoIPCode string
}