2019-12-08 12:17:24 +08:00
|
|
|
package inbound
|
2018-07-26 00:04:59 +08:00
|
|
|
|
|
|
|
import (
|
2018-08-11 22:51:30 +08:00
|
|
|
"net"
|
2018-07-26 00:04:59 +08:00
|
|
|
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-01-23 14:49:46 +08:00
|
|
|
"github.com/Dreamacro/clash/context"
|
2021-06-15 17:13:40 +08:00
|
|
|
"github.com/Dreamacro/clash/transport/socks5"
|
2018-07-26 00:04:59 +08:00
|
|
|
)
|
|
|
|
|
2021-04-29 11:23:14 +08:00
|
|
|
// NewHTTP receive normal http request and return HTTPContext
|
2022-12-05 00:20:50 +08:00
|
|
|
func NewHTTP(target socks5.Addr, source net.Addr, conn net.Conn, additions ...Addition) *context.ConnContext {
|
2021-09-13 23:46:39 +08:00
|
|
|
metadata := parseSocksAddr(target)
|
2021-06-15 17:13:40 +08:00
|
|
|
metadata.NetWork = C.TCP
|
2019-10-27 21:44:07 +08:00
|
|
|
metadata.Type = C.HTTP
|
2022-12-05 00:20:50 +08:00
|
|
|
for _, addition := range additions {
|
|
|
|
addition.Apply(metadata)
|
|
|
|
}
|
2023-01-17 15:41:51 +08:00
|
|
|
if ip, port, err := parseAddr(source); err == nil {
|
2019-05-09 21:00:29 +08:00
|
|
|
metadata.SrcIP = ip
|
|
|
|
metadata.SrcPort = port
|
|
|
|
}
|
2023-01-17 15:41:51 +08:00
|
|
|
if ip, port, err := parseAddr(conn.LocalAddr()); err == nil {
|
2022-11-11 23:36:06 +08:00
|
|
|
metadata.InIP = ip
|
|
|
|
metadata.InPort = port
|
|
|
|
}
|
2021-06-15 17:13:40 +08:00
|
|
|
return context.NewConnContext(conn, metadata)
|
2021-03-10 16:23:19 +08:00
|
|
|
}
|