sing-box/adapter/router.go

57 lines
1.4 KiB
Go
Raw Normal View History

2022-06-30 21:27:56 +08:00
package adapter
import (
"context"
"net"
2022-07-07 21:47:21 +08:00
"net/netip"
2022-06-30 21:27:56 +08:00
2022-07-05 13:23:47 +08:00
"github.com/sagernet/sing-box/common/geoip"
2022-07-11 18:44:59 +08:00
"github.com/sagernet/sing-dns"
2022-08-04 22:01:20 +08:00
"github.com/sagernet/sing-tun"
2022-07-14 23:06:03 +08:00
"github.com/sagernet/sing/common/control"
2022-07-08 23:03:57 +08:00
N "github.com/sagernet/sing/common/network"
2022-07-07 21:47:21 +08:00
"golang.org/x/net/dns/dnsmessage"
2022-06-30 21:27:56 +08:00
)
type Router interface {
2022-07-05 13:23:47 +08:00
Service
2022-07-14 23:06:03 +08:00
2022-07-21 21:03:41 +08:00
Outbounds() []Outbound
2022-06-30 21:27:56 +08:00
Outbound(tag string) (Outbound, bool)
2022-07-06 23:11:48 +08:00
DefaultOutbound(network string) Outbound
2022-07-14 23:06:03 +08:00
2022-06-30 21:27:56 +08:00
RouteConnection(ctx context.Context, conn net.Conn, metadata InboundContext) error
RoutePacketConnection(ctx context.Context, conn N.PacketConn, metadata InboundContext) error
2022-07-14 23:06:03 +08:00
2022-07-05 13:23:47 +08:00
GeoIPReader() *geoip.Reader
2022-07-08 11:00:46 +08:00
LoadGeosite(code string) (Rule, error)
2022-07-14 23:06:03 +08:00
2022-07-07 21:47:21 +08:00
Exchange(ctx context.Context, message *dnsmessage.Message) (*dnsmessage.Message, error)
2022-07-11 18:44:59 +08:00
Lookup(ctx context.Context, domain string, strategy dns.DomainStrategy) ([]netip.Addr, error)
2022-07-07 21:47:21 +08:00
LookupDefault(ctx context.Context, domain string) ([]netip.Addr, error)
2022-07-14 23:06:03 +08:00
InterfaceBindManager() control.BindManager
2022-07-15 11:51:51 +08:00
DefaultInterface() string
AutoDetectInterface() bool
2022-07-24 17:46:25 +08:00
DefaultMark() int
2022-08-04 22:01:20 +08:00
NetworkMonitor() tun.NetworkUpdateMonitor
InterfaceMonitor() tun.DefaultInterfaceMonitor
2022-07-19 22:16:49 +08:00
Rules() []Rule
SetTrafficController(controller TrafficController)
2022-07-02 14:07:50 +08:00
}
type Rule interface {
2022-07-05 13:23:47 +08:00
Service
2022-07-19 22:16:49 +08:00
Type() string
2022-07-05 13:23:47 +08:00
UpdateGeosite() error
2022-07-02 22:55:10 +08:00
Match(metadata *InboundContext) bool
2022-07-02 14:07:50 +08:00
Outbound() string
String() string
2022-06-30 21:27:56 +08:00
}
2022-07-24 14:05:06 +08:00
type DNSRule interface {
Rule
DisableCache() bool
}