1. c0016d8 MEDIUM: connection: Add conn_upgrade_mux_fe() to handle mux upgrades by Christopher Faulet · 5 years ago
  2. 51f73eb MEDIUM: muxes: Add an optional input buffer during mux initialization by Christopher Faulet · 5 years ago
  3. 237985b MEDIUM: connections: Use _HA_ATOMIC_* by Olivier Houchard · 5 years ago
  4. c912f94 MINOR: server: remove a few unneeded LIST_INIT calls after LIST_DEL_LOCKED by Willy Tarreau · 5 years ago
  5. 7f1bc31 MEDIUM: servers: Used a locked list for idle_orphan_conns. by Olivier Houchard · 5 years ago
  6. f131481 BUG/MEDIUM: servers: Add a per-thread counter of idle connections. by Olivier Houchard · 5 years ago
  7. e737103 BUG/MEDIUM: servers: Use atomic operations when handling curr_idle_conns. by Olivier Houchard · 5 years ago
  8. 762475e BUG/MEDIUM: connection: properly unregister the mux on failed initialization by Willy Tarreau · 5 years ago
  9. a2dbeb2 MEDIUM: sessions: Keep track of which connections are idle. by Olivier Houchard · 6 years ago
  10. 351411f BUG/MAJOR: sessions: Use an unlimited number of servers for the conn list. by Olivier Houchard · 6 years ago
  11. e9f4301 MINOR: connection: add cs_set_error() to set the error bits by Willy Tarreau · 6 years ago
  12. 94031d3 MINOR: connection: remove an unwelcome dependency on struct stream by Willy Tarreau · 6 years ago
  13. 3d2ee55 CLEANUP: connection: rename conn->mux_ctx to conn->ctx by Willy Tarreau · 6 years ago
  14. 4f6516d CLEANUP: connection: rename subscription events values and event field by Willy Tarreau · 6 years ago
  15. a4d4fdf MEDIUM: sessions: Don't keep an infinite number of idling connections. by Olivier Houchard · 6 years ago
  16. f502aca MEDIUM: mux: provide the session to the init() and attach() method. by Olivier Houchard · 6 years ago
  17. 006e310 MEDIUM: servers: Add a command to limit the number of idling connections. by Olivier Houchard · 6 years ago
  18. 1a18b54 REORG: connection: centralize the conn_set_{tos,mark,quickack} functions by Willy Tarreau · 6 years ago
  19. 5fc311c MINOR: connection: create conn_get_best_mux_entry() by Willy Tarreau · 6 years ago
  20. d3c49d1 BUG/MINOR: connection: report mux modes when HTX is supported by Willy Tarreau · 6 years ago
  21. 00cf70f MAJOR: sessions: Store multiple outgoing connections in the session. by Olivier Houchard · 6 years ago
  22. 8ceae72 MEDIUM: init: use initcall for all fixed size pool creations by Willy Tarreau · 6 years ago
  23. 201b9f4 MAJOR: connections: Defer mux creation for outgoing connection if alpn is set. by Olivier Houchard · 6 years ago
  24. 7c6f8b1 MAJOR: connections: Detach connections from streams. by Olivier Houchard · 6 years ago
  25. 131fd89 MINOR: sessions: Start to store the outgoing connection in sessions. by Olivier Houchard · 6 years ago
  26. fafd398 MINOR: mux: implement a get_first_cs() method by Willy Tarreau · 6 years ago
  27. 68ad3a4 MINOR: proxy: add a new option "http-use-htx" by Willy Tarreau · 6 years ago
  28. 53216e7 MEDIUM: connections: Don't directly mess with the polling from the upper layers. by Olivier Houchard · 6 years ago
  29. 1fddc9b BUG/MEDIUM: connections: Remove subscription if going in idle mode. by Olivier Houchard · 6 years ago
  30. fa8aa86 MEDIUM: connections: Change struct wait_list to wait_event. by Olivier Houchard · 6 years ago
  31. 83a0cd8 MINOR: connections: Introduce an unsubscribe method. by Olivier Houchard · 6 years ago
  32. 55e0da6 BUILD: connection: silence a couple of null-deref build warnings at -Wextra by Willy Tarreau · 6 years ago
  33. 175a2bb MINOR: connection: pass the proxy when creating a connection by Willy Tarreau · 6 years ago
  34. 7138455 MINOR: conn_streams: Remove wait_list from conn_streams. by Olivier Houchard · 6 years ago
  35. 4cf7fb1 MEDIUM: connections/mux: Add a recv and a send+recv wait list. by Olivier Houchard · 6 years ago
  36. 57f8185 MINOR: connection: add new function conn_is_back() by Willy Tarreau · 6 years ago
  37. 6ac98ac MINOR: connection: add new function conn_get_proxy() by Willy Tarreau · 6 years ago
  38. be37315 MINOR: connection: make the initialization more consistent by Willy Tarreau · 6 years ago
  39. 1b13bfd BUG/MEDIUM: connection: don't forget to always delete the list's head by Willy Tarreau · 6 years ago
  40. e1c6dbc MINOR: connections/mux: Add the wait reason(s) to wait_list. by Olivier Houchard · 6 years ago
  41. ed0f207 MINOR: connections: Get rid of txbuf. by Olivier Houchard · 6 years ago
  42. 638b799 MINOR: connections: Move rxbuf from the conn_stream to the h2s. by Olivier Houchard · 6 years ago
  43. 511efea MINOR: connections: Make rcv_buf mandatory and nuke cs_recv(). by Olivier Houchard · 6 years ago
  44. 287527a BUG/MEDIUM: connection/mux: take care of serverless proxies by Willy Tarreau · 6 years ago
  45. 7ce0c89 MEDIUM: mux: Use the mux protocol specified on bind/server lines by Christopher Faulet · 6 years ago
  46. 9c9ef03 MINOR: mux: Improve the message with the list of existing mux protocols by Christopher Faulet · 6 years ago
  47. e15c6c4 MINOR: mux: Change get_mux_proto to get an ist as parameter by Christopher Faulet · 6 years ago
  48. 98d9fe2 MINOR: mux: Print the list of existing mux protocols during HA startup by Christopher Faulet · 6 years ago
  49. 32f61c0 MINOR: mux: Unlink ALPN and multiplexers to rather speak of mux protocols by Christopher Faulet · 6 years ago
  50. 063f786 MINOR: conn_stream: add cs_send() as a default snd_buf() function by Christopher Faulet · 6 years ago
  51. 3c51802 MINOR: conn_stream: add an tx buffer to the conn_stream by Christopher Faulet · 6 years ago
  52. 11c9aa4 MEDIUM: conn_stream: add cs_recv() as a default rcv_buf() function by Willy Tarreau · 6 years ago
  53. 5e1cc5e MINOR: conn_stream: add an rx buffer to the conn_stream by Willy Tarreau · 6 years ago
  54. 8318885 MINOR: connection: simplify subscription by adding a registration function by Willy Tarreau · 6 years ago
  55. 910b2bc MEDIUM: connections/mux: Revamp the send direction. by Olivier Houchard · 6 years ago
  56. 6ff2039 MINOR: connections/mux: Add a new "subscribe" method. by Olivier Houchard · 6 years ago
  57. 302f9ef BUG/MEDIUM: connection: Make sure we have a mux before calling detach(). by Olivier Houchard · 6 years ago
  58. a9786b6 MINOR: fd: pass the iocb and owner to fd_insert() by Willy Tarreau · 6 years ago
  59. a48c141 BUG/MAJOR: connection: refine the situations where we don't send shutw() by Willy Tarreau · 7 years ago
  60. bafbe01 CLEANUP: pools: rename all pool functions and pointers to remove this "2" by Willy Tarreau · 7 years ago
  61. 90084a1 MINOR: ssl: Handle reading early data after writing better. by Olivier Houchard · 7 years ago
  62. 436d333 MEDIUM: connection: add a destroy callback by Willy Tarreau · 7 years ago
  63. 2c52a2b MEDIUM: connection: make mux->detach() release the connection by Willy Tarreau · 7 years ago
  64. 6978db3 MINOR: connection: add cs_close() to close a conn_stream by Willy Tarreau · 7 years ago
  65. ecdb3fe MINOR: conn_stream: modify cs_shut{r,w} API to pass the desired mode by Willy Tarreau · 7 years ago
  66. 9aaf778 MAJOR: connection : Split struct connection into struct connection and struct conn_stream. by Olivier Houchard · 7 years ago
  67. 63dd75d MINOR: connection: introduce the conn_stream manipulation functions by Willy Tarreau · 7 years ago
  68. e2b40b9 MINOR: connection: introduce conn_stream by Olivier Houchard · 7 years ago
  69. 2e0b2b5 MEDIUM: session: use the ALPN token and proxy mode to select the mux by Willy Tarreau · 7 years ago
  70. 2386be6 MINOR: connection: implement alpn registration of muxes by Willy Tarreau · 7 years ago
  71. 53a4766 MEDIUM: connection: start to introduce a mux layer between xprt and data by Willy Tarreau · 7 years ago
  72. 36716a7 MEDIUM: threads/fd: Initialize the process mask during the call to fd_insert by Christopher Faulet · 7 years ago
  73. c2aae74 MEDIUM: ssl: Handle early data with OpenSSL 1.1.1 by Olivier Houchard · 7 years ago
  74. 7b271b2 MEDIUM: connection: make use of CO_FL_WILL_UPDATE in conn_sock_shutw() by Willy Tarreau · 7 years ago
  75. 916e12d MINOR: connection: add flag CO_FL_WILL_UPDATE to indicate when updates are granted by Willy Tarreau · 7 years ago
  76. bc97cc4 MINOR: connection: move the cleanup of flag CO_FL_WAIT_ROOM by Willy Tarreau · 7 years ago
  77. cbc6524 MINOR: connection: remove conn_force_close() by Willy Tarreau · 7 years ago
  78. dc42acd MINOR: connection: add conn_stop_tracking() to disable tracking by Willy Tarreau · 7 years ago
  79. 6a0a80a MINOR: connection: ensure conn_ctrl_close() also resets the fd by Willy Tarreau · 7 years ago
  80. f9ce57e MEDIUM: connection: make conn_sock_shutw() aware of lingering by Willy Tarreau · 7 years ago
  81. 1a0545f REORG: connection: rename CO_FL_DATA_* -> CO_FL_XPRT_* by Olivier Houchard · 7 years ago
  82. 576c5aa MINOR: fd: Set owner and iocb field before inserting a new fd in the fdtab by Christopher Faulet · 7 years ago
  83. bbae3f0 MEDIUM: connection: remove useless flag CO_FL_DATA_WR_SH by Willy Tarreau · 7 years ago
  84. cde5651 CLEANUP: connection: remove the unused conn_sock_shutw_pending() by Willy Tarreau · 7 years ago
  85. 54e917c MEDIUM: connection: remove useless flag CO_FL_DATA_RD_SH by Willy Tarreau · 7 years ago
  86. 8e3c6ce MEDIUM: connection: get rid of data->init() which was not for data by Willy Tarreau · 7 years ago
  87. 585744b REORG/MEDIUM: connection: introduce the notion of connection handle by Willy Tarreau · 7 years ago
  88. 71d058c MINOR: ssl: add a new error codes for wrong server certificates by Willy Tarreau · 7 years ago
  89. a9c1741 MINOR: connection: add a .get_alpn() method to xprt_ops by Willy Tarreau · 8 years ago
  90. 2686dca CLEANUP: connection: remove unused CO_FL_WAIT_DATA by Willy Tarreau · 7 years ago
  91. 3854e01 MEDIUM: ssl: handle multiple async engines by Emeric Brun · 7 years ago
  92. fa6c7ee MAJOR: ssl: add openssl async mode support by Grant Zhang · 7 years ago
  93. 13e1410 MINOR: connection: add a minimal transport layer registration system by Willy Tarreau · 8 years ago
  94. 796c5b7 OPTIM: stream-int: don't disable polling anymore on DONT_READ by Willy Tarreau · 8 years ago
  95. 8e0bb0a MINOR: connection: add names for transport and data layers by Willy Tarreau · 8 years ago
  96. 2dc770c MINOR: connection: add a few functions to report the data and xprt layers' names by Willy Tarreau · 8 years ago
  97. 733b132 DEBUG: connection: mark the closed FDs with a value that is easier to detect by Willy Tarreau · 8 years ago
  98. 350135c BUG/MEDIUM: connection: check the control layer before stopping polling by Willy Tarreau · 8 years ago
  99. 93b227d MINOR: listener: add the "accept-netscaler-cip" option to the "bind" keyword by Bertrand Jacquin · 8 years ago
  100. 7a798e5 CLEANUP: fix inconsistency between fd->iocb, proto->accept and accept() by Willy Tarreau · 8 years ago