1. a9e1c4c MINOR: connection: Add a function to install a mux for a health-check by Christopher Faulet · 4 years, 2 months ago
  2. e60abd1 MINOR: connection: Add macros to know if a conn or a cs uses an HTX mux by Christopher Faulet · 4 years, 3 months ago
  3. cf612a0 MINOR: servers: Add a counter for the number of currently used connections. by Olivier Houchard · 4 years, 3 months ago
  4. 566df30 MEDIUM: connections: Attempt to get idle connections from other threads. by Olivier Houchard · 4 years, 4 months ago
  5. f0d4dff MINOR: connections: Make the "list" element a struct mt_list instead of list. by Olivier Houchard · 4 years, 4 months ago
  6. 77e3b4a CLEANUP: assorted typo fixes in the code and comments by Ilya Shipitsin · 4 years, 4 months ago
  7. cf6e0c8 MEDIUM: proxy_protocol: Support sending unique IDs using PPv2 by Tim Duesterhus · 4 years, 4 months ago
  8. d1b15b6 MINOR: proxy_protocol: Ingest PP2_TYPE_UNIQUE_ID on incoming connections by Tim Duesterhus · 4 years, 4 months ago
  9. 927063b CLEANUP: conn: Do not pass a pointer to likely by Tim Duesterhus · 4 years, 4 months ago
  10. 5d4d180 CLEANUP: connection: remove the definitions of conn_xprt_{stop,want}_{send,recv} by Willy Tarreau · 4 years, 4 months ago
  11. d1d14c3 MINOR: connection: remove the last calls to conn_xprt_{want,stop}_* by Willy Tarreau · 4 years, 4 months ago
  12. 19bc201 MEDIUM: connection: remove the intermediary polling state from the connection by Willy Tarreau · 4 years, 4 months ago
  13. 477902b MEDIUM: connections: Get ride of the xprt_done callback. by Olivier Houchard · 4 years, 5 months ago
  14. ee1a6fc MINOR: connection: make the last arg of subscribe() a struct wait_event* by Willy Tarreau · 4 years, 6 months ago
  15. 7872d1f MEDIUM: connection: merge the send_wait and recv_wait entries by Willy Tarreau · 4 years, 6 months ago
  16. 3381bf8 MEDIUM: connection: get rid of CO_FL_CURR_* flags by Willy Tarreau · 4 years, 6 months ago
  17. e2a0eec MINOR: connection: move the CO_FL_WAIT_ROOM cleanup to the reader only by Willy Tarreau · 4 years, 6 months ago
  18. 4970e5a REORG: connection: move tcp_connect_probe() to conn_fd_check() by Willy Tarreau · 4 years, 6 months ago
  19. 859dc80 MEDIUM: list: Separate "locked" list from regular list. by Olivier Houchard · 5 years ago
  20. 4ac9d06 MEDIUM: fd: mark the FD as ready when it's inserted by Willy Tarreau · 4 years, 10 months ago
  21. 5bee3e2 MEDIUM: fd: remove the FD_EV_POLLED status bit by Willy Tarreau · 4 years, 10 months ago
  22. 7185b78 MINOR: connection: add the fc_pp_authority fetch -- authority TLV, from PROXYv2 by Geoff Simmons · 4 years, 10 months ago
  23. e71fca8 MAJOR: connection: remove the addr field by Willy Tarreau · 5 years ago
  24. ca79f59 MEDIUM: connection: make sure all address producers allocate their address by Willy Tarreau · 5 years ago
  25. ff5d57b MINOR: connection: create a new pool for struct sockaddr_storage by Willy Tarreau · 5 years ago
  26. 226572f MINOR: connection: use conn->{src,dst} instead of &conn->addr.{from,to} by Willy Tarreau · 5 years ago
  27. 1ef4cbc MINOR: connection: add new src and dst fields by Willy Tarreau · 5 years ago
  28. cc4df3b CLEANUP: connection: remove the now unused conn_get_{from,to}_addr() by Willy Tarreau · 5 years ago
  29. 2e34c11 MINOR: connection: add conn_get_src() and conn_get_dst() by Willy Tarreau · 5 years ago
  30. c985f6c MINOR: connection: Remove the multiplexer protocol PROTO_MODE_HTX by Christopher Faulet · 5 years ago
  31. 4be7190 BUG/MEDIUM: servers: Fix a race condition with idle connections. by Olivier Houchard · 5 years ago
  32. 2ab3dad BUG/MEDIUM: connections: Make sure we're unsubscribe before upgrading the mux. by Olivier Houchard · 5 years ago
  33. 6c7e96a BUG/MEDIUM: connections: Always call shutdown, with no linger. by Olivier Houchard · 5 years ago
  34. fe4abe6 BUG/MEDIUM: connections: Don't call shutdown() if we want to disable linger. by Olivier Houchard · 5 years ago
  35. 3c39a7d CLEANUP: connection: rename the wait_event.task field to .tasklet by Willy Tarreau · 5 years ago
  36. 03abf2d MEDIUM: connections: Remove CONN_FL_SOCK* by Olivier Houchard · 5 years ago
  37. fe50bfb MEDIUM: connections: Introduce a handshake pseudo-XPRT. by Olivier Houchard · 5 years ago
  38. 7bb39d7 CLEANUP: connection: remove the now unused CS_FL_REOS flag by Willy Tarreau · 5 years ago
  39. 2a54bb7 MEDIUM: connection: Upstream SOCKS4 proxy support by Alexander Liu · 5 years ago
  40. ca2a3cc MINOR: connection: report the mux names in "haproxy -vv" by Willy Tarreau · 5 years ago
  41. 478281f BUG/MEDIUM: connections: Don't forget to set xprt_ctx to NULL on close. by Olivier Houchard · 5 years ago
  42. 5e6a5b3 MINOR: connection: make the debugging helper functions safer by Willy Tarreau · 5 years ago
  43. c1918d1 BUG/MAJOR: muxes: Use the HTX mode to find the best mux for HTTP proxies only by Christopher Faulet · 5 years ago
  44. e179d0e MEDIUM: connections: Provide a xprt_ctx for each xprt method. by Olivier Houchard · 5 years ago
  45. 7b5fd1e MEDIUM: connections: Move some fields from struct connection to ssl_sock_ctx. by Olivier Houchard · 5 years ago
  46. c0016d8 MEDIUM: connection: Add conn_upgrade_mux_fe() to handle mux upgrades by Christopher Faulet · 5 years ago
  47. 51f73eb MEDIUM: muxes: Add an optional input buffer during mux initialization by Christopher Faulet · 5 years ago
  48. 237985b MEDIUM: connections: Use _HA_ATOMIC_* by Olivier Houchard · 5 years ago
  49. c912f94 MINOR: server: remove a few unneeded LIST_INIT calls after LIST_DEL_LOCKED by Willy Tarreau · 5 years ago
  50. 7f1bc31 MEDIUM: servers: Used a locked list for idle_orphan_conns. by Olivier Houchard · 5 years ago
  51. f131481 BUG/MEDIUM: servers: Add a per-thread counter of idle connections. by Olivier Houchard · 5 years ago
  52. e737103 BUG/MEDIUM: servers: Use atomic operations when handling curr_idle_conns. by Olivier Houchard · 5 years ago
  53. 762475e BUG/MEDIUM: connection: properly unregister the mux on failed initialization by Willy Tarreau · 5 years ago
  54. a2dbeb2 MEDIUM: sessions: Keep track of which connections are idle. by Olivier Houchard · 6 years ago
  55. 351411f BUG/MAJOR: sessions: Use an unlimited number of servers for the conn list. by Olivier Houchard · 6 years ago
  56. e9f4301 MINOR: connection: add cs_set_error() to set the error bits by Willy Tarreau · 6 years ago
  57. 94031d3 MINOR: connection: remove an unwelcome dependency on struct stream by Willy Tarreau · 6 years ago
  58. 3d2ee55 CLEANUP: connection: rename conn->mux_ctx to conn->ctx by Willy Tarreau · 6 years ago
  59. 4f6516d CLEANUP: connection: rename subscription events values and event field by Willy Tarreau · 6 years ago
  60. a4d4fdf MEDIUM: sessions: Don't keep an infinite number of idling connections. by Olivier Houchard · 6 years ago
  61. f502aca MEDIUM: mux: provide the session to the init() and attach() method. by Olivier Houchard · 6 years ago
  62. 006e310 MEDIUM: servers: Add a command to limit the number of idling connections. by Olivier Houchard · 6 years ago
  63. 1a18b54 REORG: connection: centralize the conn_set_{tos,mark,quickack} functions by Willy Tarreau · 6 years ago
  64. 5fc311c MINOR: connection: create conn_get_best_mux_entry() by Willy Tarreau · 6 years ago
  65. d3c49d1 BUG/MINOR: connection: report mux modes when HTX is supported by Willy Tarreau · 6 years ago
  66. 00cf70f MAJOR: sessions: Store multiple outgoing connections in the session. by Olivier Houchard · 6 years ago
  67. 8ceae72 MEDIUM: init: use initcall for all fixed size pool creations by Willy Tarreau · 6 years ago
  68. 201b9f4 MAJOR: connections: Defer mux creation for outgoing connection if alpn is set. by Olivier Houchard · 6 years ago
  69. 7c6f8b1 MAJOR: connections: Detach connections from streams. by Olivier Houchard · 6 years ago
  70. 131fd89 MINOR: sessions: Start to store the outgoing connection in sessions. by Olivier Houchard · 6 years ago
  71. fafd398 MINOR: mux: implement a get_first_cs() method by Willy Tarreau · 6 years ago
  72. 68ad3a4 MINOR: proxy: add a new option "http-use-htx" by Willy Tarreau · 6 years ago
  73. 53216e7 MEDIUM: connections: Don't directly mess with the polling from the upper layers. by Olivier Houchard · 6 years ago
  74. 1fddc9b BUG/MEDIUM: connections: Remove subscription if going in idle mode. by Olivier Houchard · 6 years ago
  75. fa8aa86 MEDIUM: connections: Change struct wait_list to wait_event. by Olivier Houchard · 6 years ago
  76. 83a0cd8 MINOR: connections: Introduce an unsubscribe method. by Olivier Houchard · 6 years ago
  77. 55e0da6 BUILD: connection: silence a couple of null-deref build warnings at -Wextra by Willy Tarreau · 6 years ago
  78. 175a2bb MINOR: connection: pass the proxy when creating a connection by Willy Tarreau · 6 years ago
  79. 7138455 MINOR: conn_streams: Remove wait_list from conn_streams. by Olivier Houchard · 6 years ago
  80. 4cf7fb1 MEDIUM: connections/mux: Add a recv and a send+recv wait list. by Olivier Houchard · 6 years ago
  81. 57f8185 MINOR: connection: add new function conn_is_back() by Willy Tarreau · 6 years ago
  82. 6ac98ac MINOR: connection: add new function conn_get_proxy() by Willy Tarreau · 6 years ago
  83. be37315 MINOR: connection: make the initialization more consistent by Willy Tarreau · 6 years ago
  84. 1b13bfd BUG/MEDIUM: connection: don't forget to always delete the list's head by Willy Tarreau · 6 years ago
  85. e1c6dbc MINOR: connections/mux: Add the wait reason(s) to wait_list. by Olivier Houchard · 6 years ago
  86. ed0f207 MINOR: connections: Get rid of txbuf. by Olivier Houchard · 6 years ago
  87. 638b799 MINOR: connections: Move rxbuf from the conn_stream to the h2s. by Olivier Houchard · 6 years ago
  88. 511efea MINOR: connections: Make rcv_buf mandatory and nuke cs_recv(). by Olivier Houchard · 6 years ago
  89. 287527a BUG/MEDIUM: connection/mux: take care of serverless proxies by Willy Tarreau · 6 years ago
  90. 7ce0c89 MEDIUM: mux: Use the mux protocol specified on bind/server lines by Christopher Faulet · 6 years ago
  91. 9c9ef03 MINOR: mux: Improve the message with the list of existing mux protocols by Christopher Faulet · 6 years ago
  92. e15c6c4 MINOR: mux: Change get_mux_proto to get an ist as parameter by Christopher Faulet · 6 years ago
  93. 98d9fe2 MINOR: mux: Print the list of existing mux protocols during HA startup by Christopher Faulet · 6 years ago
  94. 32f61c0 MINOR: mux: Unlink ALPN and multiplexers to rather speak of mux protocols by Christopher Faulet · 6 years ago
  95. 063f786 MINOR: conn_stream: add cs_send() as a default snd_buf() function by Christopher Faulet · 6 years ago
  96. 3c51802 MINOR: conn_stream: add an tx buffer to the conn_stream by Christopher Faulet · 6 years ago
  97. 11c9aa4 MEDIUM: conn_stream: add cs_recv() as a default rcv_buf() function by Willy Tarreau · 6 years ago
  98. 5e1cc5e MINOR: conn_stream: add an rx buffer to the conn_stream by Willy Tarreau · 6 years ago
  99. 8318885 MINOR: connection: simplify subscription by adding a registration function by Willy Tarreau · 6 years ago
  100. 910b2bc MEDIUM: connections/mux: Revamp the send direction. by Olivier Houchard · 6 years ago