clash/adapters/outbound/util.go

98 lines
1.7 KiB
Go
Raw Normal View History

2018-08-08 03:51:06 +00:00
package adapters
import (
"fmt"
"net"
"net/http"
"net/url"
"time"
C "github.com/Dreamacro/clash/constant"
)
2018-10-22 13:14:22 +00:00
const (
tcpTimeout = 5 * time.Second
)
2018-08-08 03:51:06 +00:00
// DelayTest get the delay for the specified URL
func DelayTest(proxy C.Proxy, url string) (t int16, err error) {
2018-09-30 04:25:52 +00:00
addr, err := urlToMetadata(url)
2018-08-08 03:51:06 +00:00
if err != nil {
return
}
start := time.Now()
instance, err := proxy.Generator(&addr)
if err != nil {
return
}
defer instance.Close()
transport := &http.Transport{
Dial: func(string, string) (net.Conn, error) {
return instance.Conn(), nil
},
// from http.DefaultTransport
MaxIdleConns: 100,
IdleConnTimeout: 90 * time.Second,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 1 * time.Second,
}
client := http.Client{Transport: transport}
resp, err := client.Get(url)
2018-08-08 03:51:06 +00:00
if err != nil {
return
}
resp.Body.Close()
2018-08-08 03:51:06 +00:00
t = int16(time.Since(start) / time.Millisecond)
return
}
2018-09-30 04:25:52 +00:00
func urlToMetadata(rawURL string) (addr C.Metadata, err error) {
2018-08-08 03:51:06 +00:00
u, err := url.Parse(rawURL)
if err != nil {
return
}
port := u.Port()
if port == "" {
if u.Scheme == "https" {
port = "443"
} else if u.Scheme == "http" {
port = "80"
} else {
err = fmt.Errorf("%s scheme not Support", rawURL)
return
}
}
2018-09-30 04:25:52 +00:00
addr = C.Metadata{
2018-08-08 03:51:06 +00:00
AddrType: C.AtypDomainName,
Host: u.Hostname(),
IP: nil,
Port: port,
}
return
}
func selectFast(in chan interface{}) chan interface{} {
out := make(chan interface{})
go func() {
p, open := <-in
if open {
out <- p
}
close(out)
for range in {
}
}()
return out
}
func tcpKeepAlive(c net.Conn) {
if tcp, ok := c.(*net.TCPConn); ok {
tcp.SetKeepAlive(true)
2018-10-01 11:42:15 +00:00
tcp.SetKeepAlivePeriod(30 * time.Second)
}
}