1. 01b4482 MEDIUM: mux-h2: start to create the outgoing mux by Willy Tarreau · 6 years ago
  2. 751f2d0 MINOR: mux-h2: implement an outgoing stream allocator : h2c_bck_stream_new() by Willy Tarreau · 6 years ago
  3. f895727 MINOR: mux-h2: mention that the mux is compatible with both sides by Willy Tarreau · 6 years ago
  4. c5753ae BUG/MEDIUM: mux-h2: remove the HTX EOM block on H2 response headers by Willy Tarreau · 6 years ago
  5. fab9bb0 BUG/MEDIUM: mux-h2: don't lose the first response header in HTX mode by Willy Tarreau · 6 years ago
  6. 61ea7dc MEDIUM: mux-h2: support passing H2 DATA frames to HTX blocks by Willy Tarreau · 6 years ago
  7. 0c535fd MEDIUM: mux-h2: implement the emission of DATA frames from HTX DATA blocks by Willy Tarreau · 6 years ago
  8. 115e83b MEDIUM: mux-h2: implement emission of H2 headers frames from HTX blocks by Willy Tarreau · 6 years ago
  9. bd4a6b6 MEDIUM: mux-h2: add basic H2->HTX transcoding support for headers by Willy Tarreau · 6 years ago
  10. bcd3bb3 MEDIUM: mux-h2: make h2_snd_buf() HTX-aware by Willy Tarreau · 6 years ago
  11. 86724e2 MEDIUM: mux-h2: make h2_rcv_buf() support HTX transfers by Willy Tarreau · 6 years ago
  12. 5ae9600 MEDIUM: mux-h2: register mux for both HTTP and HTX modes by Willy Tarreau · 6 years ago
  13. 93c8852 MEDIUM: h2: Destroy a connection with no stream if it has no owner. by Olivier Houchard · 6 years ago
  14. 4667773 BUG/MEDIUM: h2: Call h2_process() if there's an error on the connection. by Olivier Houchard · 6 years ago
  15. 0024a98 BUG/MEDIUM: h2: Don't bogusly error if the previous stream was closed. by Olivier Houchard · 6 years ago
  16. 680b2bd MINOR: h2: make struct h2_ops static by Willy Tarreau · 6 years ago
  17. 2455ceb MEDIUM: memory: use pool_destroy_all() to destroy all pools on deinit() by Willy Tarreau · 6 years ago
  18. 8ceae72 MEDIUM: init: use initcall for all fixed size pool creations by Willy Tarreau · 6 years ago
  19. 172f5ce MINOR: initcall: use initcalls for most post_{check,deinit} and per_thread* by Willy Tarreau · 6 years ago
  20. 0108d90 MEDIUM: init: convert all trivial registration calls to initcalls by Willy Tarreau · 6 years ago
  21. 082f559 BUG/MEDIUM: h2: restart demuxing after releasing buffer space by Willy Tarreau · 6 years ago
  22. 1ed87b7 BUG/MEDIUM: h2: wake the processing task up after demuxing by Willy Tarreau · 6 years ago
  23. 7c6f8b1 MAJOR: connections: Detach connections from streams. by Olivier Houchard · 6 years ago
  24. 060ed43 MINOR: mux: Add a destroy() method. by Olivier Houchard · 6 years ago
  25. d540b36 MINOR: mux: Add a new "avail_streams" method. by Olivier Houchard · 6 years ago
  26. fafd398 MINOR: mux: implement a get_first_cs() method by Willy Tarreau · 6 years ago
  27. 479998a CLEANUP: h2: minimum documentation for recent API changes by Willy Tarreau · 6 years ago
  28. d846c26 MINOR: h2: Don't run tasks that are waiting to send if mux in full. by Olivier Houchard · 6 years ago
  29. 53216e7 MEDIUM: connections: Don't directly mess with the polling from the upper layers. by Olivier Houchard · 6 years ago
  30. 81a15af MINOR: h2: Make sure to return 1 in h2_recv() when needed. by Olivier Houchard · 6 years ago
  31. 52b9466 BUG/MEDIUM: h2: Close connection if no stream is left an GOAWAY was sent. by Olivier Houchard · 6 years ago
  32. b3fb56d MINOR: h2: add a new flag to quickly distinguish front vs back connection by Willy Tarreau · 6 years ago
  33. a8e4954 MINOR: h2: split h2c_stream_new() into h2s_new() + h2c_frt_stream_new() by Willy Tarreau · 6 years ago
  34. 0b37d65 MINOR: h2: retrieve the front proxy from the caller instead of the session by Willy Tarreau · 6 years ago
  35. 7dc24e4 MINOR: h2: unify the mux init function by Willy Tarreau · 6 years ago
  36. 6bf641a MINOR: h2: don't try to send data before preface by Willy Tarreau · 6 years ago
  37. 7f0cc49 CLEANUP: h2: rename h2c_snd_settings() to h2c_send_settings() by Willy Tarreau · 6 years ago
  38. ab0e1da MEDIUM: h2: stop relying on H2_SS_IDLE / H2_SS_CLOSED by Willy Tarreau · 6 years ago
  39. dddfe31 BUG/MEDIUM: h2: Make sure we're not in the send list on flow control. by Olivier Houchard · 6 years ago
  40. fa8aa86 MEDIUM: connections: Change struct wait_list to wait_event. by Olivier Houchard · 6 years ago
  41. 83a0cd8 MINOR: connections: Introduce an unsubscribe method. by Olivier Houchard · 6 years ago
  42. cd2d7de BUG/MINOR: h2: null-deref by mildis · 6 years ago
  43. c26c72d CLEANUP: h1: Fix debug warnings for h1 headers by Dirkjan Bussink · 6 years ago
  44. 45efc07 BUG/MEDIUM: h2: make h2_stream_new() return an error on memory allocation failure by Willy Tarreau · 6 years ago
  45. 0f38358 BUG/MEDIUM: h2: check that the connection is still valid at the end of init() by Willy Tarreau · 6 years ago
  46. 61d322f BUG/MEDIUM: h2: Wake the task instead of calling h2_recv()/h2_process(). by Olivier Houchard · 6 years ago
  47. 21df6cc MINOR: h2/stream_interface: Reintroduce te wake() method. by Olivier Houchard · 6 years ago
  48. db72da0 BUG/MINOR: h1: don't consider the status for each header by Willy Tarreau · 6 years ago
  49. b5b7d4a BUG/MAJOR: h2: reset the parser's state on mux buffer full by Willy Tarreau · 6 years ago
  50. 70d0d18 BUG/MEDIUM: h2: Don't forget to set recv_wait_list to NULL in h2_detach. by Olivier Houchard · 6 years ago
  51. 251f6a2 BUG/MEDIUM: h2: Don't forget to empty the wait lists on destroy. by Olivier Houchard · 6 years ago
  52. 175a2bb MINOR: connection: pass the proxy when creating a connection by Willy Tarreau · 6 years ago
  53. eb528db MINOR: h1: add H1_MF_TOLOWER to decide when to turn header names to lower case by Willy Tarreau · 6 years ago
  54. 9c5e22e MINOR: h2: store the HTTP status into the H2S, not the H1M by Willy Tarreau · 6 years ago
  55. 001823c MEDIUM: h1: remove the useless H1_MSG_BODY state by Willy Tarreau · 6 years ago
  56. 4433c08 MEDIUM: h1: let the caller pass the initial parser's state by Willy Tarreau · 6 years ago
  57. a41393f MEDIUM: h1: make the parser support a pointer to a start line by Willy Tarreau · 6 years ago
  58. 9b8cd1f MINOR: h2: pre-initialize h1m->err_pos to -1 on the output path by Willy Tarreau · 6 years ago
  59. a40704a MINOR: mux_h2: replace the req,res h1 messages with a single h1 message by Willy Tarreau · 6 years ago
  60. 25173a7 MINOR: h2: make sure h1m->err_pos field is correct on chunk error by Willy Tarreau · 6 years ago
  61. 7f437ff MINOR: h1: provide a distinct init() function for request and response by Willy Tarreau · 6 years ago
  62. 801250e REORG: h1: create a new h1m_state by Willy Tarreau · 6 years ago
  63. c2aa711 MEDIUM: stream_interfaces: Starts receiving from the upper layers. by Olivier Houchard · 6 years ago
  64. 8ae735d MEDIUM: mux_h2: Revamp the send path when blocking. by Olivier Houchard · 6 years ago
  65. 7505f94 MEDIUM: h2: Don't use a wake() method anymore. by Olivier Houchard · 6 years ago
  66. a1411e6 MEDIUM: h2: always subscribe to receive if allowed. by Olivier Houchard · 6 years ago
  67. d4dd22d MINOR: h2: Let user of h2_recv() and h2_send() know xfer has been done. by Olivier Houchard · 6 years ago
  68. af4021e MEDIUM: connections: Get rid of the recv() method. by Olivier Houchard · 6 years ago
  69. 4cf7fb1 MEDIUM: connections/mux: Add a recv and a send+recv wait list. by Olivier Houchard · 6 years ago
  70. 2c096c3 BUG/MINOR: h2: report asynchronous end of stream on closed connections by Willy Tarreau · 6 years ago
  71. 22de8d3 MEDIUM: h2: produce some logs on early errors that prevent streams from being created by Willy Tarreau · 6 years ago
  72. a0d11b6 BUG/MEDIUM: h2: fix risk of memory leak on malformated wrapped frames by Willy Tarreau · 6 years ago
  73. 590a051 BUG/MEDIUM: session: fix reporting of handshake processing time in the logs by Willy Tarreau · 6 years ago
  74. fab7c7e BUG/MEDIUM: H2: Activate polling after successful h2_snd_buf(). by Olivier Houchard · 6 years ago
  75. 29fb89d MINOR: mux_h2: Don't use h2_send() as a callback. by Olivier Houchard · 6 years ago
  76. e1c6dbc MINOR: connections/mux: Add the wait reason(s) to wait_list. by Olivier Houchard · 6 years ago
  77. 638b799 MINOR: connections: Move rxbuf from the conn_stream to the h2s. by Olivier Houchard · 6 years ago
  78. 511efea MINOR: connections: Make rcv_buf mandatory and nuke cs_recv(). by Olivier Houchard · 6 years ago
  79. 32f61c0 MINOR: mux: Unlink ALPN and multiplexers to rather speak of mux protocols by Christopher Faulet · 6 years ago
  80. 2d5292a MINOR: mux: Add info about the supported side in alpn_mux_list structure by Christopher Faulet · 6 years ago
  81. d44a9b3 MEDIUM: mux: Remove const on the buffer in mux->snd_buf() by Christopher Faulet · 6 years ago
  82. a2b5181 BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever by Willy Tarreau · 6 years ago
  83. 616ac81 MINOR: h2: add the error code and the max/last stream IDs to "show fd" by Willy Tarreau · 6 years ago
  84. 842ed9b MEDIUM: h2: use the default conn_stream's receive function by Willy Tarreau · 6 years ago
  85. 39d6850 MINOR: h2: make use of CS_FL_REOS to indicate that end of stream was seen by Willy Tarreau · 6 years ago
  86. 2df65e7 MEDIUM: h2: don't call data_cb->recv() anymore by Willy Tarreau · 6 years ago
  87. 2a761dc MEDIUM: h2: perform a single call to the data layer in demux() by Willy Tarreau · 6 years ago
  88. a56a6de MEDIUM: h2: move headers and data frame decoding to their respective parsers by Willy Tarreau · 6 years ago
  89. 454b57b MEDIUM: h2: centralize transfer of decoded frames in h2_rcv_buf() by Willy Tarreau · 6 years ago
  90. d755ea6 MEDIUM: h2: make h2_frt_transfer_data() copy via an intermediary buffer by Willy Tarreau · 6 years ago
  91. 937f760 MEDIUM: h2: make h2_frt_decode_headers() use an intermediary buffer by Willy Tarreau · 6 years ago
  92. 0b55907 MINOR: h2: make each H2 stream support an intermediary input buffer by Willy Tarreau · 6 years ago
  93. f495fc4 BUG/MEDIUM: mux_h2: Call h2_send() before updating polling. by Olivier Houchard · 6 years ago
  94. 910b2bc MEDIUM: connections/mux: Revamp the send direction. by Olivier Houchard · 6 years ago
  95. 6ff2039 MINOR: connections/mux: Add a new "subscribe" method. by Olivier Houchard · 6 years ago
  96. 83061a8 MAJOR: chunks: replace struct chunk with struct buffer by Willy Tarreau · 6 years ago
  97. 843b7cb MEDIUM: chunks: make the chunk struct's fields match the buffer struct by Willy Tarreau · 6 years ago
  98. c9fa048 MAJOR: buffer: finalize buffer detachment by Willy Tarreau · 6 years ago
  99. ea1b06d MINOR: buffer: add a new file for ist + buffer manipulation functions by Willy Tarreau · 6 years ago
  100. 55372f6 MINOR: buffer: replace b{i,o}_put* with b_put* by Willy Tarreau · 6 years ago