summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_unit.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-03-30Attributing libunit logging function for arguments validation.Max Romanov1-2/+21
2020-03-12Using disk file to store large request body.Max Romanov1-0/+1
This closes #386 on GitHub.
2020-03-12Introducing readline function in libunit.Max Romanov1-0/+3
Ruby and Java modules now use this function instead of own implementations.
2019-12-24Introducing port messages to notify about out of shared memory.Max Romanov1-0/+6
- OOSM (out of shared memory). Sent by application process to router when application reaches the limit of allocated shared memory and needs more. - SHM_ACK. Sent by router to application when the application's shared memory is released and the OOSM flag is enabled for the segment. This implements blocking mode (the library waits for SHM_ACK in case of out of shared memory condition and retries allocating the required memory amount) and non-blocking mode (the library notifies the application that it's out of shared memory and returns control to the application module that sets up the output queue and puts SHM_ACK in the main message loop).
2019-12-24Adding "limits/shm" configuration validation and parsing.Max Romanov1-0/+1
2019-08-20Introducing websocket support in router and libunit.Max Romanov1-1/+31
2019-02-22Improvement and unification of version processing in build scripts.Alexander Borisov1-1/+1
This also eliminates expressions that incompatible with BSD make, thus fixing installation of Node.js module on FreeBSD (broken by dace60fc4926).
2018-12-19libunit: added generation of version header file.Alexander Borisov1-0/+2
2018-10-31Node.js: added async request execution.Alexander Borisov1-0/+2
2018-08-06Unit application library.Max Romanov1-0/+355
Library now used in all language modules. Old 'nxt_app_*' code removed. See src/test/nxt_unit_app_test.c for usage sample.