1234567891011121314151617181920 |
- package adapter
- import (
- "context"
- "net"
- N "github.com/sagernet/sing/common/network"
- )
- // Note: for proxy protocols, outbound creates early connections by default.
- type Outbound interface {
- Type() string
- Tag() string
- Network() []string
- Dependencies() []string
- N.Dialer
- NewConnection(ctx context.Context, conn net.Conn, metadata InboundContext) error
- NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata InboundContext) error
- }
|