Changes since version 1.9-dev3 : Bertrand Jacquin (1): DOC: Fix a few typos Christopher Faulet (10): MINOR: http: Move comment about some HTTP macros in the right header file MINOR: stats: Add missing include MINOR: http: Export some functions and do cleanup to prepare HTTP refactoring MEDIUM: http: Ignore http-pretend-keepalive option on frontend MEDIUM: http: Ignore http-tunnel option on backend MINOR: http: Use same flag for httpclose and forceclose options MINOR: h1: Add EOH marker during headers parsing MINOR: conn-stream: Add CL_FL_NOT_FIRST flag MINOR: h1: Change the union h1_sl to use indirect strings to store infos MINOR: h1: Add the flag H1_MF_NO_PHDR to not add pseudo-headers during parsing Dirkjan Bussink (4): MEDIUM: ssl: add support for ciphersuites option for TLSv1.3 CLEANUP: haproxy: Remove unused variable CLEANUP: h1: Fix debug warnings for h1 headers CLEANUP: stick-tables: Remove unneeded double (()) around conditional clause Emeric Brun (2): BUG/MEDIUM: Cur/CumSslConns counters not threadsafe. BUG/MEDIUM: mworker: segfault receiving SIGUSR1 followed by SIGTERM. Emmanuel Hocdet (2): MINOR: ssl: cleanup old openssl API call MINOR: ssl: generate-certificates for BoringSSL Fabrice Fontaine (1): BUILD: Allow configuration of pcre-config path Ilya Shipitsin (1): BUG/MINOR: connection: avoid null pointer dereference in send-proxy-v2 Lukas Tribus (2): DOC: clarify force-private-cache is an option DOC: fix reference to map files in MAINTAINERS Olivier Houchard (9): BUG/MEDIUM: buffers: Make sure we don't wrap in ci_insert_line2/b_rep_blk. MINOR: connections: Introduce an unsubscribe method. MEDIUM: connections: Change struct wait_list to wait_event. BUG/MEDIUM: h2: Make sure we're not in the send list on flow control. BUG/MEDIUM: stream: Make sure to unsubscribe before si_release_endpoint. MINOR: server: Use memcpy() instead of strncpy(). MINOR: build: Disable -Wstringop-overflow. MINOR: cfgparse: Write 130 as 128 as 0x82 and 0x80. MINOR: peers: use defines instead of enums to appease clang. PiBa-NL (1): REGTEST/MINOR: compatibility: use unix@ instead of abns@ sockets William Lallemand (1): BUG/MEDIUM: mworker: don't poll on LI_O_INHERITED listeners Willy Tarreau (44): REORG: http: move the code to different files REORG: http: move HTTP rules parsing to http_rules.c CLEANUP: http: remove some leftovers from recent cleanups BUILD: Makefile: add a "make opts" target to simply show the build options BUILD: Makefile: speed up compiler options detection BUG/MINOR: backend: check that the mux installed properly BUG/MEDIUM: h2: check that the connection is still valid at the end of init() BUG/MEDIUM: h2: make h2_stream_new() return an error on memory allocation failure MEDIUM: task: perform a single tree lookup per run queue batch BUG/MINOR: threads: move declaration of capabilities to config.h OPTIM: tools: optimize my_ffsl() for x86_64 MINOR: log: make sess_log() support sess=NULL MINOR: chunk: add chunk_cpy() and chunk_cat() MEDIUM: h2: stop relying on H2_SS_IDLE / H2_SS_CLOSED CLEANUP: h2: rename h2c_snd_settings() to h2c_send_settings() MINOR: h2: don't try to send data before preface MINOR: h2: unify the mux init function MINOR: h2: retrieve the front proxy from the caller instead of the session MINOR: h2: split h2c_stream_new() into h2s_new() + h2c_frt_stream_new() MINOR: h2: add a new flag to quickly distinguish front vs back connection BUG/MEDIUM: stream: don't crash on out-of-memory BUILD: compiler: add a new statement "__unreachable()" BUILD: lua: silence some compiler warnings about potential null derefs BUILD: ssl: fix null-deref warning in ssl_fc_cipherlist_str sample fetch BUILD: ssl: fix another null-deref warning in ssl_sock_switchctx_cbk() BUILD: stick-table: make sure not to fail on task_new() during initialization BUILD: peers: check allocation error during peers_init_sync() MINOR: tools: add a new function atleast2() to test masks for more than 1 bit MINOR: config: use atleast2() instead of my_popcountl() where relevant MEDIUM: fd/threads: only grab the fd's lock if the FD has more than one thread MAJOR: tasks: create per-thread wait queues OPTIM: tasks: group all tree roots per cache line MINOR: pools: allocate most memory pools from an array MINOR: pools: split pool_free() in the lockfree variant MEDIUM: pools: implement a thread-local cache for pool entries BUG/MEDIUM: threads: fix thread_release() at the end of the rendez-vous point Revert "BUILD: lua: silence some compiler warnings about potential null derefs" BUILD: lua: silence some compiler warnings about potential null derefs (#2) MINOR: lua: all functions calling lua_yieldk() may return BUILD: lua: silence some compiler warnings after WILL_LJMP BUILD: Makefile: silence an option conflict warning with clang CLEANUP: state-file: make the path concatenation code a bit more consistent MINOR: fd: centralize poll timeout computation in compute_poll_timeout() MINOR: poller: move time and date computation out of the pollers mildis (2): BUG/MINOR: h2: null-deref BUG/MINOR: checks: queues null-deref