sing-box/adapter/traffic_controller.go
2022-07-19 22:45:55 +08:00

14 lines
356 B
Go

package adapter
import (
"context"
"net"
N "github.com/sagernet/sing/common/network"
)
type TrafficController interface {
RoutedConnection(ctx context.Context, conn net.Conn, metadata InboundContext, matchedRule Rule) net.Conn
RoutedPacketConnection(ctx context.Context, conn N.PacketConn, metadata InboundContext, matchedRule Rule) N.PacketConn
}