Changes since version 1.9.6 : Christopher Faulet (11): BUG/MINOR: htx: Preserve empty HTX messages with an unprocessed parsing error BUG/MEDIUM: spoe: Queue message only if no SPOE applet is attached to the stream BUG/MEDIUM: spoe: Return an error if nothing is encoded for fragmented messages BUG/MINOR: spoe: Be sure to set tv_request when each message fragment is encoded BUG/MEDIUM: htx: Defrag if blocks position is changed and the payloads wrap BUG/MEDIUM: htx: Don't crush blocks payload when append is done on a data block MEDIUM: htx: Deprecate the option 'http-tunnel' and ignore it in HTX MINOR: proto_htx: Don't adjust transaction mode anymore in HTX analyzers BUG/MEDIUM: htx: Fix the process of HTTP CONNECT with h2 connections MINOR: mux-h1: Simplify handling of 1xx responses BUG/MINOR: mux-h1: Handle the flag CS_FL_KILL_CONN during a shutdown read/write David Carlier (1): BUILD/MINOR: listener: Silent a few signedness warnings. Emeric Brun (1): BUG/MEDIUM: peers: fix a case where peer session is not cleanly reset on release. Nenad Merdanovic (2): BUG/MEDIUM: map: Fix memory leak in the map converter BUG/MINOR: ssl: Fix 48 byte TLS ticket key rotation Olivier Houchard (10): BUG/MEDIUM: h2: Don't attempt to recv from h2_process_demux if we subscribed. BUG/MEDIUM: streams: Don't remove the SI_FL_ERR flag in si_update_both(). BUG/MEDIUM: streams: Store prev_state before calling si_update_both(). BUG/MEDIUM: stream: Don't clear the stream_interface flags in si_update_both. BUG/MEDIUM: streams: Only re-run process_stream if we're in a connected state. BUG/MEDIUM: stream_interface: Don't bother doing chk_rcv/snd if not connected. MINOR: lists: Implement locked variations. BUG/MEDIUM: lists: Properly handle the case we're removing the first elt. MINOR: initcall: Don't forget to define the __start/stop_init_##stg symbols. BUG/MEDIUM: h2: Make sure we're not already in the send_list in h2_subscribe(). Robin H. Johnson (1): MINOR: skip get_gmtime where tm is unused William Lallemand (2): BUG/MINOR: cli: correctly handle abns in 'show cli sockets' MINOR: cli: start addresses by a prefix in 'show cli sockets' Willy Tarreau (27): BUILD: makefile: work around an old bug in GNU make-3.80 BUILD: http: properly mark some struct as extern BUILD: chunk: properly declare pool_head_trash as extern BUILD: cache: avoid a build warning with some compilers/linkers MINOR: tools: make memvprintf() never pass a NULL target to vsnprintf() BUILD: re-implement an initcall variant without using executable sections BUILD: makefile: fix build of IPv6 header on aix51 BUILD: makefile: add _LINUX_SOURCE_COMPAT to build on AIX-51 BUILD: Makefile: disable shared cache on AIX 5.1 BUILD: fix backport of initcall variant BUILD: use inttypes.h instead of stdint.h BUILD: connection: fix naming of ip_v field BUG/MEDIUM: htx: fix random premature abort of data transfers BUG/MEDIUM: pattern: assign pattern IDs after checking the config validity BUG/MEDIUM: task/threads: address a fairness issue between local and global tasks BUG/MINOR: tasks: make sure the first task to be queued keeps its nice value BUG/MINOR: threads: fix the process range of thread masks BUG/MEDIUM: list: fix the rollback on addq in the locked liss BUG/MEDIUM: list: fix LIST_POP_LOCKED's removal of the last pointer BUG/MEDIUM: list: add missing store barriers when updating elements and head MINOR: list: make the delete and pop operations idempotent BUG/MEDIUM: list: correct fix for LIST_POP_LOCKED's removal of last element BUG/MEDIUM: list: fix again LIST_ADDQ_LOCKED BUG/MEDIUM: list: fix incorrect pointer unlocking in LIST_DEL_LOCKED() MAJOR: listener: do not hold the listener lock in listener_accept() BUG/MEDIUM: listener: use a self-locked list for the dequeue lists BUG/MEDIUM: listener: make sure the listener never accepts too many conns