comparison src/stream/ngx_stream_upstream.h @ 7286:d27aa9060c95

Stream: udp streams. Previously, only one client packet could be processed in a udp stream session even though multiple response packets were supported. Now multiple packets coming from the same client address and port are delivered to the same stream session. If it's required to maintain a single stream of data, nginx should be configured in a way that all packets from a client are delivered to the same worker. On Linux and DragonFly BSD the "reuseport" parameter should be specified for this. Other systems do not currently provide appropriate mechanisms. For these systems a single stream of udp packets is only guaranteed in single-worker configurations. The proxy_response directive now specifies how many packets are expected in response to a single client packet.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 04 Jun 2018 19:50:00 +0300
parents 5a3ab1b5804b
children 860d3907da1c
comparison
equal deleted inserted replaced
7285:88a624c9b491 7286:d27aa9060c95
126 ngx_chain_t *downstream_out; 126 ngx_chain_t *downstream_out;
127 ngx_chain_t *downstream_busy; 127 ngx_chain_t *downstream_busy;
128 128
129 off_t received; 129 off_t received;
130 time_t start_sec; 130 time_t start_sec;
131 ngx_uint_t requests;
131 ngx_uint_t responses; 132 ngx_uint_t responses;
132 133
133 ngx_str_t ssl_name; 134 ngx_str_t ssl_name;
134 135
135 ngx_stream_upstream_srv_conf_t *upstream; 136 ngx_stream_upstream_srv_conf_t *upstream;