]> git.kaiwu.me - nginx.git/commit
Stream: udp streams.
authorRoman Arutyunyan <arut@nginx.com>
Mon, 4 Jun 2018 16:50:00 +0000 (19:50 +0300)
committerRoman Arutyunyan <arut@nginx.com>
Mon, 4 Jun 2018 16:50:00 +0000 (19:50 +0300)
commit96b6f215b846e59af249892f1c109f3efe92fbc1
tree97beb1794295d52bb063f0e129aed04187c76bfc
parent1028d7169599dafd99a9f1720d995667750b1ab1
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.
src/core/ngx_connection.c
src/core/ngx_connection.h
src/core/ngx_core.h
src/event/ngx_event.h
src/event/ngx_event_udp.c
src/stream/ngx_stream_proxy_module.c
src/stream/ngx_stream_upstream.h