mirror of https://github.com/Dreamacro/clash.git
28 lines
741 B
Go
28 lines
741 B
Go
package inbound
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/context"
|
|
"github.com/Dreamacro/clash/transport/socks5"
|
|
)
|
|
|
|
// NewHTTP receive normal http request and return HTTPContext
|
|
func NewHTTP(target socks5.Addr, source net.Addr, originTarget net.Addr, conn net.Conn) *context.ConnContext {
|
|
metadata := parseSocksAddr(target)
|
|
metadata.NetWork = C.TCP
|
|
metadata.Type = C.HTTP
|
|
if ip, port, err := parseAddr(source); err == nil {
|
|
metadata.SrcIP = ip
|
|
metadata.SrcPort = C.Port(port)
|
|
}
|
|
if originTarget != nil {
|
|
if addrPort, err := netip.ParseAddrPort(originTarget.String()); err == nil {
|
|
metadata.OriginDst = addrPort
|
|
}
|
|
}
|
|
return context.NewConnContext(conn, metadata)
|
|
}
|