1. 58048a2 BUG/MINOR: parse: check the validity of size string in a more strict way by Godbach · 9 years ago
  2. 9770787 MEDIUM: samples: provide basic arithmetic and bitwise operators by Willy Tarreau · 9 years ago
  3. 3180f7b MINOR: ssl: load certificates in alphabetical order by Cyril Bonté · 9 years ago
  4. a0dc23f MEDIUM: http: implement http-request set-{method,path,query,uri} by Willy Tarreau · 9 years ago
  5. d817e46 BUG/MINOR: sample: fix case sensitivity for the regsub converter by Willy Tarreau · 9 years ago
  6. 0766e44 MEDIUM/BUG: Only explicitly report "DOWN (agent)" if the agent health is zero by Simon Horman · 10 years ago
  7. 1a23cf0 BUG/MEDIUM: Do not set agent health to zero if server is disabled in config by Simon Horman · 10 years ago
  8. 7eda849 MEDIUM: samples: add a regsub converter to perform regex-based transformations by Willy Tarreau · 9 years ago
  9. 15a53a4 MEDIUM: regex: add support for passing regex flags to regex_exec_match() by Willy Tarreau · 9 years ago
  10. 4694778 MINOR: args: implement a new arg type for regex : ARGT_REG by Willy Tarreau · 9 years ago
  11. 3d241e7 MEDIUM: args: use #define to specify the number of bits used by arg types and counts by Willy Tarreau · 9 years ago
  12. 8560328 BUG/MEDIUM: http: make http-request set-header compute the string before removal by Willy Tarreau · 9 years ago
  13. 53c250e BUG/MINOR: args: add missing entry for ARGT_MAP in arg_type_names by Willy Tarreau · 9 years ago
  14. 324f07f MEDIUM: backend: add the crc32 hash algorithm for load balancing by Willy Tarreau · 9 years ago
  15. 8059977 MINOR: samples: provide a "crc32" converter by Willy Tarreau · 9 years ago
  16. c829ee4 MINOR: hash: add new function hash_crc32 by Willy Tarreau · 9 years ago
  17. 49ad95c MINOR: http: add a new fetch "query" to extract the request's query string by Willy Tarreau · 9 years ago
  18. d025648 MAJOR: init: automatically set maxconn and/or maxsslconn when possible by Willy Tarreau · 9 years ago
  19. d92aa5c MINOR: global: report information about the cost of SSL connections by Willy Tarreau · 9 years ago
  20. fce0311 MINOR: global: always export some SSL-specific metrics by Willy Tarreau · 9 years ago
  21. 3ca1a88 MINOR: tools: add new round_2dig() function to round integers by Willy Tarreau · 9 years ago
  22. 8c97ab5 BUG/MAJOR: log: don't try to emit a log if no logger is set by Willy Tarreau · 9 years ago
  23. 319f745 MINOR: channel: rename bi_erase() to channel_truncate() by Willy Tarreau · 9 years ago
  24. b5051f8 MINOR: channel: rename bi_avail() to channel_recv_max() by Willy Tarreau · 9 years ago
  25. 3f5096d MINOR: channel: rename buffer_max_len() to channel_recv_limit() by Willy Tarreau · 9 years ago
  26. 3889fff MINOR: channel: rename channel_full() to !channel_may_recv() by Willy Tarreau · 9 years ago
  27. ba0902e CLEANUP: channel: rename channel_reserved -> channel_is_rewritable by Willy Tarreau · 9 years ago
  28. 7c1c217 BUG/MEDIUM: http: fix header removal when previous header ends with pure LF by Willy Tarreau · 9 years ago
  29. 094af4e MINOR: logs: add a new per-proxy "log-tag" directive by Willy Tarreau · 9 years ago
  30. f607d81 BUG/MEDIUM: backend: correctly detect the domain when use_domain_only is used by Cyril Bonté · 9 years ago
  31. 3c23a85 CLEANUP: session: remove session_from_task() by Willy Tarreau · 10 years ago
  32. ac92a06 MINOR: checks: update dynamic environment variables in external checks by Cyril Bonté · 10 years ago
  33. 56efc48 OPTIM: stream-int: try to send pending spliced data by Willy Tarreau · 10 years ago
  34. 9b20c55 MEDIUM: stream-int: support splicing from applets by Willy Tarreau · 10 years ago
  35. b034b25 MEDIUM: channel: implement a zero-copy buffer transfer by Willy Tarreau · 10 years ago
  36. 33cb065 MINOR: config: implement global setting tune.buffers.limit by Willy Tarreau · 10 years ago
  37. 1058ae7 MINOR: config: implement global setting tune.buffers.reserve by Willy Tarreau · 10 years ago
  38. a24adf0 MAJOR: session: only wake up as many sessions as available buffers permit by Willy Tarreau · 10 years ago
  39. 9841019 MINOR: stats: report a "waiting" flags for sessions by Willy Tarreau · 10 years ago
  40. 10fc09e MAJOR: session: only allocate buffers when needed by Willy Tarreau · 10 years ago
  41. bf883e0 MAJOR: session: implement a wait-queue for sessions who need a buffer by Willy Tarreau · 10 years ago
  42. 656859d MEDIUM: session: implement a basic atomic buffer allocator by Willy Tarreau · 10 years ago
  43. 909e267 MINOR: session: group buffer allocations together by Willy Tarreau · 10 years ago
  44. f2f7d6b MEDIUM: buffer: add a new buf_wanted dummy buffer to report failed allocations by Willy Tarreau · 10 years ago
  45. 2a4b543 MEDIUM: buffer: always assign a dummy empty buffer to channels by Willy Tarreau · 10 years ago
  46. 7dfca9d MINOR: buffer: only use b_free to release buffers by Willy Tarreau · 10 years ago
  47. 696a291 MINOR: buffer: move buffer initialization after channel initialization by Willy Tarreau · 10 years ago
  48. e583ea5 MEDIUM: buffer: use b_alloc() to allocate and initialize a buffer by Willy Tarreau · 10 years ago
  49. 474cf54 MINOR: buffer: reset a buffer in b_reset() and not channel_init() by Willy Tarreau · 10 years ago
  50. a885f6d MEDIUM: memory: improve pool_refill_alloc() to pass a refill count by Willy Tarreau · 10 years ago
  51. 0262241 MINOR: memory: cut pool allocator in 3 layers by Willy Tarreau · 10 years ago
  52. 4f31fc2 BUG/MEDIUM: compression: correctly report zlib_mem by Willy Tarreau · 10 years ago
  53. 529c139 BUG/MAJOR: namespaces: conn->target is not necessarily a server by Willy Tarreau · 10 years ago
  54. 57767b8 BUG/MEDIUM: memory: fix freeing logic in pool_gc2() by Willy Tarreau · 10 years ago
  55. a69fc9f BUG/MAJOR: stream-int: properly check the memory allocation return by Willy Tarreau · 10 years ago
  56. fe1ebcd BUG/MAJOR: ns: HAProxy segfault if the cli_conn is not from a network connection by Thierry FOURNIER · 10 years ago
  57. 07e78c5 MINOR: map/acl/dumpstats: remove the "Done." message by Thierry FOURNIER · 10 years ago
  58. f6b7001 BUG/MEDIUM: config: do not propagate processes between stopped processes by Willy Tarreau · 10 years ago
  59. 8a95d8c BUG/MINOR: config: fix typo in condition when propagating process binding by Willy Tarreau · 10 years ago
  60. d972203 BUG/MINOR: parse: refer curproxy instead of proxy by Godbach · 10 years ago
  61. 1f1fae6 BUG/MINOR: http: fix typo: "401 Unauthorized" => "407 Unauthorized" by Godbach · 10 years ago
  62. d39ae7d CLEANUP: epoll: epoll_events should be allocated according to global.tune.maxpollevents by Godbach · 10 years ago
  63. 1228dc0 BUG/MEDIUM: sample: fix random number upper-bound by Vincent Bernat · 10 years ago
  64. f2dd68d DOC: fix a few typos by Godbach · 10 years ago
  65. e4e30f7 BUILD: ssl: use OPENSSL_NO_OCSP to detect OCSP support by Lukas Tribus · 10 years ago
  66. f3d3482 BUG/MEDIUM: tcp-checks: disable quick-ack unless next rule is an expect by Willy Tarreau · 10 years ago
  67. d2a4959 BUG/MEDIUM: tcp-check: don't rely on random memory contents by Willy Tarreau · 10 years ago
  68. e7b9ed3 BUG/MINOR: tcp-check: don't condition data polling on check type by Willy Tarreau · 10 years ago
  69. 9ede66b MEDIUM: checks: provide environment variables to the external checks by Cyril Bonté · 10 years ago
  70. 777be86 MINOR: checks: allow external checks in backend sections by Cyril Bonté · 10 years ago
  71. 83f2592 BUG/MEDIUM: payload: ensure that a request channel is available by Willy Tarreau · 10 years ago
  72. 4deaf39 BUG/MEDIUM: patterns: previous fix was incomplete by Willy Tarreau · 10 years ago
  73. 3b24641 BUG/MAJOR: sessions: unlink session from list on out of memory by Willy Tarreau · 10 years ago
  74. c9a0f6d MINOR: samples: add the word converter. by Emeric Brun · 10 years ago
  75. f399b0d MINOR: samples: adds the field converter. by Emeric Brun · 10 years ago
  76. 54c4ac8 MINOR: samples: adds the bytes converter. by Emeric Brun · 10 years ago
  77. 0f30d26 MINOR: sample: add a few basic internal fetches (nbproc, proc, stopping) by Willy Tarreau · 10 years ago
  78. 4b9e802 BUG/MINOR: samples: fix unnecessary memcopy converting binary to string. by Emeric Brun · 10 years ago
  79. 42fb809 BUG/MINOR: peers: the buffer size is global.tune.bufsize, not trash.size by Willy Tarreau · 10 years ago
  80. 315ec42 BUG/MEDIUM: pattern: don't load more than once a pattern list. by Thierry FOURNIER · 10 years ago
  81. 5be2f35 MAJOR: polling: centralize calls to I/O callbacks by Willy Tarreau · 10 years ago
  82. 5506e3f BUG/MINOR: stats: correctly set the request/response analysers by Willy Tarreau · 10 years ago
  83. b3e54fe MAJOR: namespace: add Linux network namespace support by KOVACS Krisztian · 10 years ago
  84. efd3aa9 BUG/MEDIUM: connection: sanitize PPv2 header length before parsing address information by KOVACS Krisztian · 10 years ago
  85. 9654e57 BUG/MAJOR: frontend: initialize capture pointers earlier by Willy Tarreau · 10 years ago
  86. 743c128 BUG/MINOR: config: don't inherit the default balance algorithm in frontends by Willy Tarreau · 10 years ago
  87. de89871 MEDIUM: regex: Use pcre_study always when PCRE is used, regardless of JIT by Christian Ruppert · 10 years ago
  88. 9ce1311 BUG/MEDIUM: checks: fix conflicts between agent checks and ssl healthchecks by Cyril Bonté · 10 years ago
  89. 3a5e060 MINOR: session: release a few other pools when stopping by Willy Tarreau · 10 years ago
  90. 396a186 MEDIUM: ssl: add support for smaller SSL records by Willy Tarreau · 10 years ago
  91. fba03cd BUG/MEDIUM: ssl: force a full GC in case of memory shortage by Willy Tarreau · 10 years ago
  92. 5547615 BUG/MEDIUM: ssl: fix bad ssl context init can cause segfault in case of OOM. by Emeric Brun · 10 years ago
  93. a6547c1 BUG/MAJOR: buffer: check the space left is enough or not when input data in a buffer is wrapped by Godbach · 10 years ago
  94. 0bed994 BUG/MINOR: ssl: correctly initialize ssl ctx for invalid certificates by Emeric Brun · 10 years ago
  95. 2c86cbf MINOR: ssl: add statement to force some ssl options in global. by Emeric Brun · 10 years ago
  96. 5e0d0e0 BUG/MEDIUM: tcp: don't use SO_ORIGINAL_DST on non-AF_INET sockets by Willy Tarreau · 10 years ago
  97. 43e7958 MINOR: add fetchs 'ssl_c_der' and 'ssl_f_der' to return DER formatted certs by Emeric Brun · 10 years ago
  98. 955f461 BUG/MEDIUM: regex: fix pcre_study error handling by Christian Ruppert · 10 years ago
  99. a616ba6 BUILD/MINOR: ssl: de-constify "ciphers" to avoid a warning on openssl-0.9.8 by Willy Tarreau · 10 years ago
  100. 317e1c4 MINOR: sample: add "json" converter by Thierry FOURNIER · 10 years ago