Add path option for http connect client

This commit is contained in:
世界 2023-04-12 15:06:23 +08:00
parent 28b0682207
commit d88db59703
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 33 additions and 10 deletions

View file

@ -23,17 +23,32 @@ type Client struct {
serverAddr M.Socksaddr
username string
password string
path string
headers http.Header
}
func NewClient(dialer N.Dialer, serverAddr M.Socksaddr, username string, password string, headers http.Header) *Client {
return &Client{
dialer,
serverAddr,
username,
password,
headers,
type Options struct {
Dialer N.Dialer
Server M.Socksaddr
Username string
Password string
Path string
Headers http.Header
}
func NewClient(options Options) *Client {
client := &Client{
dialer: options.Dialer,
serverAddr: options.Server,
username: options.Username,
password: options.Password,
path: options.Path,
headers: options.Headers,
}
if options.Dialer == nil {
client.dialer = N.SystemDialer
}
return client
}
func (c *Client) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
@ -50,17 +65,21 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
if err != nil {
return nil, err
}
destinationAddress := destination.String()
request := &http.Request{
Method: http.MethodConnect,
URL: &url.URL{
Host: destinationAddress,
Host: destination.String(),
},
Host: destinationAddress,
Header: http.Header{
"Proxy-Connection": []string{"Keep-Alive"},
},
}
if c.path != "" {
err = URLSetPath(request.URL, c.path)
if err != nil {
return nil, err
}
}
for key, valueList := range c.headers {
request.Header.Set(key, valueList[0])
for _, value := range valueList[1:] {

View file

@ -3,8 +3,12 @@ package http
import (
"bufio"
"net/http"
"net/url"
_ "unsafe" // for linkname
)
//go:linkname ReadRequest net/http.readRequest
func ReadRequest(b *bufio.Reader) (req *http.Request, err error)
//go:linkname URLSetPath net/url.(*URL).setPath
func URLSetPath(u *url.URL, p string) error