mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
34 lines
875 B
Go
34 lines
875 B
Go
package proxydialer
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
|
|
"github.com/metacubex/mihomo/component/slowdown"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
)
|
|
|
|
type SlowDownSingDialer struct {
|
|
SingDialer
|
|
Slowdown *slowdown.SlowDown
|
|
}
|
|
|
|
func (d SlowDownSingDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
|
return slowdown.Do(d.Slowdown, ctx, func() (net.Conn, error) {
|
|
return d.SingDialer.DialContext(ctx, network, destination)
|
|
})
|
|
}
|
|
|
|
func (d SlowDownSingDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
|
return slowdown.Do(d.Slowdown, ctx, func() (net.PacketConn, error) {
|
|
return d.SingDialer.ListenPacket(ctx, destination)
|
|
})
|
|
}
|
|
|
|
func NewSlowDownSingDialer(d SingDialer, sd *slowdown.SlowDown) SlowDownSingDialer {
|
|
return SlowDownSingDialer{
|
|
SingDialer: d,
|
|
Slowdown: sd,
|
|
}
|
|
}
|