diff options
Diffstat (limited to 'src/lib/http_server.cc')
| -rw-r--r-- | src/lib/http_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/http_server.cc b/src/lib/http_server.cc index 4f31ab534..1ddf9dd7f 100644 --- a/src/lib/http_server.cc +++ b/src/lib/http_server.cc @@ -261,7 +261,7 @@ HTTPServer::handle(shared_ptr<Socket> socket) /* I think we should keep the socket open if the client requested keep-alive, but some browsers * send keep-alive then don't re-use the connection. Since we can only accept one request at once, * this blocks until our request read (above) times out. We probably should accept multiple - * requests in parallel, but it's easier for not to use close the socket. + * requests in parallel, but it's easier for now to close the socket. */ socket->close(); } |
