mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
38 lines
1 KiB
Go
38 lines
1 KiB
Go
package adapter
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"net/netip"
|
|
|
|
"github.com/sagernet/sing-box/common/geoip"
|
|
C "github.com/sagernet/sing-box/constant"
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
"golang.org/x/net/dns/dnsmessage"
|
|
)
|
|
|
|
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
|
|
LoadGeosite(code string) (Rule, error)
|
|
Exchange(ctx context.Context, message *dnsmessage.Message) (*dnsmessage.Message, error)
|
|
Lookup(ctx context.Context, domain string, strategy C.DomainStrategy) ([]netip.Addr, error)
|
|
LookupDefault(ctx context.Context, domain string) ([]netip.Addr, error)
|
|
AutoDetectInterface() bool
|
|
DefaultInterfaceName() string
|
|
DefaultInterfaceIndex() int
|
|
}
|
|
|
|
type Rule interface {
|
|
Service
|
|
UpdateGeosite() error
|
|
Match(metadata *InboundContext) bool
|
|
Outbound() string
|
|
String() string
|
|
}
|