clash/adapter/outbound/direct.go

62 lines
1.4 KiB
Go
Raw Normal View History

2019-12-08 04:17:24 +00:00
package outbound
2018-06-10 14:50:03 +00:00
import (
"context"
2018-06-10 14:50:03 +00:00
"net"
2020-02-09 09:02:48 +00:00
"github.com/Dreamacro/clash/component/dialer"
"github.com/Dreamacro/clash/component/resolver"
2018-06-10 14:50:03 +00:00
C "github.com/Dreamacro/clash/constant"
)
2018-12-22 15:56:42 +00:00
type Direct struct {
*Base
2018-06-10 14:50:03 +00:00
}
2021-04-29 03:23:14 +00:00
// DialContext implements C.ProxyAdapter
func (d *Direct) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.Conn, error) {
opts = append(opts, dialer.WithResolver(resolver.DefaultResolver))
c, err := dialer.DialContext(ctx, "tcp", metadata.RemoteAddress(), d.Base.DialOptions(opts...)...)
2018-06-10 14:50:03 +00:00
if err != nil {
2018-12-22 15:56:42 +00:00
return nil, err
2018-06-10 14:50:03 +00:00
}
tcpKeepAlive(c)
return NewConn(c, d), nil
2018-11-21 05:47:46 +00:00
}
// ListenPacketContext implements C.ProxyAdapter
func (d *Direct) ListenPacketContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.PacketConn, error) {
opts = append(opts, dialer.WithResolver(resolver.DefaultResolver))
pc, err := dialer.ListenPacket(ctx, "udp", "", d.Base.DialOptions(opts...)...)
2019-04-23 15:29:36 +00:00
if err != nil {
2020-01-31 06:43:54 +00:00
return nil, err
2019-04-24 02:29:29 +00:00
}
2020-02-17 09:34:19 +00:00
return newPacketConn(&directPacketConn{pc}, d), nil
}
type directPacketConn struct {
net.PacketConn
}
func NewDirect() *Direct {
2018-12-22 15:56:42 +00:00
return &Direct{
Base: &Base{
2022-08-28 05:41:19 +00:00
name: "DIRECT",
tp: C.Direct,
udp: true,
prefer: C.DualStack,
2018-12-22 15:56:42 +00:00
},
}
2018-06-10 14:50:03 +00:00
}
func NewCompatible() *Direct {
return &Direct{
Base: &Base{
2022-08-28 05:41:19 +00:00
name: "COMPATIBLE",
tp: C.Compatible,
udp: true,
prefer: C.DualStack,
},
}
}