More contetxt in connection

This commit is contained in:
世界 2022-04-28 08:28:38 +08:00
parent f16dd7a336
commit 5be6eb2d64
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
11 changed files with 33 additions and 27 deletions

View file

@ -21,7 +21,7 @@ type Handler interface {
tcp.Handler
}
func HandleRequest(request *http.Request, conn net.Conn, authenticator auth.Authenticator, handler Handler, metadata M.Metadata) error {
func HandleRequest(ctx context.Context, request *http.Request, conn net.Conn, authenticator auth.Authenticator, handler Handler, metadata M.Metadata) error {
var httpClient *http.Client
for {
if authenticator != nil {
@ -56,7 +56,7 @@ func HandleRequest(request *http.Request, conn net.Conn, authenticator auth.Auth
return E.Cause(err, "write http response")
}
metadata.Destination = destination
return handler.NewConnection(conn, metadata)
return handler.NewConnection(ctx, conn, metadata)
}
keepAlive := strings.TrimSpace(strings.ToLower(request.Header.Get("Proxy-Connection"))) == "keep-alive"
@ -96,7 +96,7 @@ func HandleRequest(request *http.Request, conn net.Conn, authenticator auth.Auth
go func() {
metadata.Destination = destination
metadata.Protocol = "http"
err = handler.NewConnection(right, metadata)
err = handler.NewConnection(ctx, right, metadata)
if err != nil {
handler.HandleError(&tcp.Error{Conn: right, Cause: err})
}