- 926a561 MINOR: session: rename private conns elements by Amaury Denoyelle · 9 months ago
- 2b85a64 BUG/MEDIUM: mux-fcgi: Properly handle EOM flag on end-of-trailers HTX block by Christopher Faulet · 8 months ago
- e0c6ef4 BUG/MEDIUM: mux-fcgi: fail earlier on malloc in takeover() by Willy Tarreau · 1 year ago
- 6be40a4 BUG/MEDIUM: mux-fcgi: Don't swap trash and dbuf when handling STDERR records by Christopher Faulet · 1 year, 3 months ago
- efebff3 BUG/MEDIUM: mux-fcgi: Don't request more room if mux is waiting for more data by Christopher Faulet · 1 year, 7 months ago
- a272c39 BUG/MEDIUM: mux-fcgi: Never set SE_FL_EOS without SE_FL_EOI or SE_FL_ERROR by Christopher Faulet · 1 year, 7 months ago
- b1ec21d CLEANUP: Stop checking the pointer before calling `tasklet_free()` by Tim Duesterhus · 1 year, 7 months ago
- 3a7b539 BUG/MEDIUM: connection: Preserve flags when a conn is removed from an idle list by Christopher Faulet · 1 year, 9 months ago
- 5e1b0e7 BUG/MEDIUM: connection: Clear flags when a conn is removed from an idle list by Christopher Faulet · 1 year, 9 months ago
- 26a9ac5 BUG/MINOR: mux-fcgi: Correctly set pathinfo by Paul Barnetta · 1 year, 11 months ago
- ab79b32 MEDIUM: mux-fcgi: Introduce flags to deal with connection read/write errors by Christopher Faulet · 2 years, 2 months ago
- 52fd8a1 BUG/MEDIUM: mux-fcgi: Avoid value length overflow when it doesn't fit at once by Christopher Faulet · 2 years ago
- e8c7fb3 BUG/MINOR: mux-fcgi: Be sure to send empty STDING record in case of zero-copy by Christopher Faulet · 2 years ago
- 3965aa7 REORG: mux-fcgi: Extract flags and enums into mux_fcgi-t.h by Christopher Faulet · 2 years, 2 months ago
- 8522348 BUG/MAJOR: conn-idle: fix hash indexing issues on idle conns by Willy Tarreau · 2 years, 2 months ago
- 4105461 BUG/MINOR: mux-fcgi: fix the "show fd" dest buffer for the subscriber by Willy Tarreau · 2 years, 3 months ago
- 3b64a28 CLEANUP: assorted typo fixes in the code and comments by Ilya Shipitsin · 2 years, 4 months ago
- d46b5b9 BUILD: htx: use the unchecked version of htx_get_head_blk() where needed by Willy Tarreau · 2 years, 6 months ago
- 186367f CLEANUP: muxes: Consider stream's sd as defined in .show_fd callback functions by Christopher Faulet · 2 years, 6 months ago
- 5aa5e77 CLEANUP: mux-fcgi: rename the "endp" field to "sd" by Willy Tarreau · 2 years, 6 months ago
- c92a6ca CLEANUP: mux-fcgi: rename all occurrences of stconn "cs" to "sc" by Willy Tarreau · 2 years, 6 months ago
- d137353 CLEANUP: muxes: rename "get_first_cs" to "get_first_sc" by Willy Tarreau · 2 years, 6 months ago
- cb086c6 REORG: stconn: rename conn_stream.{c,h} to stconn.{c,h} by Willy Tarreau · 2 years, 6 months ago
- 5edca2f REORG: rename cs_utils.h to sc_strm.h by Willy Tarreau · 2 years, 6 months ago
- 74568cf CLEANUP: stconn: rename final state manipulation functions from cs_* to sc_* by Willy Tarreau · 2 years, 6 months ago
- d68ff01 CLEANUP: stconn: rename cs{,_get}_{src,dst} to sc_* by Willy Tarreau · 2 years, 6 months ago
- 19c65a9 CLEANUP: stconn: rename remaining management functions from cs_* to sc_* by Willy Tarreau · 2 years, 6 months ago
- 967955b CLEANUP: stconn: rename cs_ep_set_error() to se_fl_set_error() by Willy Tarreau · 2 years, 6 months ago
- 6fe2b42 CLEANUP: stconn: rename cs_mux() to sc_mux_strm() by Willy Tarreau · 2 years, 6 months ago
- ea27f48 CLEANUP: stconn: rename cs_{check,strm,strm_task} to sc_strm_* by Willy Tarreau · 2 years, 6 months ago
- 2f2318d MEDIUM: stconn: merge the app_ops and the data_cb fields by Willy Tarreau · 2 years, 6 months ago
- c105492 CLEANUP: stdesc: rename the stream connector ->cs field to ->sc by Willy Tarreau · 2 years, 6 months ago
- 7753427 CLEANUP: mux-fcgi: add and use fcgi_strm_sc() to retrieve the stream connector by Willy Tarreau · 2 years, 6 months ago
- 4596fe2 CLEANUP: conn_stream: tree-wide rename to stconn (stream connector) by Willy Tarreau · 2 years, 6 months ago
- 798465b CLEANUP: conn_stream: rename the conn_stream's endp to sedesc by Willy Tarreau · 2 years, 6 months ago
- ea59b02 CLEANUP: conn_stream: rename cs_endpoint to sedesc (stream endpoint descriptor) by Willy Tarreau · 2 years, 6 months ago
- 65d0597 CLEANUP: conn_stream: rename the cs_endpoint's target to "se" by Willy Tarreau · 2 years, 7 months ago
- b605c42 CLEANUP: conn_stream: rename the stream endpoint flags CS_EP_* to SE_FL_* by Willy Tarreau · 2 years, 6 months ago
- d56377c CLEANUP: conn_stream: apply endp_flags.cocci tree-wide by Willy Tarreau · 2 years, 6 months ago
- 4201ab7 CLEANUP: muxes: make mux->attach/detach take a conn_stream endpoint by Willy Tarreau · 2 years, 7 months ago
- b57669e MINOR: mux-fcgi: remove the now unneeded conn_stream from the fcgi_strm by Willy Tarreau · 2 years, 7 months ago
- c84610c MINOR: mux-fcgi: make sure any stream always has an endpoint by Willy Tarreau · 2 years, 7 months ago
- 7d299c2 CLEANUP: mux-fcgi: always take the endp from the fstrm not the cs by Willy Tarreau · 2 years, 7 months ago
- 386346f MINOR: conn_stream: make cs_set_error() work on the endpoint instead by Willy Tarreau · 2 years, 7 months ago
- 2db904e BUG/MEDIUM: mux-fcgi: Be sure to never set EOM flag on an empty HTX message by Christopher Faulet · 2 years, 7 months ago
- 4de1bff MINOR: muxes: Don't expect to call release function with no mux defined by Christopher Faulet · 2 years, 8 months ago
- 4e61096 MINOR: muxes: Don't handle proto upgrade for muxes not supporting it by Christopher Faulet · 2 years, 8 months ago
- 7c452cc MINOR: muxes: Don't expect to have a mux without connection in destroy callback by Christopher Faulet · 2 years, 8 months ago
- 22050e0 MINOR: muxes: Improve show_fd callbacks to dump endpoint flags by Christopher Faulet · 2 years, 8 months ago
- 6b0a0fb CLEANUP: tree-wide: Remove any ref to stream-interfaces by Christopher Faulet · 2 years, 8 months ago
- 64b8d33 MINOR: connection: unconst mux's get_fist_cs() callback function by Christopher Faulet · 2 years, 8 months ago
- 070b91b MEDIUM: conn-stream: Be prepared to fail to attach a cs to a mux by Christopher Faulet · 2 years, 8 months ago
- 0797656 MINOR: conn-stream/connection: Move SHR/SHW modes in the connection scope by Christopher Faulet · 2 years, 8 months ago
- ca2b527 MINOR: mux-h2/mux-fcgi: Fully rely on CS_EP_KILL_CONN by Christopher Faulet · 2 years, 8 months ago
- 8da67aa MEDIUM: stream-int/conn-stream: Move src/dst addresses in the conn-stream by Christopher Faulet · 2 years, 8 months ago
- 908628c MEDIUM: tree-wide: Use CS util functions instead of SI ones by Christopher Faulet · 2 years, 8 months ago
- b041b23 MEDIUM: conn-stream: Move remaning flags from CS to endpoint by Christopher Faulet · 2 years, 8 months ago
- 9ec2f4d MAJOR: conn-stream: Share endpoint struct between the CS and the mux/applet by Christopher Faulet · 2 years, 8 months ago
- a9e8b39 MEDIUM: conn-stream: Pre-allocate endpoint to create CS from muxes and applets by Christopher Faulet · 2 years, 8 months ago
- e9e4820 MINOR: conn-stream: Move some CS flags to the endpoint by Christopher Faulet · 2 years, 8 months ago
- db90f2a MEDIUM: conn-stream: Add an endpoint structure in the conn-stream by Christopher Faulet · 2 years, 8 months ago
- 9388204 MAJOR: conn-stream: Invert conn-stream endpoint and its context by Christopher Faulet · 2 years, 10 months ago
- d9fc128 BUG/MEDIUM: mux-fcgi: Properly handle return value of headers/trailers parsing by Christopher Faulet · 2 years, 8 months ago
- 7750850 CLEANUP: Reapply ist.cocci with `--include-headers-for-types --recursive-includes` by Tim Duesterhus · 2 years, 9 months ago
- a6a3279 CLEANUP: fcgi: Use `istadv()` in `fcgi_strm_send_params` by Tim Duesterhus · 2 years, 9 months ago
- 98f05f6 CLEANUP: fcgi: Replace memcpy() on ist by istcat() by Tim Duesterhus · 2 years, 9 months ago
- b4b0377 MEDIUM: proxy: Store server_id_hdr_name as a `struct ist` by Tim Duesterhus · 2 years, 9 months ago
- 4ab8438 BUG/MEDIUM: mux-fcgi: Don't rely on SI src/dst addresses for FCGI health-checks by Christopher Faulet · 2 years, 9 months ago
- 693b23b MEDIUM: tree-wide: Use unsafe conn-stream API when it is relevant by Christopher Faulet · 2 years, 9 months ago
- f835dea MEDIUM: conn_stream: Add a pointer to the app object into the conn-stream by Christopher Faulet · 3 years ago
- 897d612 MEDIUM: conn-stream: No longer access connection field directly by Christopher Faulet · 3 years ago
- 1329f2a REORG: conn_stream: move conn-stream stuff in dedicated files by Christopher Faulet · 3 years ago
- e00ad35 MEDIUM: stream: No longer release backend conn-stream on connection retry by Christopher Faulet · 3 years ago
- 31a8306 BUILD: mux_fcgi: avoid aliasing of a const struct in traces by Willy Tarreau · 2 years, 10 months ago
- 9f7ed8a CLEANUP: Apply ist.cocci by Tim Duesterhus · 3 years, 1 month ago
- 568008d MINOR: mux-fcgi: Rely on client addresses at stream level to set default params by Christopher Faulet · 3 years, 1 month ago
- dfd10ab MINOR: proxy: Introduce proxy flags to replace disabled bitfield by Christopher Faulet · 3 years, 2 months ago
- b4e3476 REORG: thread/sched: move the last dynamic thread_info to thread_ctx by Willy Tarreau · 3 years, 2 months ago
- d2ae385 CLEANUP: mux_fcgi: remove dependency on ssl_sock by Willy Tarreau · 3 years, 2 months ago
- 1057bee REORG: ssl: move ssl_sock_is_ssl() to connection.h and rename it by Willy Tarreau · 3 years, 2 months ago
- 63617db BUILD: idleconns: include missing ebmbtree.h at several places by Willy Tarreau · 3 years, 2 months ago
- beeabf5 MINOR: task: provide 3 task_new_* wrappers to simplify the API by Willy Tarreau · 3 years, 2 months ago
- da3adeb BUG/MEDIUM: mux-h1/mux-fcgi: Reject messages with unknown transfer encoding by Christopher Faulet · 3 years, 2 months ago
- f56e846 BUG/MINOR: mux-h1/mux-fcgi: Sanitize TE header to only send "trailers" by Christopher Faulet · 3 years, 2 months ago
- 564e39c MINOR: stream-int: Notify mux when the buffer is not stuck when calling rcv_buf by Christopher Faulet · 3 years, 2 months ago
- 0188108 CLEANUP: assorted typo fixes in the code and comments by Ilya Shipitsin · 3 years, 4 months ago
- c453f95 MINOR: http: use http uri parser for path by Amaury Denoyelle · 3 years, 5 months ago
- 5cd0e52 BUG/MINOR: mux-fcgi: Expose SERVER_SOFTWARE parameter by default by Christopher Faulet · 3 years, 6 months ago
- bf77430 CLEANUP: mux-fcgi: Don't needlessly store result of data/trailers parsing by Christopher Faulet · 3 years, 6 months ago
- 00d7cde MINOR: muxes/h1-htx: Realign input buffer using b_slow_realign_ofs() by Christopher Faulet · 3 years, 10 months ago
- 16a524c MINOR: mux-h1/mux-fcgi: Don't needlessly loop on data parsing by Christopher Faulet · 3 years, 10 months ago
- de471a4 MINOR: h1-htx: Update h1 parsing functions to return result as a size_t by Christopher Faulet · 3 years, 10 months ago
- 714f345 DOC: fix a few remainig cases of "Haproxy" and "HAproxy" in doc and comments by Willy Tarreau · 3 years, 7 months ago
- c5396bd BUILD: mux-fcgi: include proxy.h from mux-fcgi.c by Willy Tarreau · 3 years, 7 months ago
- fb38c91 BUG/MINOR: mux-fcgi: Don't send normalized uri to FCGI application by Christopher Faulet · 3 years, 7 months ago
- 2b71810 CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion by Willy Tarreau · 3 years, 7 months ago
- 6eb3d37 MINOR: trace: make trace sources read_mostly by Willy Tarreau · 3 years, 8 months ago
- a460057 MINOR: muxes: Add a flag to notify a mux does not support any upgrade by Christopher Faulet · 3 years, 9 months ago
- d68d4f1 MEDIUM: dynbuf: remove last usages of b_alloc_margin() by Willy Tarreau · 3 years, 8 months ago
- 7416314 CLEANUP: task: make sure tasklet handlers always indicate their statuses by Willy Tarreau · 3 years, 9 months ago