Implementation read waiter for pipe

This commit is contained in:
世界 2023-12-06 20:31:44 +08:00
parent aa34723225
commit 1f02d6daca
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 301 additions and 1 deletions

View file

@ -16,6 +16,7 @@ import (
F "github.com/sagernet/sing/common/format"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
"github.com/sagernet/sing/common/pipe"
)
type Handler = N.TCPConnectionHandler
@ -102,7 +103,7 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
DialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
metadata.Destination = M.ParseSocksaddr(address)
metadata.Protocol = "http"
input, output := net.Pipe()
input, output := pipe.Pipe()
go func() {
hErr := handler.NewConnection(ctx, output, metadata)
if hErr != nil {