1. 2567f18 BUG/MINOR: hlua: Fix memory leaks on error path when registering a fetch by Christopher Faulet · 3 years, 3 months ago
  2. aa22430 BUG/MINOR: hlua: Fix memory leaks on error path when registering a converter by Christopher Faulet · 3 years, 3 months ago
  3. 5294ec0 BUG/MINOR: hlua: Fix memory leaks on error path when registering a task by Christopher Faulet · 3 years, 3 months ago
  4. dda4444 MINOR: hlua: Add function to release a lua function by Christopher Faulet · 3 years, 3 months ago
  5. 147b8c9 MINOIR: checks/trace: Register a new trace source with its events by Christopher Faulet · 3 years, 3 months ago
  6. 6d80b63 MINOR: trace: Add the checks as a possible trace source by Christopher Faulet · 3 years, 3 months ago
  7. 4498271 MEDIUM: time: make the clock offset global and no per-thread by Willy Tarreau · 3 years, 3 months ago
  8. 7e4a557 MINOR: time: change the global timeval and the the global tick at once by Willy Tarreau · 3 years, 3 months ago
  9. 70cb302 MINOR: time: remove useless variable copies in tv_update_date() by Willy Tarreau · 3 years, 3 months ago
  10. c4c80fb MINOR: time: move the time initialization out of tv_update_date() by Willy Tarreau · 3 years, 3 months ago
  11. 61c72c3 CLEANUP: time: remove the now unused ms_left_scaled by Willy Tarreau · 3 years, 3 months ago
  12. fc6323a MEDIUM: freq_ctr: replace the per-second counters with the generic ones by Willy Tarreau · 3 years, 3 months ago
  13. fa1258f MINOR: freq_ctr: unify freq_ctr and freq_ctr_period into freq_ctr by Willy Tarreau · 3 years, 3 months ago
  14. 607be24 MEDIUM: freq_ctr: reimplement freq_ctr_remain_period() from freq_ctr_total() by Willy Tarreau · 3 years, 3 months ago
  15. a7a31b2 MEDIUM: freq_ctr: make read_freq_ctr_period() use freq_ctr_total() by Willy Tarreau · 3 years, 3 months ago
  16. f3a9f8d MINOR: freq_ctr: add a generic function to report the total value by Willy Tarreau · 3 years, 3 months ago
  17. 6eb3d37 MINOR: trace: make trace sources read_mostly by Willy Tarreau · 3 years, 3 months ago
  18. 295a89c MINOR: pattern: make the pat_lru_seed read_mostly by Willy Tarreau · 3 years, 3 months ago
  19. ad6722e MINOR: protocol: move __protocol_by_family to read_mostly by Willy Tarreau · 3 years, 3 months ago
  20. 14015b8 MINOR: server: move idle_conn_task to read_mostly by Willy Tarreau · 3 years, 3 months ago
  21. 56c3b8b MINOR: threads: mark all_threads_mask as read_mostly by Willy Tarreau · 3 years, 3 months ago
  22. ff88270 MINOR: pool: move pool declarations to read_mostly by Willy Tarreau · 3 years, 3 months ago
  23. 8209c9a MINOR: kqueue: move kqueue_fd to read_mostly by Willy Tarreau · 3 years, 3 months ago
  24. 26d212c MINOR: epoll: move epoll_fd to read_mostly by Willy Tarreau · 3 years, 3 months ago
  25. a1090a5 MINOR: fd: move a few read-mostly variables to their own section by Willy Tarreau · 3 years, 3 months ago
  26. f459640 MINOR: global: declare a read_mostly section by Willy Tarreau · 3 years, 3 months ago
  27. 9057a00 CLEANUP: pattern: make all pattern tables read-only by Willy Tarreau · 3 years, 3 months ago
  28. e2c65ba BUG/MINOR: mux-pt: Fix a possible UAF because of traces in mux_pt_io_cb by Christopher Faulet · 3 years, 3 months ago
  29. c0ae097 MINOIR: mux-pt/trace: Register a new trace source with its events by Christopher Faulet · 3 years, 3 months ago
  30. 403fd72 CLEANUP: Remove useless malloc() casts by Tim Duesterhus · 3 years, 3 months ago
  31. b8ee894 CLEANUP: htx: Make http_get_stline take a `const struct` by Tim Duesterhus · 3 years, 3 months ago
  32. c8f3e45 MEDIUM: resolvers: add support of tcp address on nameserver line. by Emeric Brun · 3 years, 3 months ago
  33. 4781b15 CLEANUP: atomic/tree-wide: replace single increments/decrements with inc/dec by Willy Tarreau · 3 years, 3 months ago
  34. 1851572 CLEANUP: atomic: add a fetch-and-xxx variant for common operations by Willy Tarreau · 3 years, 3 months ago
  35. 1db4273 CLEANUP: atomic: add an explicit _FETCH variant for add/sub/and/or by Willy Tarreau · 3 years, 3 months ago
  36. 184b212 MINOR: cli/show-fd: slightly reorganize the FD status flags by Willy Tarreau · 3 years, 3 months ago
  37. 1673c4a MINOR: fd: implement an exclusive syscall bit to remove the ugly "log" lock by Willy Tarreau · 3 years, 3 months ago
  38. 9063a66 MINOR: fd: move .exported into fdtab[].state by Willy Tarreau · 3 years, 3 months ago
  39. 5362bc9 MINOR: fd: move .et_possible into fdtab[].state by Willy Tarreau · 3 years, 3 months ago
  40. 0cc6128 MINOR: fd: move .initialized into fdtab[].state by Willy Tarreau · 3 years, 3 months ago
  41. 030dae1 MINOR: fd: move .cloned into fdtab[].state by Willy Tarreau · 3 years, 3 months ago
  42. b41a6e9 MINOR: fd: move .linger_risk into fdtab[].state by Willy Tarreau · 3 years, 3 months ago
  43. f509065 MEDIUM: fd: merge fdtab[].ev and state for FD_EV_* and FD_POLL_* into state by Willy Tarreau · 3 years, 3 months ago
  44. 8d27c20 MEDIUM: fd: prepare FD_POLL_* to move to bits 8-15 by Willy Tarreau · 3 years, 3 months ago
  45. 2675490 BUG/MEDIUM: log: fix config parse error logging on stdout/stderr or any raw fd by Emeric Brun · 3 years, 3 months ago
  46. 94aab06 MEDIUM: log: support tcp or stream addresses on log lines. by Emeric Brun · 3 years, 3 months ago
  47. 9533a70 MINOR: log: register config file and line number on log servers. by Emeric Brun · 3 years, 3 months ago
  48. ce325c4 MINOR: server/bind: add support of new prefixes for addresses. by Emeric Brun · 3 years, 3 months ago
  49. a683805 BUG/MINOR: tools: fix parsing "us" unit for timers by Thayne McCombs · 3 years, 3 months ago
  50. eccb31c BUG/MINOR: hlua: Detect end of request when reading data for an HTTP applet by Christopher Faulet · 3 years, 3 months ago
  51. 8043e83 MINOR: acl: Add HTTP_2.0 predefined macro by Christopher Faulet · 3 years, 3 months ago
  52. 779184e MINOR: No longer rely on deprecated sample fetches for predefined ACLs by Christopher Faulet · 3 years, 3 months ago
  53. 57610c6 CONTRIB: move src/wurfl.c and contrib/wurfl to addons/wurfl by Willy Tarreau · 3 years, 3 months ago
  54. f8d9ec5 CONTRIB: move src/da.c and contrib/deviceatlas to addons/deviceatlas by Willy Tarreau · 3 years, 3 months ago
  55. 977209d CONTRIB: move 51Degrees to addons/51degrees by Willy Tarreau · 3 years, 3 months ago
  56. 074ebcd CONTRIB: move some dev-specific tools to dev/ by Willy Tarreau · 3 years, 3 months ago
  57. 728be0f MINOR: config: diag if global section after non-global by Amaury Denoyelle · 3 years, 3 months ago
  58. de2fab5 MINOR: diag: diag if servers use the same cookie value by Amaury Denoyelle · 3 years, 3 months ago
  59. 5a6926d MINOR: diag: create cfgdiag module by Amaury Denoyelle · 3 years, 3 months ago
  60. da0e7f6 MINOR: server: diag for 0 weight server by Amaury Denoyelle · 3 years, 3 months ago
  61. c4d47d6 MINOR: cfgparse: diag for multiple nbthread statements by Amaury Denoyelle · 3 years, 3 months ago
  62. 7b01a8d MINOR: global: define diagnostic mode of execution by Amaury Denoyelle · 3 years, 3 months ago
  63. 374edc7 CLEANUP: vars: always pre-initialize smp in vars_parse_cli_get_var() by Willy Tarreau · 3 years, 3 months ago
  64. 09f8836 BUG/MINOR: http-fetch: Fix test on message state to capture the version by Christopher Faulet · 3 years, 3 months ago
  65. 021a8e4 MEDIUM: http-rules: Add wait-for-body action on request and response side by Christopher Faulet · 3 years, 3 months ago
  66. 581db2b MINOR: payload/config: Warn if a L6 sample fetch is used from an HTTP proxy by Christopher Faulet · 3 years, 3 months ago
  67. 42c6cf9 MINOR: action: Use a generic function to check validity of an action rule list by Christopher Faulet · 3 years, 3 months ago
  68. 2e96194 MINOR: htx: Make internal.strm.is_htx an internal sample fetch by Christopher Faulet · 3 years, 3 months ago
  69. a434a00 BUG/MINOR: payload/htx: Ingore L6 sample fetches for HTX streams/checks by Christopher Faulet · 3 years, 3 months ago
  70. 5eef018 MINOR: config/proxy: Warn if a TCP proxy without backend is upgradable to HTTP by Christopher Faulet · 3 years, 3 months ago
  71. 3b6446f MINOR: config/proxy: Don't warn for HTTP rules in TCP if 'switch-mode http' set by Christopher Faulet · 3 years, 4 months ago
  72. ae863c6 MEDIUM: Add tcp-request switch-mode action to perform HTTP upgrade by Christopher Faulet · 3 years, 4 months ago
  73. 6c1fd98 MINOR: stream: Handle stream HTTP upgrade in a dedicated function by Christopher Faulet · 3 years, 4 months ago
  74. 75f619a MINOR: http-ana: Simplify creation/destruction of HTTP transactions by Christopher Faulet · 3 years, 4 months ago
  75. c2ac5e4 MINOR: filters/http-ana: Decide to filter HTTP headers in HTTP analysers by Christopher Faulet · 3 years, 4 months ago
  76. 1bb6afa MINOR: stream: Use stream type instead of proxy mode when appropriate by Christopher Faulet · 3 years, 4 months ago
  77. 28da3f5 MEDIUM: mux-pt: Expose passthrough in the list of supported mux protocols by Christopher Faulet · 3 years, 5 months ago
  78. 3f612f7 MEDIUM: mux-h1: Expose h1 in the list of supported mux protocols by Christopher Faulet · 3 years, 5 months ago
  79. 7a9e362 MINOR: mux-pt: Don't perform implicit HTTP upgrade if not supported by mux by Christopher Faulet · 3 years, 4 months ago
  80. 143e9e5 MINOR: mux-h1: Don't perform implicit HTTP/2 upgrade if not supported by mux by Christopher Faulet · 3 years, 4 months ago
  81. a460057 MINOR: muxes: Add a flag to notify a mux does not support any upgrade by Christopher Faulet · 3 years, 4 months ago
  82. bb7abed BUG/MINOR: config: Add warning for http-after-response rules in TCP mode by Christopher Faulet · 3 years, 4 months ago
  83. 97b3a61 BUG/MINOR: stream: Properly handle TCP>H1>H2 upgrades in http_wait_for_request by Christopher Faulet · 3 years, 4 months ago
  84. 57e4a1b MINOR: stream: Be sure to set HTTP analysers when creating an HTX stream by Christopher Faulet · 3 years, 4 months ago
  85. e13ee70 MINOR: frontend: Create HTTP txn for HTX streams by Christopher Faulet · 3 years, 4 months ago
  86. f0d7eb2 MINOR: stream: Don't trigger errors on destructive HTTP upgrades by Christopher Faulet · 3 years, 4 months ago
  87. ceab1ed BUG/MINOR: mux-h2: Don't emit log twice if an error occurred on the preface by Christopher Faulet · 3 years, 4 months ago
  88. 645dc08 BUG/MINOR: http_fetch: make hdr_ip() resistant to empty fields by Willy Tarreau · 3 years, 3 months ago
  89. 4bfc663 CLEANUP: socket: replace SOL_IP/IPV6/TCP with IPPROTO_IP/IPV6/TCP by Willy Tarreau · 3 years, 3 months ago
  90. da23195 BUILD: tcp: use IPPROTO_IPV6 instead of SOL_IPV6 on FreeBSD/MacOS by Willy Tarreau · 3 years, 3 months ago
  91. ab79ee8 BUG/MINOR: tcp: fix silent-drop workaround for IPv6 by Willy Tarreau · 3 years, 3 months ago
  92. b48e7c0 BUG/MEDIUM: time: make sure to always initialize the global tick by Willy Tarreau · 3 years, 3 months ago
  93. 39272c2 BUG/MINOR: stats: Apply proper styles in HTML status page. by Florian Apolloner · 3 years, 3 months ago
  94. 5062302 BUG/MINOR: payload: Wait for more data if buffer is empty in payload/payload_lv by Christopher Faulet · 3 years, 3 months ago
  95. 9b9f847 MEDIUM: backend: use a trylock to grab a connection on high FD counts as well by Willy Tarreau · 3 years, 3 months ago
  96. 2c481d0 BUILD: ssl: use EVP_CIPH_GCM_MODE macro instead of HA_OPENSSL_VERSION by Ilya Shipitsin · 3 years, 3 months ago
  97. b8bd1ee MEDIUM: cli: add a new experimental "set var" command by Willy Tarreau · 3 years, 3 months ago
  98. c35eb38 MINOR: vars/cli: add a "get var" CLI command to retrieve global variables by Willy Tarreau · 3 years, 3 months ago
  99. 2f836de MINOR: action: add a new ACT_F_CLI_PARSER origin designation by Willy Tarreau · 3 years, 3 months ago
  100. db5e0db MINOR: sample: add a new CLI_PARSER context for samples by Willy Tarreau · 3 years, 3 months ago