summaryrefslogtreecommitdiffhomepage
path: root/src/nginext/nxt_go_port.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2017-08-31nginext has been renamed to unit.Igor Sysoev1-210/+0
2017-08-30ListenAndServe changed to be compatible with http.ListenAndServe.Max Romanov1-2/+0
2017-08-30Send remote address to go application.Max Romanov1-0/+5
2017-08-11Request body read state implemented.Max Romanov1-3/+4
With specific timeout and buffer size settings.
2017-08-02Added bit flags to type parameter of nxt_port_socket_write().Max Romanov1-6/+6
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-07Process stop notification from master to all other processes.Max Romanov1-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-05Complex target parser copied from NGINX.Max Romanov1-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-23External Go app request processing.Max Romanov1-0/+194