1. fd7cdc3 MINOR: qpack: generate headers list on decoder by Amaury Denoyelle · Tue Aug 24 15:13:20 2021 +0200
  2. 7a4f0d8 MINOR: quic-enc: fix varint encoding by Amaury Denoyelle · Tue Aug 24 16:29:49 2021 +0200
  3. f4c5c7b MINOR: quic: Wrong short packet minimum length by Frédéric Lécaille · Wed Aug 25 16:11:00 2021 +0200
  4. ca9d32c MINOR: quic: Wrong STREAM frame length computing by Frédéric Lécaille · Wed Aug 25 16:08:47 2021 +0200
  5. f798096 MINOR: quic: Post handshake packet building improvements by Frédéric Lécaille · Thu Aug 19 17:35:21 2021 +0200
  6. 67f47d0 MINOR: quic: Wrong flags handling for acks by Frédéric Lécaille · Thu Aug 19 15:19:09 2021 +0200
  7. 31550af MINOR: quic: Missing QUIC encryption level for qc_build_pkt() by Frédéric Lécaille · Thu Aug 19 07:33:08 2021 +0200
  8. ee57444 MINOR: quic: Fix handshake state debug strings by Frédéric Lécaille · Wed Aug 18 09:10:48 2021 +0200
  9. 2e459a8 MINOR: quic: Update the TLS extension for QUIC transport parameters by Frédéric Lécaille · Mon Aug 16 17:08:26 2021 +0200
  10. dbe25af MINOR: quic: Add a pool for TX ring buffer internal buffer by Frédéric Lécaille · Wed Aug 04 15:27:37 2021 +0200
  11. a2e954a MINOR: quic: Make circular buffer internal buffers be variable-sized. by Frédéric Lécaille · Wed Aug 04 14:53:06 2021 +0200
  12. 0e50e1b MINOR: quic: Add the packet type to quic_tx_packet struct by Frédéric Lécaille · Tue Aug 03 15:03:35 2021 +0200
  13. db2a764 MINOR: quic: Add a useful function to compute any frame length. by Frédéric Lécaille · Mon Aug 02 16:41:28 2021 +0200
  14. 0ad0458 MINOR: quic: Replace quic_tx_frm struct by quic_frame struct by Frédéric Lécaille · Tue Jul 27 14:51:54 2021 +0200
  15. c88df07 MINOR: quic: Make ->tx.frms quic_pktns struct member be thread safe by Frédéric Lécaille · Tue Jul 27 11:43:11 2021 +0200
  16. 120ea6f MINOR: quic: Make qc_treat_rx_pkts() be thread safe. by Frédéric Lécaille · Mon Jul 26 16:42:56 2021 +0200
  17. 98cdeb2 MINOR: quic: Rename ->rx.rwlock of quic_enc_level struct to ->rx.pkts_rwlock by Frédéric Lécaille · Mon Jul 26 16:38:14 2021 +0200
  18. 9054d1b MINOR: quic: Missing encryption level rx.crypto member initialization and lock. by Frédéric Lécaille · Mon Jul 26 16:23:53 2021 +0200
  19. b095252 MINOR: Add function for TX packets reference counting by Frédéric Lécaille · Fri Jul 16 11:42:44 2021 +0200
  20. c8d3f87 MINOR: quic: Remove old TX buffer implementation by Frédéric Lécaille · Tue Jul 06 17:19:44 2021 +0200
  21. c5b0c93 MINOR: quic: Make use of TX ring buffers to send QUIC packets by Frédéric Lécaille · Tue Jul 06 16:35:52 2021 +0200
  22. 6b19764 MINOR: quic: Initialize pointers to TX ring buffer list by Frédéric Lécaille · Tue Jul 06 16:25:08 2021 +0200
  23. 48f8e19 MINOR: proto_quic: Allocate TX ring buffers for listeners by Frédéric Lécaille · Tue Jul 06 15:39:26 2021 +0200
  24. 22cfdf8 MINOR: quic: Add ring buffer definition (struct qring) for QUIC by Frédéric Lécaille · Tue Jul 06 15:34:37 2021 +0200
  25. 9621565 MINOR: net_helper: add functions for pointers by Frédéric Lécaille · Tue Jul 06 14:34:46 2021 +0200
  26. c6bc185 MINOR: quic: Add a ring buffer implementation for QUIC by Frédéric Lécaille · Wed Jun 30 14:25:10 2021 +0200
  27. f3d078d MINOR: quic: Make qc_lstnr_pkt_rcv() be thread safe. by Frédéric Lécaille · Mon Jun 14 14:18:10 2021 +0200
  28. a11d0e2 MINOR: quic: Replace the RX unprotected packet list by a thread safety one. by Frédéric Lécaille · Mon Jun 07 14:38:18 2021 +0200
  29. c28aba2 MINOR: quic: Replace the RX list of packet by a thread safety one. by Frédéric Lécaille · Mon Jun 07 10:28:10 2021 +0200
  30. a5fe49f MINOR: quic: Move the connection state by Frédéric Lécaille · Fri Jun 04 11:52:35 2021 +0200
  31. 9fccace MINOR: quic: Add a lock for RX packets by Frédéric Lécaille · Fri Jun 04 10:33:32 2021 +0200
  32. 497fa78 MINOR: quic: Derive the initial secrets asap by Frédéric Lécaille · Mon May 31 15:16:13 2021 +0200
  33. 3d77fa7 MINOR: quic: QUIC conn initialization from I/O handler by Frédéric Lécaille · Mon May 31 09:30:14 2021 +0200
  34. 785c9c9 MINOR: quic: Replace max_packet_size by max_udp_payload size. by Frédéric Lécaille · Mon May 17 16:42:21 2021 +0200
  35. 8648c7c MINOR: quic: Avoid header collisions by Frédéric Lécaille · Tue Mar 23 14:46:56 2021 +0100
  36. 7383970 MINOR: quic: Add a wrapper function to update transport parameters. by Frédéric Lécaille · Thu Mar 18 15:01:27 2021 +0100
  37. 7a668f5 MINOR: quic: Variable-length integer encoding/decoding into/from buffer struct. by Frédéric Lécaille · Thu Mar 04 19:12:20 2021 +0100
  38. b4672fb MINOR: qpack: Add QPACK compression. by Frédéric Lécaille · Wed Mar 03 16:13:10 2021 +0100
  39. ccac11f MINOR: h3: Add HTTP/3 definitions. by Frédéric Lécaille · Wed Mar 03 16:09:02 2021 +0100
  40. b8f60b3 MINOR: quic: Add a new definition to store STREAM frames. by Frédéric Lécaille · Wed Mar 03 16:04:28 2021 +0100
  41. 65bc434 MINOR: quic: Attach QUIC mux connection objet to QUIC connection. by Frédéric Lécaille · Thu Feb 18 10:16:06 2021 +0100
  42. 2abe74f MINOR: connection: Add callbacks definitions for QUIC. by Frédéric Lécaille · Thu Feb 18 10:04:27 2021 +0100
  43. dfbae76 MINOR: mux_quic: Add QUIC mux layer. by Frédéric Lécaille · Thu Feb 18 09:59:01 2021 +0100
  44. 5aa4143 MINOR: quic: Move transport parmaters to anynomous struct. by Frédéric Lécaille · Thu Jan 28 16:22:52 2021 +0100
  45. ec4a875 CLEANUP: Apply xalloc_size.cocci by Tim Duesterhus · Wed Sep 15 13:58:46 2021 +0200
  46. b113b5c CLEANUP: Apply ist.cocci by Tim Duesterhus · Wed Sep 15 13:58:44 2021 +0200
  47. 81a76f4 REORG: threads: move ha_get_pthread_id() to tinfo.h by Willy Tarreau · Mon Sep 13 18:42:07 2021 +0200
  48. e612446 MINOR: applet: remove the thread mask from appctx_new() by Willy Tarreau · Mon Sep 13 10:07:38 2021 +0200
  49. 7a8aff2 BUILD: ist: prevent gcc11 maybe-uninitialized warning on istalloc by Amaury Denoyelle · Tue May 18 11:33:57 2021 +0200
  50. c2afb86 MINOR: pools: use mallinfo2() when available instead of mallinfo() by Willy Tarreau · Thu Sep 16 09:18:21 2021 +0200
  51. 8f1669b CLEANUP: Remove prototype for non-existent thread_get_default_count() by Tim Duesterhus · Sun Sep 12 13:21:54 2021 +0200
  52. 992007e CLEANUP: tree-wide: fix prototypes for functions taking no arguments. by Tim Duesterhus · Sun Sep 12 12:49:33 2021 +0200
  53. 4f5485b BUG/MINOR: compat: make sure __WORDSIZE is always defined by Willy Tarreau · Wed Sep 15 10:15:03 2021 +0200
  54. 8ab9419 BUILD: threads: fix -Wundef for _POSIX_PRIORITY_SCHEDULING on libmusl by Willy Tarreau · Wed Sep 15 10:12:04 2021 +0200
  55. 8ac6597 BUILD: compiler: fixed a missing test on defined(__GNUC__) by Willy Tarreau · Mon Sep 13 09:30:09 2021 +0200
  56. cf6f574 CLEANUP: Move XXH3 macro from haproxy/compat.h to haproxy/xxhash.h by Tim Duesterhus · Sat Sep 11 20:29:46 2021 +0200
  57. a8bfb4d CLEANUP: ebmbtree: Replace always-taken elseif by else by Tim Düsterhus · Sat Sep 11 17:02:33 2021 +0200
  58. d5fc8fc CLEANUP: Add haproxy/xxhash.h to avoid modifying import/xxhash.h by Tim Duesterhus · Sat Sep 11 17:51:13 2021 +0200
  59. f079f44 MINOR: htx: Skip headers with no value when adding a header list to a message by Christopher Faulet · Thu Sep 09 09:44:18 2021 +0200
  60. ac5f634 BUILD: fix dragonfly build again on __read_mostly by devnexen@gmail.com · Sat Sep 04 09:58:57 2021 +0100
  61. 61ecf28 OPTIM: vars: only takes the variables lock on shared entries by Willy Tarreau · Wed Sep 08 15:20:45 2021 +0200
  62. dc72fbb MINOR: vars: centralize the lock/unlock into static inlines by Willy Tarreau · Wed Sep 08 15:19:57 2021 +0200
  63. 3a4bedc MEDIUM: vars: replace the global name index with a hash by Willy Tarreau · Tue Aug 31 08:51:02 2021 +0200
  64. c1c88f4 MEDIUM: vars: make var_clear() only reset VF_PERMANENT variables by Willy Tarreau · Wed Sep 08 15:03:58 2021 +0200
  65. 3dc6dc3 MINOR: vars: store flags into variables and add VF_PERMANENT by Willy Tarreau · Wed Sep 08 11:07:32 2021 +0200
  66. 4994b57 MINOR: vars: add a VF_CREATEONLY flag for creation by Willy Tarreau · Wed Sep 08 11:38:25 2021 +0200
  67. 7978c5c MEDIUM: vars: make the ifexist variant of set-var only apply to the proc scope by Willy Tarreau · Tue Sep 07 14:24:07 2021 +0200
  68. b7bfcb3 MINOR: vars: rename vars_init() to vars_init_head() by Willy Tarreau · Tue Aug 31 08:13:25 2021 +0200
  69. 1008071 MINOR: proxy: add a global "grace" directive to postpone soft-stop by Willy Tarreau · Tue Sep 07 10:49:45 2021 +0200
  70. 3b69886 BUG/MAJOR: htx: fix missing header name length check in htx_add_header/trailer by Willy Tarreau · Thu Aug 26 16:23:37 2021 +0200
  71. 3d5f19e CLEANUP: htx: remove comments about "must be < 256 MB" by Willy Tarreau · Thu Aug 26 16:07:22 2021 +0200
  72. e352b9d MINOR: vars: make vars_get_by_* support an optional default value by Willy Tarreau · Fri Sep 03 11:52:38 2021 +0200
  73. 9a621ae MEDIUM: vars: add a new "set-var-fmt" action by Willy Tarreau · Thu Sep 02 21:00:38 2021 +0200
  74. 57467b8 MINOR: sample: add missing ARGC_ entries by Willy Tarreau · Thu Sep 02 19:43:20 2021 +0200
  75. bc1223b MINOR: http-rules: add a new "ignore-empty" option to redirects. by Willy Tarreau · Thu Sep 02 16:54:33 2021 +0200
  76. abc6b31 CLEANUP: Add missing include guard to signal.h by Tim Duesterhus · Wed Sep 01 21:23:25 2021 +0200
  77. 87154e3 BUG/MAJOR: queue: better protect a pendconn being picked from the proxy by Willy Tarreau · Tue Aug 31 17:21:39 2021 +0200
  78. fe21fe7 MINOR: log: Add new "error-log-format" option by Remi Tricot-Le Breton · Tue Aug 31 12:08:52 2021 +0200
  79. ea57a9b BUILD: ssl: next round of build warnings on LIBRESSL_VERSION_NUMBER by Willy Tarreau · Mon Aug 30 06:10:04 2021 +0200
  80. a01f8ce BUILD/MINOR: regex: avoid a build warning on USE_PCRE2 with -Wundef by Willy Tarreau · Sat Aug 28 12:49:58 2021 +0200
  81. 6e5542e BUILD/MINOR: ssl: avoid a build warning on LIBRESSL_VERSION with -Wundef by Willy Tarreau · Sat Aug 28 12:06:51 2021 +0200
  82. 3305643 BUILD/MINOR: defaults: eliminate warning on MAXHOSTNAMELEN with -Wundef by Willy Tarreau · Sat Aug 28 12:05:32 2021 +0200
  83. cbdc74b BUG/MINOR: ebtree: remove dependency on incorrect macro for bits per long by Willy Tarreau · Sat Aug 28 11:55:53 2021 +0200
  84. fe456c5 MINOR: time: add report_idle() to report process-wide idle time by Willy Tarreau · Sat Aug 28 11:07:31 2021 +0200
  85. e365aa2 BUG/MINOR: time: fix idle time computation for long sleeps by Willy Tarreau · Fri Aug 27 23:16:58 2021 +0200
  86. 310a260 MEDIUM: config: Deprecate tune.ssl.capture-cipherlist-size by Marcin Deranek · Tue Jul 13 19:04:24 2021 +0200
  87. 959a48c MINOR: sample: Expose SSL captures using new fetchers by Marcin Deranek · Tue Jul 13 15:14:21 2021 +0200
  88. 769fd2e MEDIUM: ssl: Capture more info from Client Hello by Marcin Deranek · Mon Jul 12 14:16:55 2021 +0200
  89. 906f7da MINOR: compiler: implement an ONLY_ONCE() macro by Willy Tarreau · Thu Aug 26 15:46:51 2021 +0200
  90. 5cca48c MINOR: server: define non purgeable server flag by Amaury Denoyelle · Mon Aug 23 14:03:20 2021 +0200
  91. bc2ebfa MEDIUM: server: extend refcount for all servers by Amaury Denoyelle · Wed Aug 25 15:34:53 2021 +0200
  92. 0a8d05d BUG/MINOR: stats: use refcount to protect dynamic server on dump by Amaury Denoyelle · Wed Aug 25 14:39:53 2021 +0200
  93. f5c1e12 MINOR: server: return the next srv instance on free_server by Amaury Denoyelle · Wed Aug 25 15:03:46 2021 +0200
  94. ff0f278 CLEANUP: assorted typo fixes in the code and comments by Ilya Shipitsin · Sun Aug 22 22:18:07 2021 +0500
  95. 3aeb3f9 MINOR: cfgcond: implements openssl_version_atleast and openssl_version_before by William Lallemand · Sat Aug 21 23:59:56 2021 +0200
  96. 44d862d MINOR: ssl: add an openssl version string parser by William Lallemand · Sat Aug 21 23:16:06 2021 +0200
  97. 2a8fe8b MINOR: httpclient: cleanup the include files by William Lallemand · Fri Aug 20 14:25:15 2021 +0200
  98. f95c295 BUILD/MINOR: ssl: Fix compilation with OpenSSL 1.0.2 by Remi Tricot-Le Breton · Fri Aug 20 09:51:23 2021 +0200
  99. 74f6ab6 MEDIUM: ssl: Keep a reference to the client's certificate for use in logs by Remi Tricot-Le Breton · Thu Aug 19 18:06:30 2021 +0200
  100. 33b0d09 MINOR: httpclient: implement a simple HTTP Client API by William Lallemand · Fri Aug 13 16:05:53 2021 +0200