1. 481132e [DOC] documented the 'stats' parameter. by willy tarreau · 18 years ago
  2. 606788e [MAJOR] missing parenthesis in poll_loop() might have caused missed events. by willy tarreau · 18 years ago
  3. 7476ec9 [MAJOR] missing parenthesis prevented matching of cacheable cookies ! by willy tarreau · 18 years ago
  4. e3b3065 [MEDIUM] added counters for connect/response/security errors by willy tarreau · 18 years ago
  5. 38d7906 [MINOR] allow a proxy instance to run without any server (useful for stats) by willy tarreau · 18 years ago
  6. 1f431b5 [MEDIUM] the stats dump FSM was buggy and looped on dispatch instances. by willy tarreau · 18 years ago
  7. fac1a86 [MEDIUM] hopefully definitely fixed hot-reconf for OpenBSD by willy tarreau · 18 years ago
  8. 338be83 [MINOR] cosmetic changes in the stats interface by willy tarreau · 18 years ago
  9. 2d505e5 [CRITICAL] potential NULL dereference when counting stats in dispatch mode by willy tarreau · 18 years ago
  10. 47ee7ad [MINOR] also set request time on denied requests by willy tarreau · 18 years ago
  11. 950609c [MINOR] set request time even for stats requests by willy tarreau · 18 years ago
  12. d0a05bd [BUILD] updated Makefile.bsd for the new files by willy tarreau · 18 years ago
  13. cb40651 [MEDIUM] completed HTML status output, fixed some rendering bugs. by willy tarreau · 18 years ago
  14. e033126 [MEDIUM] first working code for an HTML status report. by willy tarreau · 18 years ago
  15. 51e9129 [DOC] missing comment caused misinterpretation by willy tarreau · 18 years ago
  16. 3504a01 [DEBUG] state names were shifted due to missing PEND state. by willy tarreau · 18 years ago
  17. 9e13886 [MEDIUM] added the new 'stats' keyword with user authentication subsystem. by willy tarreau · 18 years ago
  18. 4404b7e [RELEASE] released version 1.2.13.1 by Willy TARREAU · 18 years ago
  19. 007aa46 [MEDIUM] perform a soft stop when pause fails to be nice with non-Linux systems. by Willy TARREAU · 18 years ago
  20. 1a71cc1 [CRITICAL] fixed an uninitialized 'pend_pos' field in struct session. by Willy TARREAU · 18 years ago
  21. c3a2e07 [RELEASE] released version 1.2.13 by willy tarreau · 18 years ago
  22. 532bb55 [DOC] update documentation to explain the server's maxconn by willy tarreau · 18 years ago
  23. 5f15c55 [MINOR] the queue time was missing from TCP logs. by willy tarreau · 18 years ago
  24. 424e04a [MINOR] do not report queue time if not queued ! by willy tarreau · 18 years ago
  25. 814cbc6 [DOC] added (and updated) the ROADMAP file by willy tarreau · 18 years ago
  26. 078c79a [MINOR] make logs more accurate about expiration and close during queue. by willy tarreau · 18 years ago
  27. 5e69b16 [MINOR] separately display the server and proxy queue sizes in the logs by willy tarreau · 18 years ago
  28. 9fea194 [CLEANUP] remove the unused SV_STCPEND state by willy tarreau · 18 years ago
  29. 59a6cc2 [CRITICAL] fix a crashing trouble with the maxconn limits. by willy tarreau · 18 years ago
  30. 000375f [CLEANUP] added some comments at some complex places by willy tarreau · 18 years ago
  31. 422bb2e [MEDIUM] in the request, always consider empty cookies as invalid. by willy tarreau · 18 years ago
  32. 4f7a101 [MINOR] set the expiration date when removing a cookie by willy tarreau · 18 years ago
  33. f2b8d30 [MINOR] swapped the queued and active sessions in the logs by willy tarreau · 18 years ago
  34. dab722b [MINOR] uninlining 6 very common functions saved 15% code size and improved perf by willy tarreau · 18 years ago
  35. bc2eda6 [MEDIUM] when a server goes up, it now steals part of the proxy's queue. by willy tarreau · 18 years ago
  36. 2812edc [MEDIUM] redispatch queued sessions if possible when a server goes down. by willy tarreau · 18 years ago
  37. 45526ed [MEDIUM] apply the contimeout to the queue by default. by willy tarreau · 18 years ago
  38. 8cef8a9 [doc] updated the TODO by willy tarreau · 18 years ago
  39. 4632c21 [MINOR] updated the sig_dump_state() output to show the conn queue state. by willy tarreau · 18 years ago
  40. f32f524 [MEDIUM] logs now show the time spent in the queue and the number of sessions by willy tarreau · 18 years ago
  41. 5e698ef [MEDIUM] slightly optimize the scheduler for non-expirable tasks. by willy tarreau · 18 years ago
  42. dfece23 [MAJOR] first limited implementation of connection queueing. by willy tarreau · 18 years ago
  43. fd5c879 [MINOR] print the proxy name on first line during dumps to avoid confusion. by willy tarreau · 18 years ago
  44. 926a357 [MAJOR] fixed missing checks for NULL srv pointers (possible in dispatch mode) by willy tarreau · 18 years ago
  45. cd65535 [MEDIUM] it was not possible to balance between backup servers in source hash mode. by willy tarreau · 18 years ago
  46. a5e8c66 [MINOR] stupid bug which caused two different session flags to use the same bit. by willy tarreau · 18 years ago
  47. 0889c96 [CLEANUP] cleaned some comments. by willy tarreau · 18 years ago
  48. 7feab59 [MINOR] always process the run queue from the head. by willy tarreau · 18 years ago
  49. 898db9d [MEDIUM] now the round-robin load balancer uses two passes to avoid saturated servers. The first avoids servers which have filled with maxconn connections, and a second pass can enforce the selection of one of them if the first pass found no candidate. by willy tarreau · 18 years ago
  50. 18a957c [MEDIUM] added the necessary infrastructure to support per-server session limits : - the "maxconn" config option - the new SV_STCPEND state (connection pending) - a per-server pending connections queue by willy tarreau · 18 years ago
  51. 80862a3 [MINOR] imported mini-clist.h (circular lists) from librt. It might be wise to merge this with list.h and use sort of common structures. by willy tarreau · 18 years ago
  52. 14b4d43 [MEDIUM] added the total number of sessions per server and per proxy and we now report it in the dumps. by willy tarreau · 18 years ago
  53. cfbb218 [MINOR] added some comments to the places where we can send a pending connection to a server in case of throttling. by willy tarreau · 18 years ago
  54. a647c70 [MINOR] maintain the number of sessions per server and add this info to the logs by willy tarreau · 18 years ago
  55. a419731 Merge branch 'haproxy-1.2.12' by willy tarreau · 18 years ago
  56. c0d4bbd [VERSION] updated everything to reflect version 1.2.12. by willy tarreau · 18 years ago
  57. 9974d73 [BUILD] added haproxy-small.spec for smaller and embedded systems. by willy tarreau · 18 years ago
  58. 34f4530 [doc] updated english and french docs with source and weight options. by willy tarreau · 18 years ago
  59. b3a64a7 Revert "maintain the number of sessions per server and add this info to the logs" by willy tarreau · 18 years ago
  60. 8439e8c Revert "added some comments to the places where we can send a pending connection" by willy tarreau · 18 years ago
  61. 87ff241 Revert "added the total number of sessions per server and per proxy" by willy tarreau · 18 years ago
  62. 393cfb7 Revert "added the 'weight' parameter to the servers, limited to 1..256." by willy tarreau · 18 years ago
  63. 6433c2b Revert "implemented the weighted load balancing based on a server map." by willy tarreau · 18 years ago
  64. 88d656f Revert "updated TODO" by willy tarreau · 18 years ago
  65. 3c4acb4 Revert "ignore leading empty lines in HTTP requests (RFC2616)" by willy tarreau · 18 years ago
  66. 2c51373 [MINOR] optionnal '-s' command line argument could clobber '-st' and '-sf' by willy tarreau · 18 years ago
  67. 91b7621 * updated TODO by willy tarreau · 18 years ago
  68. cc1e2bd * implemented the weighted load balancing based on a server map. by willy tarreau · 18 years ago
  69. e3f023f * added the 'weight' parameter to the servers, limited to 1..256. by willy tarreau · 18 years ago
  70. 43b1512 * ignore leading empty lines in HTTP requests (RFC2616) by willy tarreau · 18 years ago
  71. d13a3c8 * ignore leading empty lines in HTTP requests (RFC2616) by willy tarreau · 18 years ago
  72. 1d17662 * updated TODO by willy tarreau · 18 years ago
  73. e0fa496 * implemented the weighted load balancing based on a server map. by willy tarreau · 18 years ago
  74. 3b002c7 * added the 'weight' parameter to the servers, limited to 1..256. by willy tarreau · 18 years ago
  75. b1c331f * added the total number of sessions per server and per proxy by willy tarreau · 18 years ago
  76. 704f32b * added some comments to the places where we can send a pending connection by willy tarreau · 18 years ago
  77. c136461 maintain the number of sessions per server and add this info to the logs by willy tarreau · 18 years ago
  78. a60214e * once again, forgot to update haproxy.spec by willy tarreau · 18 years ago
  79. e0dd269 * Released version 1.2.11.1 by willy tarreau · 18 years ago
  80. 06a1205 * it might have been possible that a flapping server would not have been by willy tarreau · 18 years ago
  81. d2058dc * updated CHANGELOG and haproxy.c to display version 1.2.11 by willy tarreau · 18 years ago
  82. bf8ff3d * added the '-db' command-line option to disable backgrounding. by willy tarreau · 18 years ago
  83. 53e9970 * added the -sf/-st command-line arguments which are used to specify by willy tarreau · 18 years ago
  84. 41310e7 * reworked the startup mechanism to allow the sending of a signal to a list by willy tarreau · 18 years ago
  85. 746e26b * added the ability to enforce limits on memory usage. by willy tarreau · 18 years ago
  86. 1a3442d * added the 'source' load-balancing algorithm which uses the source IP(v4|v6) by willy tarreau · 18 years ago
  87. b8d29e4 * some regression test files for active/backup conditions. by willy tarreau · 18 years ago
  88. 4c8c2b5 * re-architectured the server round-robin mechanism to ease integration of by willy tarreau · 18 years ago
  89. 62084d4 * added a counter for the number of active and backup servers, and report by willy tarreau · 18 years ago
  90. bfad574 Released 1.2.10.1 by willy tarreau · 18 years ago
  91. 72e583d While fixing the backup server round-robin "feature", a new bug was introduced by willy tarreau · 18 years ago
  92. 1fb3493 * The displayed proxy name was wrong when dumping upon SIGHUP. by willy tarreau · 18 years ago
  93. aaff30e Updated CHANGELOG for v1.2.10 by willy tarreau · 18 years ago
  94. e114bf9 cleaned the 'tar' target and allowed the 'clean' target to remove the tar.gz file. by willy tarreau · 18 years ago
  95. cee272f Added the 'tar' target to build the tar.gz archive directly from git. by willy tarreau · 18 years ago
  96. d8b1fa5 Released version 1.2.10 by willy tarreau · 18 years ago
  97. d38e72d Separated OpenBSD build from the main Makefile into a new one. by willy tarreau · 18 years ago
  98. fd6e535 provided a patch to enable epoll on RHEL3 kernels. by willy tarreau · 18 years ago
  99. fd6dfe7 Fixed some messages to ease parsing of alerts. by willy tarreau · 18 years ago
  100. 25424f8 Make health-checks be more regular, and faster to retry after a timeout. by willy tarreau · 18 years ago