fix: unexpected byte size
Some checks failed
Docker Build and Push / build-and-push (push) Has been cancelled

This commit is contained in:
2025-12-02 20:15:51 +07:00
parent b967619a3a
commit 626b6b5feb
2 changed files with 5 additions and 89 deletions

View File

@ -113,13 +113,6 @@ func HandlerTLS(conn net.Conn) {
}
cw := NewCustomWriter(conn, dstReader, conn.RemoteAddr())
// Initial Requests
cw.Requests = append(cw.Requests, &RequestContext{
Host: reqhf.Get("Host"),
Path: reqhf.Path,
Method: reqhf.Method,
Chunked: false,
})
forwardRequest(cw, reqhf, sshSession)
return
}