Init commit

This commit is contained in:
世界
2022-06-30 21:27:56 +08:00
commit 60691819b1
39 changed files with 2202 additions and 0 deletions

15
adapter/router.go Normal file
View File

@@ -0,0 +1,15 @@
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
}