1. 9aaf778 MAJOR: connection : Split struct connection into struct connection and struct conn_stream. by Olivier Houchard · 7 years ago
  2. 1bc04c7 BUG/MINOR: threads: Add missing THREAD_LOCAL on static here and there by Christopher Faulet · 7 years ago
  3. b5997f7 MAJOR: threads/map: Make acls/maps thread safe by Emeric Brun · 7 years ago
  4. 8c1aaa2 MEDIUM: threads/http: Make http_capture_bad_message thread-safe by Emeric Brun · 7 years ago
  5. 819fc6f MEDIUM: threads/stick-tables: handle multithreads on stick tables by Emeric Brun · 7 years ago
  6. 29f77e8 MEDIUM: threads/server: Add a lock per server and atomically update server vars by Christopher Faulet · 7 years ago
  7. 40a007c MEDIUM: threads/server: Make connection list (priv/idle/safe) thread-safe by Christopher Faulet · 7 years ago
  8. ff8abcd MEDIUM: threads/proxy: Add a lock per proxy and atomically update proxy vars by Christopher Faulet · 7 years ago
  9. 8d8aa0d MEDIUM: threads/listeners: Make listeners thread-safe by Christopher Faulet · 7 years ago
  10. 1b421ea MINOR: acl: Pass the ACLs as an explicit parameter of build_acl_cond by Christopher Faulet · 7 years ago
  11. 29730ba MINOR: action: Add a functions to check http capture rules by Christopher Faulet · 7 years ago
  12. 78880fb MINOR: action: Add function to check rules using an action ACT_ACTION_TRK_* by Christopher Faulet · 7 years ago
  13. 4fce0d8 MINOR: action: Use trk_idx instead of tcp/http_trk_idx by Christopher Faulet · 7 years ago
  14. c2aae74 MEDIUM: ssl: Handle early data with OpenSSL 1.1.1 by Olivier Houchard · 7 years ago
  15. 51a76d8 MINOR: http: Mark the 425 code as "Too Early". by Olivier Houchard · 7 years ago
  16. 2ae327e BUG/MEDIUM: prevent buffers being overwritten during build_logline() execution by Dragan Dosen · 7 years ago
  17. b289256 MEDIUM: http: make the chunk crlf parser only depend on the buffer by Willy Tarreau · 7 years ago
  18. e56cdd3 MEDIUM: http: make the chunk size parser only depend on the buffer by Willy Tarreau · 7 years ago
  19. 8740c8b REORG: http: move the HTTP/1 header block parser to h1.c by Willy Tarreau · 7 years ago
  20. db4893d REORG: http: move the HTTP/1 chunk parser to h1.{c,h} by Willy Tarreau · 7 years ago
  21. 0da5b3b REORG: http: move some very http1-specific parts to h1.{c,h} by Willy Tarreau · 7 years ago
  22. 06d80a9 REORG: channel: finally rename the last bi_* / bo_* functions by Willy Tarreau · 7 years ago
  23. a258479 BUG/MEDIUM: http: Return an error when url_dec sample converter failed by Christopher Faulet · 7 years ago
  24. c3680ec MINOR: add severity information to cli feedback messages by Andjelko Iharos · 7 years ago
  25. 5d468ca BUG/MEDIUM: http: Close streams for connections closed before a redirect by Christopher Faulet · 7 years ago
  26. 52a91d3 MEDIUM: check: server states and weight propagation re-work by Emeric Brun · 7 years ago
  27. 6988f67 MINOR: http: Use a trash chunk to store decoded string of the HTTP auth header by Christopher Faulet · 7 years ago
  28. 585744b REORG/MEDIUM: connection: introduce the notion of connection handle by Willy Tarreau · 7 years ago
  29. a548069 MINOR: http: export some of the HTTP parser macros by Willy Tarreau · 7 years ago
  30. 56d2609 BUG/MAJOR: http: Fix possible infinity loop in http_sync_(req|res)_state by Christopher Faulet · 7 years ago
  31. a81ff60 BUG/MINOR: http: Fix bug introduced in previous patch in http_resync_states by Christopher Faulet · 7 years ago
  32. 894da4c MINOR: http: Rely on analyzers mask to end processing in forward_body functions by Christopher Faulet · 7 years ago
  33. 1486b0a BUG/MEDIUM: http: Switch HTTP responses in TUNNEL mode when body length is undefined by Christopher Faulet · 7 years ago
  34. 4be9803 MINOR: http: Switch requests/responses in TUNNEL mode only by checking txn flags by Christopher Faulet · 7 years ago
  35. f77bb53 MINOR: http: Reorder/rewrite checks in http_resync_states by Christopher Faulet · 7 years ago
  36. a3992e0 BUG/MINOR: http: Set the response error state in http_sync_res_state by Christopher Faulet · 7 years ago
  37. a14ad72 BUG/MINOR: http: properly handle all 1xx informational responses by Willy Tarreau · 7 years ago
  38. a94fda3 BUG/MINOR: http: Don't reset the transaction if there are still data to send by Christopher Faulet · 7 years ago
  39. 96fd926 BUG/MAJOR: http: fix buffer overflow on loguri buffer. by Emeric Brun · 7 years ago
  40. a33510b BUG/MINOR: http/filters: Be sure to wait if a filter loops in HTTP_MSG_ENDING by Christopher Faulet · 7 years ago
  41. 6a0bca9 BUG/MAJOR: http: call manage_client_side_cookies() before erasing the buffer by Willy Tarreau · 7 years ago
  42. 23e9e93 MINOR: log: Add logurilen tunable. by Stéphane Cottin · 7 years ago
  43. 2395368 DOC: update RFC references by Lukas Tribus · 7 years ago
  44. d7d8881 MINOR: proto-http: Add sample fetch wich returns all HTTP headers by Thierry FOURNIER · 7 years ago
  45. 5617dce MINOR: Add binary encoding request header sample fetch by Thierry FOURNIER · 7 years ago
  46. 9f724ed BUG/MEDIUM: http: Drop the connection establishment when a redirect is performed by Christopher Faulet · 7 years ago
  47. 69744d9 BUG/MEDIUM: http: Fix blocked HTTP/1.0 responses when compression is enabled by Christopher Faulet · 7 years ago
  48. 814d270 MINOR: http: Add debug messages when HTTP body analyzers are called by Christopher Faulet · 7 years ago
  49. be821b9 MINOR: http: remove useless check on HTTP_MSGF_XFER_LEN for the request by Christopher Faulet · 7 years ago
  50. c0c672a BUG/MINOR: http: Fix conditions to clean up a txn and to handle the next request by Christopher Faulet · 7 years ago
  51. e39683c BUG/MEDIUM: stream: fix client-fin/server-fin handling by Hongbo Long · 7 years ago
  52. 014e39c BUG/MAJOR: http: fix typo in http_apply_redirect_rule by Christopher Faulet · 7 years ago
  53. e600624 BUG/MEDIUM: filters: Fix channels synchronization in flt_end_analyze by Christopher Faulet · 7 years ago
  54. 2019f95 CLEANUP: http: make http_server_error() not set the status anymore by Willy Tarreau · 7 years ago
  55. 800d176 MINOR: http-request tarpit deny_status. by Jarno Huuskonen · 7 years ago
  56. 9e6906b MEDIUM: http_error_message: txn->status / http_get_status_idx. by Jarno Huuskonen · 7 years ago
  57. 19b1412 MINOR: http: don't close when redirect location doesn't start with "/" by Willy Tarreau · 7 years ago
  58. cdade94 BUG/MINOR: http: Return an error when a replace-header rule failed on the response by Christopher Faulet · 7 years ago
  59. 07a0fec BUG/MEDIUM: http: Prevent replace-header from overwriting a buffer by Christopher Faulet · 7 years ago
  60. f1cc5d0 BUG/MEDIUM: filters: Do not truncate HTTP response when body length is undefined by Christopher Faulet · 7 years ago
  61. 0d94576 BUG/MEDIUM: http: prevent redirect from overwriting a buffer by Thierry FOURNIER · 7 years ago
  62. 59af2df MINOR: proto_http.c 502 error txt typo. by Jarno Huuskonen · 8 years ago
  63. 16ad94a MINOR: Use "500 Internal Server Error" for 500 error/status code message. by Jarno Huuskonen · 7 years ago
  64. 52f5db2 MINOR: http: custom status reason. by Robin H. Johnson · 8 years ago
  65. 2afff9c BUG/MAJOR: http: fix risk of getting invalid reports of bad requests by Willy Tarreau · 7 years ago
  66. 10e61cb BUG/MINOR: http: report real parser state in error captures by Willy Tarreau · 7 years ago
  67. 0184ea7 BUG/MAJOR: channel: Fix the definition order of channel analyzers by Christopher Faulet · 7 years ago
  68. 43ad11d MINOR: Do not forward the header "Expect: 100-continue" when the option http-buffer-request is set by Thierry FOURNIER / OZON.IO · 8 years ago
  69. 35088f9 BUG/MINOR: http: don't send an extra CRLF after a Set-Cookie in a redirect by Matthieu Guegan · 8 years ago
  70. 6962f4e BUG/MINOR: http: Call XFER_DATA analyzer when HTTP txn is switched in tunnel mode by Christopher Faulet · 8 years ago
  71. 3235957 BUG/MINOR: http: Keep the same behavior between 1.6 and 1.7 for tunneled txn by Christopher Faulet · 8 years ago
  72. d1cd209 BUG/MEDIUM: http: Fix tunnel mode when the CONNECT method is used by Christopher Faulet · 8 years ago
  73. 35069f8 MINOR: cli: make "show errors" capable of dumping only request or response by Willy Tarreau · 8 years ago
  74. 234ba2d MINOR: cli: make "show errors" support a proxy name by Willy Tarreau · 8 years ago
  75. 8a4e442 MEDIUM: log-format: Use standard HAProxy log system to report errors by Thierry FOURNIER / OZON.IO · 8 years ago
  76. 59fd511 MEDIUM: log-format/conf: take into account the parse_logformat_string() return code by Thierry FOURNIER / OZON.IO · 8 years ago
  77. 6fe0e1b CLEANUP: log-format: remove unused arguments by Thierry FOURNIER / OZON.IO · 8 years ago
  78. 30e5e18 CLEANUP: cli: remove assignments to st0 and st2 in keyword parsers by Willy Tarreau · 8 years ago
  79. 12207b3 REORG: cli: move "show errors" out of cli.c by Willy Tarreau · 8 years ago
  80. 9ed6203 REORG: cli: split dumpstats.h in stats.h and cli.h by William Lallemand · 8 years ago
  81. e6d9c21 OPTIM: http: optimize lookup of comma and quote in header values by Willy Tarreau · 8 years ago
  82. 5f10ea3 OPTIM: http: improve parsing performance of long URIs by Willy Tarreau · 8 years ago
  83. 0431f9d OPTIM: http: improve parsing performance of long header lines by Willy Tarreau · 8 years ago
  84. 2235b26 OPTIM: http: move all http character classs tables into a single one by Willy Tarreau · 8 years ago
  85. b12ff9a CLEANUP: proto_http: Removing useless variable assignation by Erwan Velu · 9 years ago
  86. 4cac359 MEDIUM: log: Decompose %Tq in %Th %Ti %TR by Thierry FOURNIER / OZON.IO · 8 years ago
  87. 3146a4c BUG/MINOR: peers: don't count track-sc multiple times on errors by Willy Tarreau · 8 years ago
  88. e4edc6b MEDIUM: http: implement http-response track-sc* directive by Ruoshan Huang · 8 years ago
  89. a9300a3 BUG/MINOR: Rework slightly commit 9962f8fc to clean code and avoid mistakes by Christopher Faulet · 8 years ago
  90. 9962f8f BUG/MEDIUM: http: unbreak uri/header/url_param hashing by Willy Tarreau · 8 years ago
  91. 29bdb1c BUG/MINOR: http: fix misleading error message for response captures by Willy Tarreau · 8 years ago
  92. 1eea6d7 BUG/MINOR: filters: Fix HTTP parsing when a filter loops on data forwarding by Christopher Faulet · 8 years ago
  93. dd01678 BUG/MINOR: fix http-response set-log-level parsing error by Ruoshan Huang · 8 years ago
  94. db5af61 BUG/MINOR: http: url32+src should check cli_conn before using it by Dragan Dosen · 8 years ago
  95. e5f4133 BUG/MINOR: http: url32+src should use the big endian version of url32 by Dragan Dosen · 8 years ago
  96. 4b788f7 BUG/MEDIUM: http: add-header: buffer overwritten by Thierry Fournier · 8 years ago
  97. 53c1a9b BUG/MINOR: http: add-header: header name copied twice by Thierry Fournier · 8 years ago
  98. 2e785f2 MEDIUM: tcp: add 'set-src' to 'tcp-request connection' by William Lallemand · 8 years ago
  99. 58727ec BUG/MAJOR: http: fix breakage of "reqdeny" causing random crashes by Willy Tarreau · 8 years ago
  100. 6e61589 BUG/MAJOR: fix listening IP address storage for frontends by Vincent Bernat · 8 years ago