Changes since version 2.0-dev0 : Alex Zorin (1): MINOR: payload: add sample fetch for TLS ALPN Christopher Faulet (12): MINOR: channel: Add the function channel_add_input MINOR: stats/htx: Call channel_add_input instead of updating channel state by hand BUG/MEDIUM: cache: Be sure to end the forwarding when XFER length is unknown BUG/MAJOR: htx: Return the good block address after a defrag BUG/MAJOR: stream-int: Update the stream expiration date in stream_int_notify() BUG/MEDIUM: proto-htx: Set SI_FL_NOHALF on server side when request is done BUG/MEDIUM: mux-h1: Add a task to handle connection timeouts MINOR: stream/htx: Add info about the HTX structs in "show sess all" command MINOR: stream: Add the subscription events of SIs in "show sess all" command MINOR: mux-h1: Add the subscription events in "show fd" command BUG/MEDIUM: h1: Get the h1m state when restarting the headers parsing BUG/MINOR: cache/htx: Be sure to count partial trailers Jérôme Magnin (1): BUG/MINOR: htx: send the proper authenticate header when using http-request auth Olivier Houchard (13): BUG/MEDIUM: servers: Don't try to reuse connection if we switched server. BUG/MEDIUM: tasks: Decrement tasks_run_queue in tasklet_free(). BUG/MEDIUM: mux_h2: Don't add to the idle list if we're full. BUG/MEDIUM: servers: Fail if we fail to allocate a conn_stream. BUG/MAJOR: servers: Use the list api correctly to avoid crashes. BUG/MAJOR: servers: Correctly use LIST_ELEM(). BUG/MAJOR: sessions: Use an unlimited number of servers for the conn list. BUG/MEDIUM: servers: Flag the stream_interface on handshake error. MEDIUM: servers: Be smarter when switching connections. MEDIUM: sessions: Keep track of which connections are idle. BUG/MEDIUM: h1: In h1_init(), wake the tasklet instead of calling h1_recv(). BUG/MEDIUM: server: Defer the mux init until after xprt has been initialized. MINOR: connections: Remove a stall comment. Willy Tarreau (46): MINOR: mux-h2: only increase the connection window with the first update REGTESTS: remove the expected window updates from H2 handshakes BUG/MINOR: mux-h2: make empty HEADERS frame return a connection error BUG/MEDIUM: mux-h2: mark that we have too many CS once we have more than the max MEDIUM: mux-h2: remove padlen during headers phase MINOR: h2: add a bit-based frame type representation MINOR: mux-h2: remove useless check for empty frame length in h2s_decode_headers() MEDIUM: mux-h2: decode HEADERS frames before allocating the stream MINOR: mux-h2: make h2c_send_rst_stream() use the dummy stream's error code MINOR: mux-h2: add a new dummy stream for the REFUSED_STREAM error code MINOR: mux-h2: fail stream creation more cleanly using RST_STREAM MINOR: buffers: add a new b_move() function MINOR: mux-h2: make h2_peek_frame_hdr() support an offset MEDIUM: mux-h2: handle decoding of CONTINUATION frames CLEANUP: mux-h2: remove misleading comments about CONTINUATION BUG/MEDIUM: log: don't mark log FDs as non-blocking on terminals MINOR: lb: allow redispatch when using consistent hash CLEANUP: mux-h2: fix end-of-stream flag name when processing headers BUG/MEDIUM: mux-h2: always restart reading if data are available BUG/MINOR: mux-h2: set the stream-full flag when leaving h2c_decode_headers() BUG/MINOR: mux-h2: don't check the CS count in h2c_bck_handle_headers() BUG/MINOR: mux-h2: mark end-of-stream after processing response HEADERS, not before BUG/MINOR: mux-h2: only update rxbuf's length for H1 headers BUG/MEDIUM: mux-h1: use per-direction flags to indicate transitions BUG/MEDIUM: mux-h1: make HTX chunking consistent with H2 MINOR: mux-h2: make h2c_decode_headers() return a status, not a count MINOR: mux-h2: add a new dummy stream : h2_error_stream MEDIUM: mux-h2: make h2c_decode_headers() support recoverable errors BUG/MINOR: mux-h2: detect when the HTX EOM block cannot be added after headers MINOR: mux-h2: remove a misleading and impossible test CLEANUP: mux-h2: clean the stream error path on HEADERS frame processing MINOR: mux-h2: check for too many streams only for idle streams MINOR: mux-h2: set H2_SF_HEADERS_RCVD when a HEADERS frame was decoded BUG/MEDIUM: mux-h2: decode trailers in HEADERS frames MINOR: h2: add h2_make_h1_trailers to turn H2 headers to H1 trailers MEDIUM: mux-h2: pass trailers to H1 (legacy mode) MINOR: htx: add a new function to add a block without filling it MINOR: h2: add h2_make_htx_trailers to turn H2 headers to HTX trailers MEDIUM: mux-h2: pass trailers to HTX MINOR: mux-h1: parse the content-length header on output and set H1_MF_CLEN BUG/MEDIUM: mux-h1: don't enforce chunked encoding on requests MINOR: mux-h2: make HTX_BLK_EOM processing idempotent MINOR: h1: make the H1 headers block parser able to parse headers only MEDIUM: mux-h2: emit HEADERS frames when facing HTX trailers blocks BUG/MEDIUM: cli: make "show sess" really thread-safe BUILD: add a new file "version.c" to carry version updates