Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-08-31 | nginext has been renamed to unit. | Igor Sysoev | 20 | -2285/+0 | |
2017-08-30 | Avoid nxt_port_mmap_header_t redefinition warning. | Max Romanov | 1 | -3/+1 | |
2017-08-30 | Avoid nxt_go_process_t redefinition warning. | Max Romanov | 3 | -3/+12 | |
2017-08-30 | ListenAndServe changed to be compatible with http.ListenAndServe. | Max Romanov | 3 | -6/+27 | |
2017-08-30 | Send remote address to go application. | Max Romanov | 1 | -0/+5 | |
2017-08-29 | The process type enum exposed to go module. | Max Romanov | 1 | -2/+3 | |
2017-08-29 | The master process has been renamed to the main process. | Igor Sysoev | 2 | -5/+5 | |
2017-08-25 | Fixed typedef nxt_port_mmap_msg_t redefinition after 1b394e999c7c. | Sergey Kandaurov | 1 | -1/+0 | |
Redefinition of typedef is a C11 feature. On older compilers that default to C99, such as clang 3.4.1 supplied with FreeBSD 10, this caused -Wtypedef-redefinition warnings. | |||||
2017-08-11 | Request body read state implemented. | Max Romanov | 6 | -69/+180 | |
With specific timeout and buffer size settings. | |||||
2017-08-02 | Added bit flags to type parameter of nxt_port_socket_write(). | Max Romanov | 4 | -11/+11 | |
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-07-12 | Go: worker initialization. READY message to master. | Max Romanov | 7 | -25/+89 | |
2017-07-07 | Process stop notification from master to all other processes. | Max Romanov | 1 | -1/+8 | |
New port message type introduced NXT_PORT_MSG_REMOVE_PID. Default handler removes process description from nxt_runtime_t with all ports, incoming and outgoing mmaps etc. | |||||
2017-07-05 | Complex target parser copied from NGINX. | Max Romanov | 1 | -6/+11 | |
nxt_app_request_header_t fields renamed: - 'path' renamed to 'target'. - 'path_no_query' renamed to 'path' and contains parsed value. | |||||
2017-06-27 | Applied nxt_pointer_to() and nxt_value_at() where possible. | Valentin Bartenev | 3 | -4/+3 | |
2017-06-26 | Build on Solaris 11 fixed. | Max Romanov | 1 | -1/+2 | |
2017-06-23 | External Go app request processing. | Max Romanov | 20 | -0/+2065 | |