mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
36 lines
799 B
Go
36 lines
799 B
Go
package outbounds
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/apernet/hysteria/extras/v2/outbounds/speedtest"
|
|
)
|
|
|
|
const (
|
|
SpeedtestDest = "@SpeedTest"
|
|
)
|
|
|
|
// speedtestHandler is a PluggableOutbound that handles speed test requests.
|
|
// It's used to intercept speed test requests and return a pseudo connection that
|
|
// implements the speed test protocol.
|
|
type speedtestHandler struct {
|
|
Next PluggableOutbound
|
|
}
|
|
|
|
func NewSpeedtestHandler(next PluggableOutbound) PluggableOutbound {
|
|
return &speedtestHandler{
|
|
Next: next,
|
|
}
|
|
}
|
|
|
|
func (s *speedtestHandler) TCP(reqAddr *AddrEx) (net.Conn, error) {
|
|
if reqAddr.Host == SpeedtestDest {
|
|
return speedtest.NewServerConn(), nil
|
|
} else {
|
|
return s.Next.TCP(reqAddr)
|
|
}
|
|
}
|
|
|
|
func (s *speedtestHandler) UDP(reqAddr *AddrEx) (UDPConn, error) {
|
|
return s.Next.UDP(reqAddr)
|
|
}
|