mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
17 lines
301 B
Go
17 lines
301 B
Go
package adapters
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
)
|
|
|
|
// NewHTTPS is HTTPAdapter generator
|
|
func NewHTTPS(request *http.Request, conn net.Conn) *SocketAdapter {
|
|
metadata := parseHTTPAddr(request)
|
|
metadata.SourceIP = parseSourceIP(conn)
|
|
return &SocketAdapter{
|
|
metadata: metadata,
|
|
Conn: conn,
|
|
}
|
|
}
|