sing-box/common/sniff/http.go

23 lines
537 B
Go
Raw Normal View History

2022-07-06 12:39:44 +08:00
package sniff
import (
std_bufio "bufio"
"context"
"io"
"github.com/sagernet/sing-box/adapter"
C "github.com/sagernet/sing-box/constant"
2023-04-19 16:05:11 +08:00
M "github.com/sagernet/sing/common/metadata"
2022-07-08 23:03:57 +08:00
"github.com/sagernet/sing/protocol/http"
2022-07-06 12:39:44 +08:00
)
2024-07-07 15:45:50 +08:00
func HTTPHost(_ context.Context, metadata *adapter.InboundContext, reader io.Reader) error {
2022-07-06 12:39:44 +08:00
request, err := http.ReadRequest(std_bufio.NewReader(reader))
if err != nil {
2024-07-07 15:45:50 +08:00
return err
2022-07-06 12:39:44 +08:00
}
2024-07-07 15:45:50 +08:00
metadata.Protocol = C.ProtocolHTTP
metadata.Domain = M.ParseSocksaddr(request.Host).AddrString()
return nil
2022-07-06 12:39:44 +08:00
}