sing-box/adapter/router.go

16 lines
364 B
Go
Raw Normal View History

2022-06-30 13:27:56 +00:00
package adapter
import (
"context"
"net"
N "github.com/sagernet/sing/common/network"
)
type Router interface {
DefaultOutbound() Outbound
Outbound(tag string) (Outbound, bool)
RouteConnection(ctx context.Context, conn net.Conn, metadata InboundContext) error
RoutePacketConnection(ctx context.Context, conn N.PacketConn, metadata InboundContext) error
}