summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_http_response.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-04-16Using malloc/free for the http fields hash.Max Romanov1-2/+2
This is required due to lack of a graceful shutdown: there is a small gap between the runtime's memory pool release and router process's exit. Thus, a worker thread may start processing a request between these two operations, which may result in an http fields hash access and subsequent crash. To simplify issue reproduction, it makes sense to add a 2 sec sleep before exit() in nxt_runtime_exit().
2019-08-20Introducing websocket support in router and libunit.Max Romanov1-0/+2
2018-02-12HTTP: the Date response header.Valentin Bartenev1-0/+2
2017-12-28HTTP keep-alive connections support.Igor Sysoev1-0/+83