summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_conn_write.c (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2020-08-17Supporting platforms without sendfile() implementation.Max Romanov1-1/+18
This is a quick and dirty sendfile() replacement. This closes #452 PR on GitHub.
2020-08-17Style: changing preprocessor directives.Max Romanov1-5/+11
Using #if directives instead of #ifdef the same way as in other places.
2020-03-12Using disk file to store large request body.Max Romanov1-0/+96
This closes #386 on GitHub.
2019-02-28Fixed timer and event race condition.Igor Sysoev1-2/+3
When idle timeout occurs at the same time as a request comes in, the timer handler closes connection while the read event triggers request processing, and this eventually leads to segmentation fault.
2018-09-28Fixed bug in socket write error handling.Igor Sysoev1-1/+3
The bug has been introduced in e3972a4a9c73.
2018-09-20Added SSL/TLS support on connection level.Igor Sysoev1-19/+5
2018-09-18Fixed more typos.Valentin Bartenev1-1/+1
Thanks to 洪志道 (Hong Zhi Dao).
2018-07-12Fixed socket write error handling.Igor Sysoev1-10/+17
2018-01-24Fixed formatting in nxt_sprintf() and logging.Sergey Kandaurov1-3/+3
2017-06-14nxt_event_conn_... functions and structures have been renamedIgor Sysoev1-134/+136
to nxt_conn_...
2017-06-06C99 style declaration of connection states.Igor Sysoev1-1/+1
2017-05-12Fixed error introduced in rev d3dfd7c497e8.Igor Sysoev1-0/+1
2017-03-23Event connection writing fixes.Igor Sysoev1-0/+9
2017-02-22I/O operations refactoring.Igor Sysoev1-166/+143
2017-02-07Event engines refactoring.Igor Sysoev1-5/+5
2017-01-31Event engine timers refactoring.Igor Sysoev1-1/+1
2017-01-30nxt_event_timer has been renamed to nxt_timer.Igor Sysoev1-4/+4
2017-01-23Introducing tasks.Igor Sysoev1-38/+40