Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-08-17 | The new module configuration interface. | Igor Sysoev | 17 | -401/+858 | |
Configuration and building example: ./configure ./configure python ./configure php ./configure go make all or ./configure make nginext ./configure python make python ./configure php make php ./configure go make go Modules configuration options and building examples: ./configure python --module=python2 --config=python2.7-config make python2 ./configure php --module=php7 --config=php7.0-config --lib-path=/usr/local/php7.0 make php7 ./configure go --go=go1.6 --go-path=${HOME}/go1.6 make go1.6 | |||||
2017-08-16 | Introduced nxt_conf_get_array_element(). | Valentin Bartenev | 2 | -0/+21 | |
2017-08-16 | Object mapping interface extended with more string types. | Valentin Bartenev | 4 | -15/+52 | |
2017-08-16 | Renamed nxt_str_copy() to nxt_str_cstrz(). | Valentin Bartenev | 2 | -3/+3 | |
2017-08-16 | Corrected path to nxt_socket.h in comments. | Ruslan Ermilov | 3 | -5/+5 | |
2017-08-15 | Fixed building on ppc. | Valentin Bartenev | 1 | -1/+1 | |
2017-08-13 | Fixed building by GCC after 7d1017bd0f6c. | Valentin Bartenev | 1 | -1/+1 | |
2017-08-11 | Controller: more HTTP headers and detailed JSON parsing errors. | Valentin Bartenev | 5 | -158/+576 | |
2017-08-11 | Fixed parsing of JSON encoded UTF-16 surrogate pairs. | Valentin Bartenev | 1 | -16/+13 | |
2017-08-11 | Request body read state implemented. | Max Romanov | 15 | -254/+610 | |
With specific timeout and buffer size settings. | |||||
2017-08-11 | Sync flag introduced for port type. | Max Romanov | 2 | -4/+12 | |
To avoid transfer mmap_msg before new mmap message. | |||||
2017-08-11 | RPC: peer pid special value -1 may be used if pid is unknown. | Max Romanov | 1 | -36/+43 | |
2017-08-11 | Tiny mmap buffers completion fixed. | Max Romanov | 3 | -4/+5 | |
Small mmap buffers transferred in 'plain' mode and should be freed by sender. | |||||
2017-08-08 | Fixed JSON escape sequence parsing. | Valentin Bartenev | 1 | -2/+4 | |
2017-08-04 | Fixed building without debug after c1ae75b4e17c and 6281674ecf4f. | Valentin Bartenev | 2 | -11/+4 | |
2017-08-04 | Fixed building by GCC. | Igor Sysoev | 1 | -1/+1 | |
2017-08-02 | Listening socket creation and binding operations are passed | Igor Sysoev | 5 | -63/+406 | |
to the master process. | |||||
2017-08-02 | Added basic port error handler. | Max Romanov | 8 | -40/+81 | |
2017-08-02 | Runtime processes protected with mutex. | Max Romanov | 8 | -68/+106 | |
2017-08-02 | Freed mmap memory filled with 0xA5. | Max Romanov | 1 | -0/+6 | |
2017-08-02 | Implicit port read buffer completion. | Max Romanov | 4 | -21/+24 | |
To disable implicit completion, handler should reset msg->buf field. | |||||
2017-08-02 | Using port rpc in controller->router configuration update. | Max Romanov | 4 | -46/+30 | |
2017-08-02 | Using port rpc in router->master start worker request. | Max Romanov | 6 | -177/+148 | |
2017-08-02 | Port RPC interface introduced. | Max Romanov | 8 | -0/+368 | |
Usage: 1. Register handlers in incoming port with nxt_port_rpc_register_handler(). 2. Use return value as a stream identifier for next nxt_port_socket_write(). | |||||
2017-08-02 | Added bit flags to type parameter of nxt_port_socket_write(). | Max Romanov | 9 | -66/+56 | |
NXT_PORT_MSG_LAST - mark message as last; NXT_PORT_MSG_CLOSE_FD - close fd right after send; Type constants altered to include last flag for single buffer messages. Last sign is critical for coming port RPC layer. Handlers unregistered on last message. Create sync buffer is not convenient, extra parameter is better. | |||||
2017-08-02 | Using old-style packed attribute specification for compatibility. | Max Romanov | 1 | -4/+4 | |
2017-07-25 | Assign current request id to prevent port memory release. | Max Romanov | 1 | -0/+1 | |
2017-07-25 | Using engine task to avoid racing condition. | Max Romanov | 1 | -1/+6 | |
2017-07-25 | Fixed building on Solaris by Sun C. | Max Romanov | 5 | -11/+9 | |
2017-07-21 | Fixed building without debug. | Valentin Bartenev | 1 | -4/+2 | |
2017-07-19 | Fixed a bug introduced in the changeset 9585902ff351. | Igor Sysoev | 1 | -1/+1 | |
2017-07-19 | Listening sockets remaining from the previous configuration | Igor Sysoev | 1 | -0/+1 | |
were not updated with new parameters. | |||||
2017-07-19 | The master process title has been renamed to "main" process. | Igor Sysoev | 1 | -3/+7 | |
The command line is enclosed in brackets. | |||||
2017-07-19 | Removed "process" word from process title. | Igor Sysoev | 1 | -4/+3 | |
2017-07-18 | Added application name in process title. | Igor Sysoev | 3 | -14/+39 | |
2017-07-18 | Configuration: improved declaration of short strings. | Valentin Bartenev | 1 | -10/+14 | |
2017-07-18 | Configuration: reduced memory consumption of long strings. | Valentin Bartenev | 2 | -26/+35 | |
2017-07-18 | Configuration: reduced memory consumption. | Valentin Bartenev | 1 | -4/+4 | |
2017-07-18 | Fixed building by Clang. | Igor Sysoev | 2 | -2/+2 | |
2017-07-18 | More accurate "packed" attribute declaration. | Valentin Bartenev | 1 | -2/+11 | |
2017-07-18 | Removed NXT_PACKED from port structures. | Valentin Bartenev | 1 | -2/+2 | |
That was added only to silence Valgrind, but it results in unaligned access (which breaks Unit on ARM architecture). | |||||
2017-07-18 | Request-app link introduced to prevent mp destroy for penging requests. | Max Romanov | 4 | -125/+302 | |
nxt_req_conn_link_t still used for lookup connection by request id. New nxt_req_app_link_t (ra) allocated from conn->mem_pool using mp_retain(). ra stored in app->requests if there is no free worker to process request. | |||||
2017-07-18 | Using correct task for engine post. | Max Romanov | 1 | -8/+15 | |
2017-07-18 | Work queue thread assertions. Reset thread after fork. | Max Romanov | 6 | -3/+54 | |
2017-07-18 | Mem pool cleanup introduced. | Max Romanov | 9 | -36/+101 | |
Used for connection mem pool cleanup, which can be used by buffers. Used for port mem pool to safely destroy linked process. | |||||
2017-07-18 | Port allocation and destroy changed. Worker process stop introduced. | Max Romanov | 12 | -162/+298 | |
2017-07-18 | Python: typo fixed in string processing shortcut. | Max Romanov | 1 | -2/+2 | |
2017-07-16 | Fixed building by Clang. | Igor Sysoev | 1 | -3/+0 | |
2017-07-16 | Router configuration retention count fixed. | Igor Sysoev | 1 | -1/+1 | |
2017-07-16 | Router: joint must be added to engine's joint list in the | Igor Sysoev | 1 | -2/+4 | |
engine thread. |