sing-box/adapter/router.go
2022-07-06 23:14:19 +08:00

30 lines
673 B
Go

package adapter
import (
"context"
"net"
N "github.com/sagernet/sing/common/network"
"github.com/sagernet/sing-box/common/geoip"
"github.com/sagernet/sing-box/common/geosite"
)
type Router interface {
Service
Outbound(tag string) (Outbound, bool)
DefaultOutbound(network string) Outbound
RouteConnection(ctx context.Context, conn net.Conn, metadata InboundContext) error
RoutePacketConnection(ctx context.Context, conn N.PacketConn, metadata InboundContext) error
GeoIPReader() *geoip.Reader
GeositeReader() *geosite.Reader
}
type Rule interface {
Service
UpdateGeosite() error
Match(metadata *InboundContext) bool
Outbound() string
String() string
}