clash/adapter/inbound/https.go

20 lines
497 B
Go
Raw Normal View History

2019-12-08 04:17:24 +00:00
package inbound
2018-08-26 16:06:40 +00:00
import (
"net"
"net/http"
C "github.com/Dreamacro/clash/constant"
2018-08-26 16:06:40 +00:00
)
2021-04-29 03:23:14 +00:00
// NewHTTPS receive CONNECT request and return ConnContext
2023-10-11 02:55:12 +00:00
func NewHTTPS(request *http.Request, conn net.Conn, additions ...Addition) (net.Conn, *C.Metadata) {
metadata := parseHTTPAddr(request)
metadata.Type = C.HTTPS
2023-10-10 11:43:26 +00:00
additions = append(additions, WithSrcAddr(conn.RemoteAddr()), WithInAddr(conn.LocalAddr()))
for _, addition := range additions {
addition.Apply(metadata)
}
2023-10-11 02:55:12 +00:00
return conn, metadata
2018-08-26 16:06:40 +00:00
}