mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Add path option for http connect client
This commit is contained in:
parent
28b0682207
commit
d88db59703
2 changed files with 33 additions and 10 deletions
|
@ -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:] {
|
||||
|
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue