mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 02:42:23 +08:00
23 lines
537 B
Go
23 lines
537 B
Go
package sniff
|
|
|
|
import (
|
|
std_bufio "bufio"
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
C "github.com/sagernet/sing-box/constant"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
"github.com/sagernet/sing/protocol/http"
|
|
)
|
|
|
|
func HTTPHost(_ context.Context, metadata *adapter.InboundContext, reader io.Reader) error {
|
|
request, err := http.ReadRequest(std_bufio.NewReader(reader))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
metadata.Protocol = C.ProtocolHTTP
|
|
metadata.Domain = M.ParseSocksaddr(request.Host).AddrString()
|
|
return nil
|
|
}
|