12345678910111213141516171819202122232425262728 |
- 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
- }
|