1. fdabbe2 MINOR: buffer: remove unused bo_add() by Willy Tarreau · Mon Jul 09 10:20:16 2018 +0200
  2. cd9e60d MEDIUM: channel: adapt to the new buffer API by Willy Tarreau · Tue Jun 19 07:33:28 2018 +0200
  3. d4251a7 MINOR: channel: Add co_set_data(). by Olivier Houchard · Fri Jun 29 16:17:34 2018 +0200
  4. 3ee8344 MINOR: channel: remove almost all references to buf->i and buf->o by Willy Tarreau · Fri Jun 15 16:42:02 2018 +0200
  5. 591d445 MINOR: buffer: use b_orig() to replace most references to b->data by Willy Tarreau · Fri Jun 15 17:21:00 2018 +0200
  6. 50227f9 MINOR: buffer: use c_head() instead of buffer_wrap_sub(c->buf, p-o) by Willy Tarreau · Fri Jun 15 15:18:17 2018 +0200
  7. 144c5c4 MINOR: buffer: replace buffer_flush() with c_adv(chn, ci_data(chn)) by Willy Tarreau · Fri Jun 15 15:16:51 2018 +0200
  8. 5ba6552 MINOR: buffer: replace buffer_pending() with ci_data() by Willy Tarreau · Fri Jun 15 15:14:53 2018 +0200
  9. 3f67999 MINOR: buffer: replace bi_space_for_replace() with ci_space_for_replace() by Willy Tarreau · Fri Jun 15 15:06:42 2018 +0200
  10. 2375233 MINOR: buffer: replace buffer_full() with channel_full() by Willy Tarreau · Fri Jun 15 14:54:53 2018 +0200
  11. 271e2a5 MINOR: buffer: make bo_putchar() use b_tail() by Willy Tarreau · Mon Jul 09 10:31:30 2018 +0200
  12. 0c7ed5d MINOR: buffer: replace buffer_empty() with b_empty() or c_empty() by Willy Tarreau · Tue Jul 10 09:53:31 2018 +0200
  13. d760eec MINOR: buffer: replace buffer_not_empty() with b_data() or c_data() by Willy Tarreau · Tue Jul 10 09:50:25 2018 +0200
  14. eac5259 MINOR: buffer: use b_room() to determine available space in a buffer by Willy Tarreau · Fri Jun 15 13:59:36 2018 +0200
  15. bc59f35 MINOR: buffer: get rid of b_ptr() and convert its last users by Willy Tarreau · Fri Jun 15 13:45:17 2018 +0200
  16. 337ea57 MINOR: connection: add a new receive flag : CO_RFL_BUF_WET by Willy Tarreau · Tue Jun 19 06:23:38 2018 +0200
  17. 7f3225f MINOR: connection: add a flags argument to rcv_buf() by Willy Tarreau · Tue Jun 19 06:15:17 2018 +0200
  18. d9cf540 MEDIUM: mux: make mux->rcv_buf() take a size_t for the count by Willy Tarreau · Wed Jul 18 11:29:06 2018 +0200
  19. bfc4d77 MEDIUM: connection: make xprt->rcv_buf() use size_t for the count by Willy Tarreau · Wed Jul 18 11:22:03 2018 +0200
  20. deccd11 MEDIUM: mux: make mux->snd_buf() take the byte count in argument by Willy Tarreau · Thu Jun 14 18:38:55 2018 +0200
  21. 787db9a MEDIUM: connection: make xprt->snd_buf() take the byte count in argument by Willy Tarreau · Thu Jun 14 18:31:46 2018 +0200
  22. 55f3ce1 MINOR: buffer: make b_getblk_nc() take size_t for the block sizes by Willy Tarreau · Wed Jul 18 11:49:27 2018 +0200
  23. 206ba83 MINOR: buffer: make b_getblk_nc() take const pointers by Willy Tarreau · Thu Jun 14 15:27:31 2018 +0200
  24. 5d7d1bb MINOR: buffer: get rid of b_end() and b_to_end() by Willy Tarreau · Fri Jun 15 13:47:29 2018 +0200
  25. f40e682 MINOR: h1: make h1_measure_trailers() use an offset and a count by Willy Tarreau · Thu Jun 14 16:52:02 2018 +0200
  26. 84d6b7a MINOR: h1: make h1_parse_chunk_size() not depend on b_ptr() anymore by Willy Tarreau · Thu Jun 14 15:59:05 2018 +0200
  27. c0973c6 MINOR: h1: make h1_skip_chunk_crlf() not depend on b_ptr() anymore by Willy Tarreau · Thu Jun 14 15:53:21 2018 +0200
  28. 7314be8 MINOR: h1: make h1_measure_trailers() take the byte count in argument by Willy Tarreau · Thu Jun 14 13:32:50 2018 +0200
  29. e5f12ce MINOR: buffer: replace bi_del() and bo_del() with b_del() by Willy Tarreau · Fri Jun 15 10:28:05 2018 +0200
  30. a1f78fb MINOR: buffer: replace bo_getblk_nc() with b_getblk_nc() which takes an offset by Willy Tarreau · Thu Jun 14 14:38:11 2018 +0200
  31. 90ed383 MINOR: buffer: replace bo_getblk() with direction agnostic b_getblk() by Willy Tarreau · Fri Jun 15 14:20:26 2018 +0200
  32. e4d5a03 MINOR: buffer: merge b{i,o}_contig_space() by Willy Tarreau · Thu Jun 07 18:58:07 2018 +0200
  33. 0e11d59 MINOR: buffer: remove bo_contig_data() by Willy Tarreau · Thu Jun 07 19:03:40 2018 +0200
  34. 8f9c72d MINOR: buffer: remove bi_end() by Willy Tarreau · Thu Jun 07 18:46:28 2018 +0200
  35. 41e38ac MINOR: buffer: remove bo_end() by Willy Tarreau · Thu Jun 07 18:22:26 2018 +0200
  36. 89faf5d MINOR: buffer: remove bo_ptr() by Willy Tarreau · Thu Jun 07 18:16:48 2018 +0200
  37. dda2e41 MINOR: buffer: remove bi_ptr() by Willy Tarreau · Thu Jun 07 18:08:04 2018 +0200
  38. 7194d3c MINOR: buffer: split bi_contig_data() into ci_contig_data and b_config_data() by Willy Tarreau · Wed Jun 06 16:55:45 2018 +0200
  39. d55fe39 MINOR: buffer: remove bi_getblk() and bi_getblk_nc() by Willy Tarreau · Wed Jun 06 16:02:40 2018 +0200
  40. aa7af72 MINOR: buffer: replace calls to buffer_space_wraps() with b_space_wraps() by Willy Tarreau · Thu Jul 12 10:33:12 2018 +0200
  41. bcbd393 MINOR: channel/buffer: replace b_{adv,rew} with c_{adv,rew} by Willy Tarreau · Wed Jun 06 07:13:22 2018 +0200
  42. c0a51c5 MINOR: buffer: remove buffer_slow_realign() and the swap_buffer allocation code by Willy Tarreau · Thu Jul 12 11:02:51 2018 +0200
  43. fd8d42f MEDIUM: channel: make channel_slow_realign() take a swap buffer by Willy Tarreau · Thu Jul 12 10:57:15 2018 +0200
  44. 4cf1300 MINOR: channel/buffer: replace buffer_slow_realign() with channel_slow_realign() and b_slow_realign() by Willy Tarreau · Wed Jun 06 06:53:15 2018 +0200
  45. d5b343b MINOR: channel/buffer: use c_realign_if_empty() instead of buffer_realign() by Willy Tarreau · Wed Jun 06 06:42:46 2018 +0200
  46. 08d5ac8 MINOR: channel: add a few basic functions for the new buffer API by Willy Tarreau · Wed Jun 06 15:09:28 2018 +0200
  47. f17f19f MINOR: buffer: introduce b_realign_if_empty() by Willy Tarreau · Fri Jun 15 17:50:15 2018 +0200
  48. a04e40d MINOR: buffer: Add b_set_data(). by Olivier Houchard · Thu Jun 28 19:10:25 2018 +0200
  49. 09138ec MINOR: buffer: Introduce b_sub(), b_add(), and bo_add() by Olivier Houchard · Thu Jun 28 19:17:38 2018 +0200
  50. bbc68df MINOR: buffer: add a few basic functions for the new API by Willy Tarreau · Wed Jun 06 14:30:50 2018 +0200
  51. 506a29a MINOR: buffer: switch buffer sizes and offsets to size_t by Willy Tarreau · Wed Jul 18 10:07:58 2018 +0200
  52. 41806d1 MINOR: buffer: implement a new file for low-level buffer manipulation functions by Willy Tarreau · Wed Jul 11 09:39:05 2018 +0200
  53. 9ddaf79 MINOR: tasklet: Set process to NULL. by Olivier Houchard · Thu Jul 19 16:02:16 2018 +0200
  54. 17b4aa1 BUG/MINOR: ssl: properly ref-count the tls_keys entries by Willy Tarreau · Tue Jul 17 10:05:32 2018 +0200
  55. 8e2d943 MINOR: dns: new DNS options to allow/prevent IP address duplication by Baptiste Assmann · Fri Jun 22 15:04:43 2018 +0200
  56. 8618a6a MINOR: Some spelling cleanup in the comments. by Dave Chiluk · Thu Jun 21 11:03:20 2018 -0500
  57. dcd6f3a MINOR: tasks: Make sure we correctly init and deinit a tasklet. by Olivier Houchard · Fri Jun 08 17:08:19 2018 +0200
  58. 6e1796e BUG/MINOR: signals: ha_sigmask macro for multithreading by William Lallemand · Thu Jun 07 11:23:40 2018 +0200
  59. b1ca58b MINOR: tasks: Don't define rqueue if we're building without threads. by Olivier Houchard · Wed Jun 06 14:22:03 2018 +0200
  60. e13ab8b BUG/MEDIUM: tasks: Use the local runqueue when building without threads. by Olivier Houchard · Wed Jun 06 14:01:08 2018 +0200
  61. 10d81b8 MINOR: applet: assign the same nice value to a new appctx as its owner task by Willy Tarreau · Thu May 31 14:44:25 2018 +0200
  62. caa8a37 MINOR: task: Fix a compiler warning by adding a cast. by David Carlier · Fri Jun 01 14:32:39 2018 +0200
  63. 9d5422a MINOR: task/notification: Is notifications registered ? by Thierry FOURNIER · Wed May 30 11:40:08 2018 +0200
  64. 09eeb76 BUG/MEDIUM: tasks: Don't forget to increase/decrease tasks_run_queue. by Olivier Houchard · Mon May 28 13:51:06 2018 +0200
  65. 3fd1973 MINOR: http: Log warning if (add|set)-header fails by Tim Duesterhus · Sun May 27 20:35:08 2018 +0200
  66. 673867c MAJOR: applets: Use tasks, instead of rolling our own scheduler. by Olivier Houchard · Fri May 25 16:58:52 2018 +0200
  67. 1599b80 MINOR: tasks: Make the number of tasks to run at once configurable. by Olivier Houchard · Thu May 24 18:59:04 2018 +0200
  68. b0bdae7 MAJOR: tasks: Introduce tasklets. by Olivier Houchard · Fri May 18 18:45:28 2018 +0200
  69. f6e6dc1 MAJOR: tasks: Create a per-thread runqueue. by Olivier Houchard · Fri May 18 18:38:23 2018 +0200
  70. 9f6af33 MINOR: tasks: Change the task API so that the callback takes 3 arguments. by Olivier Houchard · Fri May 25 14:04:04 2018 +0200
  71. 0cd82e8 BUG/BUILD: threads: unbreak build without threads by Willy Tarreau · Wed May 23 19:54:43 2018 +0200
  72. d5b073c MINOR: lua: Improve error message by Thierry Fournier · Mon May 21 19:42:47 2018 +0200
  73. 68db023 CLEANUP: spoe: Remove unused variables the agent structure by Christopher Faulet · Fri Apr 06 11:34:12 2018 +0200
  74. cb92f5c MINOR: pollers: move polled_mask outside of struct fdtab. by Olivier Houchard · Thu Apr 26 14:23:07 2018 +0200
  75. 6b96f72 BUG/MEDIUM: pollers: Use a global list for fd shared between threads. by Olivier Houchard · Wed Apr 25 16:58:25 2018 +0200
  76. 6a2cf87 MINOR: fd: Make the lockless fd list work with multiple lists. by Olivier Houchard · Wed Apr 25 15:10:30 2018 +0200
  77. 9b36cb4 BUG/MEDIUM: task: Don't free a task that is about to be run. by Olivier Houchard · Fri May 04 15:46:16 2018 +0200
  78. 760e81d MINOR: backend: implement random-based load balancing by Willy Tarreau · Thu May 03 07:20:40 2018 +0200
  79. e2b10bf MINOR: http: Add support for 421 Misdirected Request by Tim Duesterhus · Fri Apr 27 21:18:46 2018 +0200
  80. abbf607 MEDIUM: cli: Add payload support by Aurélien Nephtali · Wed Apr 18 13:26:46 2018 +0200
  81. 174b06a MINOR: h2: detect presence of CONNECT and/or content-length by Willy Tarreau · Wed Apr 25 18:13:58 2018 +0200
  82. 302f9ef BUG/MEDIUM: connection: Make sure we have a mux before calling detach(). by Olivier Houchard · Fri Apr 13 15:50:27 2018 +0200
  83. 48aa13f BUG/MEDIUM: threads: Fix the max/min calculation because of name clashes by Christopher Faulet · Mon Apr 09 08:45:43 2018 +0200
  84. caf2fec MINOR: spoe: Add counters to log info about SPOE agents by Christopher Faulet · Wed Apr 04 10:25:50 2018 +0200
  85. 7250b8f MINOR: spoe: Add loggers dedicated to the SPOE agent by Christopher Faulet · Mon Mar 26 17:19:01 2018 +0200
  86. 28ac099 MINOR: log: Keep the ref when a log server is copied to avoid duplicate entries by Christopher Faulet · Mon Mar 26 16:09:19 2018 +0200
  87. 4b0b79d MINOR: log: move 'log' keyword parsing in dedicated function by Christopher Faulet · Mon Mar 26 15:54:32 2018 +0200
  88. 36bda1c MINOR: spoe: Add options to store processing times in variables by Christopher Faulet · Thu Mar 22 09:08:20 2018 +0100
  89. b2dd1e0 MINOR: spoe: Add metrics in to know time spent in the SPOE by Christopher Faulet · Thu Mar 22 09:07:41 2018 +0100
  90. 8ef1a6b BUG/MINOR: fd: Don't clear the update_mask in fd_insert. by Olivier Houchard · Tue Apr 03 19:06:18 2018 +0200
  91. b011d8f MINOR: mux: add a "show_fd" function to dump debugging information for "show fd" by Willy Tarreau · Fri Mar 30 14:41:19 2018 +0200
  92. 4037a3f MINOR: cli/threads: make "show fd" report thread_sync_io_handler instead of "unknown" by Willy Tarreau · Wed Mar 28 18:06:47 2018 +0200
  93. 4952985 REORG: compact "struct server" by Emmanuel Hocdet · Mon Mar 19 18:14:02 2018 +0100
  94. 4399c75 MINOR: proxy-v2-options: add crc32c by Emmanuel Hocdet · Mon Feb 05 15:26:43 2018 +0100
  95. 6afd898 MINOR: hash: add new function hash_crc32c by Emmanuel Hocdet · Mon Feb 05 15:23:39 2018 +0100
  96. 26fb5d8 BUG/MEDIUM: fd/threads: ensure the fdcache_mask always reflects the cache contents by Willy Tarreau · Tue Mar 20 19:06:52 2018 +0100
  97. 5cd4bbd BUG/MAJOR: threads/queue: Fix thread-safety issues on the queues management by Christopher Faulet · Wed Mar 14 16:18:06 2018 +0100
  98. 510c0d6 BUG/MEDIUM: threads/unix: Fix a deadlock when a listener is temporarily disabled by Christopher Faulet · Fri Mar 16 10:04:47 2018 +0100
  99. c41b3e8 DOC: buffers: clarify the purpose of the <from> pointer in offer_buffers() by Willy Tarreau · Fri Mar 02 10:27:12 2018 +0100
  100. 253c3b7 MINOR: connection: add proxy-v2-options authority by Emmanuel Hocdet · Thu Feb 01 18:29:59 2018 +0100