mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
40 lines
981 B
Go
40 lines
981 B
Go
|
package http
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
"net"
|
||
|
"net/http"
|
||
|
"time"
|
||
|
|
||
|
"github.com/Dreamacro/clash/adapter/inbound"
|
||
|
C "github.com/Dreamacro/clash/constant"
|
||
|
)
|
||
|
|
||
|
func newClient(source net.Addr, in chan<- C.ConnContext) *http.Client {
|
||
|
return &http.Client{
|
||
|
Transport: &http.Transport{
|
||
|
// from http.DefaultTransport
|
||
|
MaxIdleConns: 100,
|
||
|
IdleConnTimeout: 90 * time.Second,
|
||
|
TLSHandshakeTimeout: 10 * time.Second,
|
||
|
ResponseHeaderTimeout: 10 * time.Second,
|
||
|
ExpectContinueTimeout: 1 * time.Second,
|
||
|
DialContext: func(context context.Context, network, address string) (net.Conn, error) {
|
||
|
if network != "tcp" && network != "tcp4" && network != "tcp6" {
|
||
|
return nil, errors.New("unsupported network " + network)
|
||
|
}
|
||
|
|
||
|
left, right := net.Pipe()
|
||
|
|
||
|
in <- inbound.NewHTTP(address, source, right)
|
||
|
|
||
|
return left, nil
|
||
|
},
|
||
|
},
|
||
|
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
||
|
return http.ErrUseLastResponse
|
||
|
},
|
||
|
}
|
||
|
}
|