1. 4f283fa MEDIUM: stream-int: introduce a new state SI_ST_RDY by Willy Tarreau · 5 years ago
  2. 7ab22adb MEDIUM: stream-int: remove dangerous interval checks for stream-int states by Willy Tarreau · 5 years ago
  3. bedcd69 MINOR: stream-int: use bit fields to match multiple stream-int states at once by Willy Tarreau · 5 years ago
  4. 034c88c MEDIUM: tcp: add the "tfo" option to support TCP fastopen on the server by Willy Tarreau · 7 years ago
  5. fdcb007 MEDIUM: proto: Change the prototype of the connect() method. by Olivier Houchard · 5 years ago
  6. 0f9cd7b MINOR: stream-int: add a new flag to mention that we want the connection to be killed by Willy Tarreau · 5 years ago
  7. bf66bd1 MEDIUM: stream-int: always mark pending outgoing SI_ST_CON by Willy Tarreau · 5 years ago
  8. 8ab8a6e BUG/MAJOR: connections: Close the connection before freeing it. by Olivier Houchard · 6 years ago
  9. 14bfe9a CLEANUP: stream-int: consistently call the si/stream_int functions by Willy Tarreau · 6 years ago
  10. 4f6516d CLEANUP: connection: rename subscription events values and event field by Willy Tarreau · 6 years ago
  11. adc7f3e BUG/MEDIUM: stream-int: don't attempt to receive if the connection is not established by Willy Tarreau · 6 years ago
  12. a3b62d3 MINOR: stream-int: add a new blocking condition on the remote connection by Willy Tarreau · 6 years ago
  13. 3bc1b11 MEDIUM: conn_stream: Add a way to get mux's info on a CS from the upper layer by Christopher Faulet · 6 years ago
  14. ee23b2a MEDIUM: servers: Store the connection in the SI until we have a mux. by Olivier Houchard · 6 years ago
  15. 201b9f4 MAJOR: connections: Defer mux creation for outgoing connection if alpn is set. by Olivier Houchard · 6 years ago
  16. 7c6f8b1 MAJOR: connections: Detach connections from streams. by Olivier Houchard · 6 years ago
  17. db39843 MINOR: stream-int: replace si_cant_put() with si_rx_room_{blk,rdy}() by Willy Tarreau · 6 years ago
  18. b26a6f9 MEDIUM: stream-int: make use of si_rx_chan_{rdy,blk} to control the stream-int from the channel by Willy Tarreau · 6 years ago
  19. abb5d42 MEDIUM: stream-int: use si_rx_shut_blk() to indicate the SI is closed by Willy Tarreau · 6 years ago
  20. 7f494d0 MINOR: stream-int: make si_sync_recv() simply check ENDP before si_cs_recv() by Willy Tarreau · 6 years ago
  21. 8bb2ffb MINOR: stream-int: replace si_{want,stop}_put() with si_rx_endp_{more,done}() by Willy Tarreau · 6 years ago
  22. 8be7cd7 MEDIUM: stream-int: use si_rx_buff_{rdy,blk} to report buffer readiness by Willy Tarreau · 6 years ago
  23. 32742fd MINOR: stream-int: use si_rx_blocked()/si_tx_blocked() to check readiness by Willy Tarreau · 6 years ago
  24. 05b9b64 MINOR: stream-int: replace SI_FL_WANT_PUT with !SI_FL_RX_WAIT_EP by Willy Tarreau · 6 years ago
  25. 78dcace MINOR: stream-int: add new functions si_{rx,tx}_{blocked,endp_ready}() by Willy Tarreau · 6 years ago
  26. d0f5bbc MINOR: stream-int: rename SI_FL_WAIT_ROOM to SI_FL_RXBLK_ROOM by Willy Tarreau · 6 years ago
  27. ade6478 MINOR: stream: move the conn_stream specific calls to the stream-int by Willy Tarreau · 6 years ago
  28. d0d40eb CLEANUP: stream-int: remove the now unused si->update() function by Willy Tarreau · 6 years ago
  29. d14844a MINOR: stream-int: replace si_update() with si_update_both() by Willy Tarreau · 6 years ago
  30. 8fe516f MEDIUM: stream-int: make si_chk_rcv() check that SI_FL_WAIT_ROOM is cleared by Willy Tarreau · 6 years ago
  31. abf531c MEDIUM: stream-int: always call si_chk_rcv() when we make room in the buffer by Willy Tarreau · 6 years ago
  32. 1f9de21 MEDIUM: stream-int: make SI_FL_WANT_PUT reflect CF_DONT_READ by Willy Tarreau · 6 years ago
  33. 1bdb598 MINOR: stream-int: factor the SI_ST_EST state test into si_chk_rcv() by Willy Tarreau · 6 years ago
  34. 96aadd5 MEDIUM: stream-int: temporarily make si_chk_rcv() take care of SI_FL_WAIT_ROOM by Willy Tarreau · 6 years ago
  35. 57f08bb MINOR: stream-int: make it clear that si_ops cannot be null by Willy Tarreau · 6 years ago
  36. af4f6f6 MINOR: stream-int: use si_cant_put() instead of setting SI_FL_WAIT_ROOM by Willy Tarreau · 6 years ago
  37. 394970c MINOR: stream-int: add si_done_{get,put} to indicate that we won't do it anymore by Willy Tarreau · 6 years ago
  38. 0cd3bd6 MINOR: stream-int: rename si_applet_{want|stop|cant}_{get|put} by Willy Tarreau · 6 years ago
  39. 85f8901 MEDIUM: stream-int: make si_update() synchronize flag changes before the I/O by Willy Tarreau · 6 years ago
  40. 0979916 MINOR: stream-int: add si_alloc_ibuf() to ease input buffer allocation by Willy Tarreau · 6 years ago
  41. 53216e7 MEDIUM: connections: Don't directly mess with the polling from the upper layers. by Olivier Houchard · 6 years ago
  42. 1fddc9b BUG/MEDIUM: connections: Remove subscription if going in idle mode. by Olivier Houchard · 6 years ago
  43. 4fdec7a BUG/MEDIUM: stream: Make sure to unsubscribe before si_release_endpoint. by Olivier Houchard · 6 years ago
  44. fa8aa86 MEDIUM: connections: Change struct wait_list to wait_event. by Olivier Houchard · 6 years ago
  45. 0e367bb BUG/MEDIUM: process_stream: Don't use si_cs_io_cb() in process_stream(). by Olivier Houchard · 6 years ago
  46. 4ae4923 MINOR: stream-int: make si_appctx() never fail by Willy Tarreau · 6 years ago
  47. 8f0b4c6 MINOR: stream_interface: Give stream_interface its own wait_list. by Olivier Houchard · 6 years ago
  48. 91894cb MINOR: stream_interface: Don't use si_cs_send() as a task handler. by Olivier Houchard · 6 years ago
  49. 83061a8 MAJOR: chunks: replace struct chunk with struct buffer by Willy Tarreau · 6 years ago
  50. c9fa048 MAJOR: buffer: finalize buffer detachment by Willy Tarreau · 6 years ago
  51. 10d81b8 MINOR: applet: assign the same nice value to a new appctx as its owner task by Willy Tarreau · 6 years ago
  52. 9aaf778 MAJOR: connection : Split struct connection into struct connection and struct conn_stream. by Olivier Houchard · 7 years ago
  53. 1138fd0 MAJOR: threads/applet: Handle multithreading for applets by Emeric Brun · 7 years ago
  54. 3b737c9 MINOR: stream-int: use conn_full_close() instead of conn_force_close() by Willy Tarreau · 7 years ago
  55. 1a0545f REORG: connection: rename CO_FL_DATA_* -> CO_FL_XPRT_* by Olivier Houchard · 7 years ago
  56. de40d79 CLEANUP: connection: completely remove CO_FL_WAKE_DATA by Willy Tarreau · 7 years ago
  57. c34d19f BUG: stream_interface: Reuse connection even if the output channel is empty by Christopher Faulet · 9 years ago
  58. 958f074 BUG/MEDIUM: stream-int: avoid double-call to applet->release by Willy Tarreau · 9 years ago
  59. aa977ba MINOR: stream-int: rename si_applet_done() to si_applet_wake_cb() by Willy Tarreau · 9 years ago
  60. 3355203 MEDIUM: stream-int: completely remove stream_int_update_embedded() by Willy Tarreau · 9 years ago
  61. 615f28b MINOR: stream-int: implement the stream_int_notify() function by Willy Tarreau · 9 years ago
  62. cbc3260 MINOR: stream-int: export stream_int_update_* by Willy Tarreau · 9 years ago
  63. 5d5b2fe MEDIUM: stream-int: call stream_int_update() from si_update() by Willy Tarreau · 9 years ago
  64. 25f1310 MINOR: stream-int: implement a new stream_int_update() function by Willy Tarreau · 9 years ago
  65. 0fd9909 CLEANUP: stream-int: remove obsolete function si_applet_call() by Willy Tarreau · 9 years ago
  66. 4320eaa MINOR: stream-int: make si_idle_conn() only accept valid connections by Willy Tarreau · 9 years ago
  67. 323a2d9 MEDIUM: stream-int: queue idle connections at the server by Willy Tarreau · 9 years ago
  68. 41b09f4 MINOR: stream-int: add new function si_detach_endpoint() by Willy Tarreau · 9 years ago
  69. 973a542 MEDIUM: stream-int: simplify si_alloc_conn() by Willy Tarreau · 9 years ago
  70. d7c7475 MINOR: stream-int: only use si_release_endpoint() to release a connection by Willy Tarreau · 9 years ago
  71. 7a08d3b CLEANUP: stream-int: remove stream_int_unregister_handler() and si_detach() by Willy Tarreau · 9 years ago
  72. eb406dc MINOR: stream-int: add two flags to indicate an applet's wishes regarding I/O by Willy Tarreau · 9 years ago
  73. e5f8649 MEDIUM: stream-int: add a new function si_applet_done() by Willy Tarreau · 9 years ago
  74. d45b9f8 REORG: stream-int: create si_applet_ops dedicated to applets by Willy Tarreau · 9 years ago
  75. 3057645 CLEANUP: applet: rename struct si_applet to applet by Willy Tarreau · 9 years ago
  76. 8a8d83b REORG: applet: move the applet definitions out of stream_interface by Willy Tarreau · 9 years ago
  77. 00a37f0 MEDIUM: applet: make the applet not depend on a stream interface anymore by Willy Tarreau · 9 years ago
  78. 19c8161 MINOR: applet: add a new "owner" pointer in the appctx by Willy Tarreau · 9 years ago
  79. 7365dad BUG/MEDIUM: stream-int: always reset si->ops when si->end is nullified by Willy Tarreau · 9 years ago
  80. a7513f5 MINOR: stream-int: make appctx_new() take the applet in argument by Willy Tarreau · 9 years ago
  81. e7dff02 REORG/MEDIUM: stream: rename stream flags from SN_* to SF_* by Willy Tarreau · 9 years ago
  82. 87b0966 REORG/MAJOR: session: rename the "session" entity to "stream" by Willy Tarreau · 9 years ago
  83. 50fe03b CLEANUP: stream-int: add si_opposite() to find the other stream interface by Willy Tarreau · 10 years ago
  84. 4e4292b CLEANUP: stream-int: add si_ib/si_ob to dereference the buffers by Willy Tarreau · 10 years ago
  85. 819d332 MEDIUM: stream-int: remove any reference to the owner by Willy Tarreau · 10 years ago
  86. 07373b8 MEDIUM: stream-int: use si_task() to retrieve the task from the stream int by Willy Tarreau · 10 years ago
  87. aefd790 MEDIUM: stream-int: make si_sess() use the stream int's side by Willy Tarreau · 10 years ago
  88. 0b2fb7f MAJOR: stream-int: only rely on SI_FL_ISBACK to find the requested channel by Willy Tarreau · 10 years ago
  89. a5f5d8d MEDIUM: stream-int: add a flag indicating which side the SI is on by Willy Tarreau · 10 years ago
  90. 2bb4a96 REORG/MEDIUM: stream-int: introduce si_ic/si_oc to access channels by Willy Tarreau · 10 years ago
  91. 3dd6a25 MINOR: stream-int: retrieve session pointer from stream-int by Willy Tarreau · 10 years ago
  92. 9e5a3aa MEDIUM: stream-int: make si_connect() return an established state when possible by Willy Tarreau · 11 years ago
  93. 2737562 MEDIUM: stream-int: implement a very simplistic idle connection manager by Willy Tarreau · 11 years ago
  94. b490b4e MAJOR: stream-int: handle the connection reuse in si_connect() by Willy Tarreau · 11 years ago
  95. 9471b8c MEDIUM: connection: inform si_alloc_conn() whether existing conn is OK or not by Willy Tarreau · 11 years ago
  96. d02cdd2 MINOR: connection: add simple functions to report connection readiness by Willy Tarreau · 11 years ago
  97. 0a23bcb MAJOR: stream-interface: dynamically allocate the applet context by Willy Tarreau · 11 years ago
  98. 1fbe1c9 MEDIUM: stream-int: return the allocated appctx in stream_int_register_handler() by Willy Tarreau · 11 years ago
  99. 7b4b499 MEDIUM: stream-int: replace occurrences of si->appctx with si_appctx() by Willy Tarreau · 11 years ago
  100. 1ec74bf MINOR: connection: check for send_proxy during the connect(), not the SI by Willy Tarreau · 11 years ago