1. 248cb4c MEDIUM: queue: adjust position based on priority-class and priority-offset by Patrick Hemmer · 6 years ago
  2. 268a707 MEDIUM: add set-priority-class and set-priority-offset by Patrick Hemmer · 6 years ago
  3. 0355dab MINOR: queue: replace the linked list with a tree by Patrick Hemmer · 6 years ago
  4. da282f4 MINOR: queue: store the queue index in the stream when enqueuing by Patrick Hemmer · 6 years ago
  5. ffe5e8c MINOR: stream: rename {srv,prx}_queue_size to *_queue_pos by Patrick Hemmer · 6 years ago
  6. 66425e3 MINOR: queue: make sure the pendconn is released before logging by Willy Tarreau · 6 years ago
  7. 7ce0c89 MEDIUM: mux: Use the mux protocol specified on bind/server lines by Christopher Faulet · 6 years ago
  8. 8ed0a3e MINOR: mux/server: Add 'proto' keyword to force the multiplexer's protocol by Christopher Faulet · 6 years ago
  9. a717b99 MINOR: mux/frontend: Add 'proto' keyword to force the mux protocol by Christopher Faulet · 6 years ago
  10. 7c42eac BUG/MEDIUM: stream_int: Don't check CO_FL_SOCK_RD_SH flag to trigger cs receive by Christopher Faulet · 6 years ago
  11. 91c2826 CLEANUP: server: remove the update list and the update lock by Willy Tarreau · 6 years ago
  12. 3ff577e MAJOR: server: make server state changes synchronous again by Willy Tarreau · 6 years ago
  13. 647c70b MINOR: threads: remove the previous synchronization point by Willy Tarreau · 6 years ago
  14. 85c459d MEDIUM: haproxy: don't use sync_poll_loop() anymore in the main loop by Willy Tarreau · 6 years ago
  15. 3d3700f MEDIUM: checks: use the new rendez-vous point to spread check result by Willy Tarreau · 6 years ago
  16. 98d9fe2 MINOR: mux: Print the list of existing mux protocols during HA startup by Christopher Faulet · 6 years ago
  17. 32f61c0 MINOR: mux: Unlink ALPN and multiplexers to rather speak of mux protocols by Christopher Faulet · 6 years ago
  18. 2d5292a MINOR: mux: Add info about the supported side in alpn_mux_list structure by Christopher Faulet · 6 years ago
  19. b75bb21 MEDIUM: backend: don't rely on mux_pt_ops in connect_server() by Christopher Faulet · 6 years ago
  20. 6cc7afa MINOR: backend: Try to find the best mux for outgoing connections by Christopher Faulet · 6 years ago
  21. 063f786 MINOR: conn_stream: add cs_send() as a default snd_buf() function by Christopher Faulet · 6 years ago
  22. 2bf88c0 CLEANUP: backend: Move mux install to call it at only one place by Christopher Faulet · 6 years ago
  23. d44a9b3 MEDIUM: mux: Remove const on the buffer in mux->snd_buf() by Christopher Faulet · 6 years ago
  24. a869465 BUG/MEDIUM: queue: prevent a backup server from draining the proxy's connections by Willy Tarreau · 6 years ago
  25. 6a78e61 BUG/MEDIUM: servers: check the queues once enabling a server by Willy Tarreau · 6 years ago
  26. ab657ce BUG/MEDIUM: threads: fix the no-thread case after the change to the sync point by Willy Tarreau · 6 years ago
  27. 65e94d1 [RELEASE] Released version 1.9-dev1 by Willy Tarreau · 6 years ago
  28. bf9fd65 BUG/MEDIUM: cli: make "show fd" thread-safe by Willy Tarreau · 6 years ago
  29. 60b639c MEDIUM: hathreads: implement a more flexible rendez-vous point by Willy Tarreau · 6 years ago
  30. 0c026f4 MINOR: threads: add more consistency between certain variables in no-thread case by Willy Tarreau · 6 years ago
  31. 7fec021 MEDIUM: proxy_protocol: Convert IPs to v6 when protocols are mixed by Tim Duesterhus · 6 years ago
  32. c477b6f BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread number by Willy Tarreau · 6 years ago
  33. 0ccd322 MINOR: threads: move "nbthread" parsing to hathreads.c by Willy Tarreau · 6 years ago
  34. 5e954e1 BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS by Willy Tarreau · 6 years ago
  35. 3e12304 BUG/MINOR: threads: Handle nbthread == MAX_THREADS. by Olivier Houchard · 6 years ago
  36. 85d9b84 BUILD/MINOR: threads: unbreak build with threads disabled by Willy Tarreau · 6 years ago
  37. c786768 BUG/MINOR: config: stick-table is not supported in defaults section by Willy Tarreau · 6 years ago
  38. a2b5181 BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever by Willy Tarreau · 6 years ago
  39. 3ea2490 BUG/MEDIUM: threads/sync: use sched_yield when available by Willy Tarreau · 6 years ago
  40. ecfe673 MINOR: threads/queue: Get rid of THREAD_WANT_SYNC in the queue code. by Olivier Houchard · 6 years ago
  41. 79321b9 MINOR: pollers: Add a way to wake a thread sleeping in the poller. by Olivier Houchard · 6 years ago
  42. eba0c0b MINOR: tasks: Make global_tasks_mask volatile. by Olivier Houchard · 6 years ago
  43. 9b03c0c MINOR: tasks: Make active_tasks_mask volatile. by Olivier Houchard · 6 years ago
  44. 3201e4e MEDIUM: queue: get rid of the pendconn lock by Willy Tarreau · 6 years ago
  45. 7c6f8a2 MINOR: queue: implement pendconn queue locking functions by Willy Tarreau · 6 years ago
  46. 88930dd MINOR: queue: use a distinct variable for the assigned server and the queue by Willy Tarreau · 6 years ago
  47. c1a60d6 MINOR: queue: make sure pendconn->strm->pend_pos is always valid by Willy Tarreau · 6 years ago
  48. 6bdd05c DOC: queue: document the expected locking model for the server's queue by Willy Tarreau · 6 years ago
  49. d0ad4a8 MEDIUM: queue: make pendconn_free() work on the stream instead by Willy Tarreau · 6 years ago
  50. 9624fae MINOR: queue: centralize dequeuing code a bit better by Willy Tarreau · 6 years ago
  51. 77551ee BUG/MEDIUM: tasks: make __task_unlink_rq responsible for the rqueue size. by Olivier Houchard · 6 years ago
  52. 76e4518 MINOR: tasks: Add a flag that tells if we're in the global runqueue. by Olivier Houchard · 6 years ago
  53. ad8bd24 MINOR: signal: don't pass the signal number anymore as the wakeup reason by Willy Tarreau · 6 years ago
  54. c4aac9e BUG/MEDIUM: tasks: Make sure there's no task left before considering inactive. by Olivier Houchard · 6 years ago
  55. 189ea85 BUG/MEDIUM: tasks: use atomic ops for active_tasks_mask by Willy Tarreau · 6 years ago
  56. e85ee7b BUG/MEDIUM: tasks: Decrement rqueue_size at the right time. by Olivier Houchard · 6 years ago
  57. 9a77186 BUG/MEDIUM: tasks: make sure we pick all tasks in the run queue by Willy Tarreau · 6 years ago
  58. 306e653 BUG/MINOR: servers: Don't make "server" in a frontend fatal. by Olivier Houchard · 6 years ago
  59. 055ba4f BUG/MEDIUM: stats: don't ask for more data as long as we're responding by Willy Tarreau · 6 years ago
  60. 171d5f2 BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full by Willy Tarreau · 6 years ago
  61. 616ac81 MINOR: h2: add the error code and the max/last stream IDs to "show fd" by Willy Tarreau · 6 years ago
  62. 842ed9b MEDIUM: h2: use the default conn_stream's receive function by Willy Tarreau · 6 years ago
  63. 39d6850 MINOR: h2: make use of CS_FL_REOS to indicate that end of stream was seen by Willy Tarreau · 6 years ago
  64. 2df65e7 MEDIUM: h2: don't call data_cb->recv() anymore by Willy Tarreau · 6 years ago
  65. 2a761dc MEDIUM: h2: perform a single call to the data layer in demux() by Willy Tarreau · 6 years ago
  66. a56a6de MEDIUM: h2: move headers and data frame decoding to their respective parsers by Willy Tarreau · 6 years ago
  67. 454b57b MEDIUM: h2: centralize transfer of decoded frames in h2_rcv_buf() by Willy Tarreau · 6 years ago
  68. d755ea6 MEDIUM: h2: make h2_frt_transfer_data() copy via an intermediary buffer by Willy Tarreau · 6 years ago
  69. 937f760 MEDIUM: h2: make h2_frt_decode_headers() use an intermediary buffer by Willy Tarreau · 6 years ago
  70. 0b55907 MINOR: h2: make each H2 stream support an intermediary input buffer by Willy Tarreau · 6 years ago
  71. 67b1e78 MEDIUM: stream-int: automatically call si_cs_recv_cb() if the cs has data on wake() by Willy Tarreau · 6 years ago
  72. 11c9aa4 MEDIUM: conn_stream: add cs_recv() as a default rcv_buf() function by Willy Tarreau · 6 years ago
  73. f495fc4 BUG/MEDIUM: mux_h2: Call h2_send() before updating polling. by Olivier Houchard · 6 years ago
  74. ddb6c16 BUG/MEDIUM: threads: Fix the exit condition of the thread barrier by Christopher Faulet · 6 years ago
  75. 4507351 BUG/MINOR: build: Fix compilation with debug mode enabled by Christopher Faulet · 6 years ago
  76. 005e79e BUG/MINOR: http: Set brackets for the unlikely macro at the right place by Christopher Faulet · 6 years ago
  77. 8318885 MINOR: connection: simplify subscription by adding a registration function by Willy Tarreau · 6 years ago
  78. 910b2bc MEDIUM: connections/mux: Revamp the send direction. by Olivier Houchard · 6 years ago
  79. 6ff2039 MINOR: connections/mux: Add a new "subscribe" method. by Olivier Houchard · 6 years ago
  80. 83061a8 MAJOR: chunks: replace struct chunk with struct buffer by Willy Tarreau · 6 years ago
  81. 843b7cb MEDIUM: chunks: make the chunk struct's fields match the buffer struct by Willy Tarreau · 6 years ago
  82. c9fa048 MAJOR: buffer: finalize buffer detachment by Willy Tarreau · 6 years ago
  83. e312802 MINOR: buffer: replace buffer_replace2() with b_rep_blk() by Willy Tarreau · 6 years ago
  84. 4d893d4 MINOR: buffers/channel: replace buffer_insert_line2() with ci_insert_line2() by Willy Tarreau · 6 years ago
  85. a094fde MINOR: checks: use b_putist() instead of b_putstr() by Willy Tarreau · 6 years ago
  86. ea1b06d MINOR: buffer: add a new file for ist + buffer manipulation functions by Willy Tarreau · 6 years ago
  87. 55372f6 MINOR: buffer: replace b{i,o}_put* with b_put* by Willy Tarreau · 6 years ago
  88. 72a100b MINOR: buffer: replace bi_fast_delete() with b_del() by Willy Tarreau · 6 years ago
  89. 08afac0 MEDIUM: buffers: move "output" from struct buffer to struct channel by Olivier Houchard · 6 years ago
  90. 892f1db MINOR: buffer: rename the "data" field to "area" by Willy Tarreau · 6 years ago
  91. d54a8ce MAJOR: start to change buffer API by Willy Tarreau · 6 years ago
  92. 81521ed MINOR: buffer: adapt buffer_slow_realign() and buffer_dump() to the new API by Willy Tarreau · 6 years ago
  93. a79021a MINOR: lua: use the wrappers instead of directly manipulating buffer states by Willy Tarreau · 6 years ago
  94. 0b66284 MEDIUM: compression: start to move to the new buffer API by Olivier Houchard · 6 years ago
  95. f158937 MINOR: flt_trace: adapt to the new buffer API by Willy Tarreau · 6 years ago
  96. 5e74b0b MEDIUM: h1: port to new buffer API. by Willy Tarreau · 6 years ago
  97. fc0785d MINOR: payload: convert to the new buffer API by Willy Tarreau · 6 years ago
  98. 44a41a8 MINOR: filters: convert to the new buffer API by Willy Tarreau · 6 years ago
  99. f37954d MEDIUM: http: use wrappers instead of directly manipulating buffers states by Willy Tarreau · 6 years ago
  100. 6a445eb MINOR: backend: use new buffer API by Willy Tarreau · 6 years ago