Add headers option to http connect client

This commit is contained in:
Adlyq 2023-04-05 19:34:52 +08:00 committed by 世界
parent 6d63c1a7dc
commit 121c0b14e4
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -23,14 +23,16 @@ type Client struct {
serverAddr M.Socksaddr
username string
password string
headers http.Header
}
func NewClient(dialer N.Dialer, serverAddr M.Socksaddr, username string, password string) *Client {
func NewClient(dialer N.Dialer, serverAddr M.Socksaddr, username string, password string, headers http.Header) *Client {
return &Client{
dialer,
serverAddr,
username,
password,
headers,
}
}
@ -59,6 +61,12 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
"Proxy-Connection": []string{"Keep-Alive"},
},
}
for key, valueList := range c.headers {
request.Header.Set(key, valueList[0])
for _, value := range valueList[1:] {
request.Header.Add(key, value)
}
}
if c.username != "" {
auth := c.username + ":" + c.password
request.Header.Add("Proxy-Authorization", "Basic "+base64.StdEncoding.EncodeToString([]byte(auth)))