1. b1ec21d CLEANUP: Stop checking the pointer before calling `tasklet_free()` by Tim Duesterhus · 1 year, 7 months ago
  2. 88dd0b0 CLEANUP: mux-h1/mux-pt: Remove useless test on SE_FL_SHR/SE_FL_SHW flags by Christopher Faulet · 1 year, 8 months ago
  3. 872b01c MINOR: mux-pt: Report end-of-input with the end-of-stream after a read by Christopher Faulet · 1 year, 8 months ago
  4. e5d02c3 BUG/MEDIUM: mux-pt: Set EOS on error on sending path if read0 was received by Christopher Faulet · 1 year, 9 months ago
  5. b65af26 MEDIUM: mux-pt: Don't always set a final error on SE on the sending path by Christopher Faulet · 2 years, 2 months ago
  6. 9e00da1 CLEANUP: mux-pt: rename the "endp" field to "sd" by Willy Tarreau · 2 years, 6 months ago
  7. e68bc61 CLEANUP: stconn: replace a few remaining occurrences of CS in comments or traces by Willy Tarreau · 2 years, 6 months ago
  8. 7577d9d CLEANUP: mux-pt: rename all occurrences of stconn "cs" to "sc" by Willy Tarreau · 2 years, 6 months ago
  9. d137353 CLEANUP: muxes: rename "get_first_cs" to "get_first_sc" by Willy Tarreau · 2 years, 6 months ago
  10. cb086c6 REORG: stconn: rename conn_stream.{c,h} to stconn.{c,h} by Willy Tarreau · 2 years, 6 months ago
  11. 19c65a9 CLEANUP: stconn: rename remaining management functions from cs_* to sc_* by Willy Tarreau · 2 years, 6 months ago
  12. a0b58b5 CLEANUP: stconn: rename cs_{new,create,free,destroy}_* to sc_* by Willy Tarreau · 2 years, 6 months ago
  13. fd9417b CLEANUP: stconn: rename cs_conn() to sc_conn() by Willy Tarreau · 2 years, 6 months ago
  14. 2f2318d MEDIUM: stconn: merge the app_ops and the data_cb fields by Willy Tarreau · 2 years, 6 months ago
  15. c105492 CLEANUP: stdesc: rename the stream connector ->cs field to ->sc by Willy Tarreau · 2 years, 6 months ago
  16. 32c095b CLEANUP: mux-pt: add and use pt_sc() to retrieve the stream connector by Willy Tarreau · 2 years, 6 months ago
  17. 4596fe2 CLEANUP: conn_stream: tree-wide rename to stconn (stream connector) by Willy Tarreau · 2 years, 6 months ago
  18. 798465b CLEANUP: conn_stream: rename the conn_stream's endp to sedesc by Willy Tarreau · 2 years, 6 months ago
  19. ea59b02 CLEANUP: conn_stream: rename cs_endpoint to sedesc (stream endpoint descriptor) by Willy Tarreau · 2 years, 6 months ago
  20. 65d0597 CLEANUP: conn_stream: rename the cs_endpoint's target to "se" by Willy Tarreau · 2 years, 7 months ago
  21. b605c42 CLEANUP: conn_stream: rename the stream endpoint flags CS_EP_* to SE_FL_* by Willy Tarreau · 2 years, 6 months ago
  22. d56377c CLEANUP: conn_stream: apply endp_flags.cocci tree-wide by Willy Tarreau · 2 years, 6 months ago
  23. 24d15b1 CLEANUP: conn_stream: rename the cs_endpoint's context to "conn" by Willy Tarreau · 2 years, 7 months ago
  24. 6796a06 CLEANUP: conn_stream: merge cs_new_from_{mux,applet} into cs_new_from_endp() by Willy Tarreau · 2 years, 7 months ago
  25. 4201ab7 CLEANUP: muxes: make mux->attach/detach take a conn_stream endpoint by Willy Tarreau · 2 years, 7 months ago
  26. cfbfc3f MINOR: mux-pt: remove the now unneeded conn_stream from the context by Willy Tarreau · 2 years, 7 months ago
  27. 7a2705f CLEANUP: mux-pt: always take the endp from the context not the cs by Willy Tarreau · 2 years, 7 months ago
  28. 4de1bff MINOR: muxes: Don't expect to call release function with no mux defined by Christopher Faulet · 2 years, 8 months ago
  29. 7c452cc MINOR: muxes: Don't expect to have a mux without connection in destroy callback by Christopher Faulet · 2 years, 8 months ago
  30. 64b8d33 MINOR: connection: unconst mux's get_fist_cs() callback function by Christopher Faulet · 2 years, 8 months ago
  31. 070b91b MEDIUM: conn-stream: Be prepared to fail to attach a cs to a mux by Christopher Faulet · 2 years, 8 months ago
  32. 0797656 MINOR: conn-stream/connection: Move SHR/SHW modes in the connection scope by Christopher Faulet · 2 years, 8 months ago
  33. 1bceee2 MINOR: mux-pt: Rely on the endpoint instead of the conn-stream when possible by Christopher Faulet · 2 years, 8 months ago
  34. b041b23 MEDIUM: conn-stream: Move remaning flags from CS to endpoint by Christopher Faulet · 2 years, 8 months ago
  35. 9ec2f4d MAJOR: conn-stream: Share endpoint struct between the CS and the mux/applet by Christopher Faulet · 2 years, 8 months ago
  36. a9e8b39 MEDIUM: conn-stream: Pre-allocate endpoint to create CS from muxes and applets by Christopher Faulet · 2 years, 8 months ago
  37. b669d68 MEDIUM: conn-stream: Be able to pass endpoint to create a conn-stream by Christopher Faulet · 2 years, 8 months ago
  38. e9e4820 MINOR: conn-stream: Move some CS flags to the endpoint by Christopher Faulet · 2 years, 8 months ago
  39. db90f2a MEDIUM: conn-stream: Add an endpoint structure in the conn-stream by Christopher Faulet · 2 years, 8 months ago
  40. 9388204 MAJOR: conn-stream: Invert conn-stream endpoint and its context by Christopher Faulet · 2 years, 10 months ago
  41. 413713f BUG/MAJOR: mux_pt: always report the connection error to the conn_stream by Willy Tarreau · 2 years, 8 months ago
  42. fbff854 BUG/MAJOR: mux-pt: Always destroy the backend connection on detach by Christopher Faulet · 2 years, 9 months ago
  43. 693b23b MEDIUM: tree-wide: Use unsafe conn-stream API when it is relevant by Christopher Faulet · 2 years, 9 months ago
  44. 2da02ae BUILD: tree-wide: Avoid warnings about undefined entities retrieved from a CS by Christopher Faulet · 2 years, 9 months ago
  45. cda94ac MAJOR: stream/conn_stream: Move the stream-interface into the conn-stream by Christopher Faulet · 3 years ago
  46. f835dea MEDIUM: conn_stream: Add a pointer to the app object into the conn-stream by Christopher Faulet · 3 years ago
  47. 13a35e5 MAJOR: conn_stream/stream-int: move the appctx to the conn-stream by Christopher Faulet · 3 years ago
  48. dd2d0d8 MEDIUM: conn-stream: Be prepared to use an appctx as conn-stream endpoint by Christopher Faulet · 3 years ago
  49. 897d612 MEDIUM: conn-stream: No longer access connection field directly by Christopher Faulet · 3 years ago
  50. 1329f2a REORG: conn_stream: move conn-stream stuff in dedicated files by Christopher Faulet · 3 years ago
  51. e00ad35 MEDIUM: stream: No longer release backend conn-stream on connection retry by Christopher Faulet · 3 years ago
  52. 564e39c MINOR: stream-int: Notify mux when the buffer is not stuck when calling rcv_buf by Christopher Faulet · 3 years, 2 months ago
  53. 6eb3d37 MINOR: trace: make trace sources read_mostly by Willy Tarreau · 3 years, 8 months ago
  54. e2c65ba BUG/MINOR: mux-pt: Fix a possible UAF because of traces in mux_pt_io_cb by Christopher Faulet · 3 years, 8 months ago
  55. c0ae097 MINOIR: mux-pt/trace: Register a new trace source with its events by Christopher Faulet · 3 years, 8 months ago
  56. 28da3f5 MEDIUM: mux-pt: Expose passthrough in the list of supported mux protocols by Christopher Faulet · 3 years, 10 months ago
  57. 7416314 CLEANUP: task: make sure tasklet handlers always indicate their statuses by Willy Tarreau · 3 years, 9 months ago
  58. 144f84a MEDIUM: task: extend the state field to 32 bits by Willy Tarreau · 3 years, 9 months ago
  59. 691d503 MINOR: xprt/mux: export all *_io_cb functions so that "show fd" resolves them by Willy Tarreau · 3 years, 10 months ago
  60. 2ded48d MINOR: connection: make conn_sock_drain() use the control layer's ->drain() by Willy Tarreau · 4 years ago
  61. 7d7b11c MINOR: mux-pt: take care of CS_SHR_DRAIN in shutr() by Willy Tarreau · 4 years ago
  62. 4c8ad84 MINOR: mux: Add a ctl parameter to get the exit status of the multiplexers by Christopher Faulet · 4 years, 2 months ago
  63. 26256f8 MINOR: stream: Pass an optional input buffer when a stream is created by Christopher Faulet · 4 years, 3 months ago
  64. 5a7ca29 BUG/MEDIUM: mux-pt: Release the tasklet during an HTTP upgrade by Christopher Faulet · 4 years, 1 month ago
  65. 236c93b MINOR: connection: Set the conncetion target during its initialisation by Christopher Faulet · 4 years, 5 months ago
  66. 46a030c CLEANUP: assorted typo fixes in the code and comments by Ilya Shipitsin · 4 years, 5 months ago
  67. dfd3de8 REORG: include: move stream.h to haproxy/stream{,-t}.h by Willy Tarreau · 4 years, 6 months ago
  68. 7ea393d REORG: include: move connection.h to haproxy/connection{,-t}.h by Willy Tarreau · 4 years, 6 months ago
  69. cea0e1b REORG: include: move task.h to haproxy/task{,-t}.h by Willy Tarreau · 4 years, 6 months ago
  70. 16f958c REORG: include: split common/htx.h into haproxy/htx{,-t}.h by Willy Tarreau · 4 years, 6 months ago
  71. 4c7e4b7 REORG: include: update all files to use haproxy/api.h or api-t.h if needed by Willy Tarreau · 4 years, 6 months ago
  72. a48e7ec MINOR: mux_pt: Don't try to remove the connection from the idle list. by Olivier Houchard · 4 years, 9 months ago
  73. 6d01572 MINOR: connection: remove checks for CO_FL_HANDSHAKE before I/O by Willy Tarreau · 4 years, 10 months ago
  74. 911db9b MEDIUM: connection: use CO_FL_WAIT_XPRT more consistently than L4/L6/HANDSHAKE by Willy Tarreau · 4 years, 10 months ago
  75. c192b0a MEDIUM: connection: remove CO_FL_CONNECTED and only rely on CO_FL_WAIT_* by Willy Tarreau · 4 years, 10 months ago
  76. ee1a6fc MINOR: connection: make the last arg of subscribe() a struct wait_event* by Willy Tarreau · 4 years, 11 months ago
  77. 7872d1f MEDIUM: connection: merge the send_wait and recv_wait entries by Willy Tarreau · 4 years, 11 months ago
  78. 17ccd1a BUG/MEDIUM: connection: add a mux flag to indicate splice usability by Willy Tarreau · 4 years, 11 months ago
  79. 9b8e11e MINOR: mux: Add a new method to get informations about a mux. by Olivier Houchard · 5 years ago
  80. 2ed389d BUG/MEDIUM: mux_pt: Only call the wake emthod if nobody subscribed to receive. by Olivier Houchard · 5 years ago
  81. ea510fc BUG/MEDIUM: mux_pt: Don't destroy the connection if we have a stream attached. by Olivier Houchard · 5 years ago
  82. 9dce2c5 Revert e8826ded5fea3593d89da2be5c2d81c522070995. by Olivier Houchard · 5 years ago
  83. e8826de BUG/MEDIUM: mux_pt: Make sure we don't have a conn_stream before freeing. by Olivier Houchard · 5 years ago
  84. ea32b0f BUG/MEDIUM: mux_pt: Don't call unsubscribe if we did not subscribe. by Olivier Houchard · 5 years ago
  85. 3193037 MAJOR: http: Deprecate and ignore the option "http-use-htx" by Christopher Faulet · 5 years ago
  86. 9cca8df BUG/MINOR: mux-pt: do not pretend there's more data after a read0 by Willy Tarreau · 5 years ago
  87. 3c39a7d CLEANUP: connection: rename the wait_event.task field to .tasklet by Willy Tarreau · 5 years ago
  88. e573323 CLEANUP: build: rename some build macros to use the USE_* ones by Willy Tarreau · 6 years ago
  89. e179d0e MEDIUM: connections: Provide a xprt_ctx for each xprt method. by Olivier Houchard · 6 years ago
  90. 61840e7 BUG/MEDIUM: muxes: Don't dereference mux context if null in release functions by Christopher Faulet · 6 years ago
  91. 39a96ee MEDIUM: muxes: Be prepared to don't own connection during the release by Christopher Faulet · 6 years ago
  92. 73c1207 MINOR: muxes: Pass the context of the mux to destroy() instead of the connection by Christopher Faulet · 6 years ago
  93. 51f73eb MEDIUM: muxes: Add an optional input buffer during mux initialization by Christopher Faulet · 6 years ago
  94. 87a8f35 CLEANUP: muxes/stream-int: Remove flags CS_FL_READ_NULL and SI_FL_READ_NULL by Christopher Faulet · 6 years ago
  95. 203b2b0 MINOR: muxes: Report the Last read with a dedicated flag by Christopher Faulet · 6 years ago
  96. 9c9da5e MINOR: muxes: Don't bother to LIST_DEL(&conn->list) before calling conn_free(). by Olivier Houchard · 6 years ago
  97. 00f18a3 BUG/MINOR: server: fix logic flaw in idle connection list management by Willy Tarreau · 6 years ago
  98. 3d2ee55 CLEANUP: connection: rename conn->mux_ctx to conn->ctx by Willy Tarreau · 6 years ago
  99. 4f6516d CLEANUP: connection: rename subscription events values and event field by Willy Tarreau · 6 years ago
  100. d94f877 BUG/MINOR: mux_pt: Set CS_FL_WANT_ROOM when count is zero in rcv_buf() callback by Christopher Faulet · 6 years ago