Terminate simple server success response with double CRLF

The simple success case had only the status line plus a single CRLF,
and pedantic HTTP client implementations (`hyper`) stumbled over
this. A double CRLF makes it OK.

Fixes #3541.
pull/3542/head
Jan Verbeek 6 months ago
parent e8b34cb00d
commit b44a081590

@ -218,7 +218,7 @@ func (server *httpServer) handleHttpRequest(conn net.Conn) string {
}
server.actionChannel <- actions
return httpOk
return httpOk + crlf
}
func parseGetParams(query string) getParams {

Loading…
Cancel
Save