1. 93604ed BUG/MEDIUM: listeners: always pause a listener on out-of-resource condition by Willy Tarreau · 4 years, 8 months ago
  2. 2bd65a7 OPTIM: listeners: use tasklets for the multi-queue rings by Willy Tarreau · 4 years, 9 months ago
  3. 859dc80 MEDIUM: list: Separate "locked" list from regular list. by Olivier Houchard · 5 years ago
  4. ad6c2ea BUG/MINOR: listener: Fix a possible null pointer dereference by Christopher Faulet · 4 years, 10 months ago
  5. 6ee9f8d BUG/MEDIUM: listener/threads: fix an AB/BA locking issue in delete_listener() by Willy Tarreau · 4 years, 10 months ago
  6. daacf36 BUG/MEDIUM: protocols: add a global lock for the init/deinit stuff by Willy Tarreau · 5 years ago
  7. f2cb169 BUG/MAJOR: listener: fix thread safety in resume_listener() by Willy Tarreau · 5 years ago
  8. 102854c BUG/MEDIUM: listener: Fix how unlimited number of consecutive accepts is handled by Christopher Faulet · 5 years ago
  9. 85d0424 BUG/MINOR: listener/mq: correctly scan all bound threads under low load by Willy Tarreau · 5 years ago
  10. 64a9c05 MINOR: cli/listener: report the number of accepts on "show activity" by Willy Tarreau · 5 years ago
  11. 0d85844 BUG/MINOR: listener: renice the accept ring processing task by Willy Tarreau · 5 years ago
  12. 5671662 BUILD/MINOR: listener: Silent a few signedness warnings. by David Carlier · 5 years ago
  13. 57cb506 BUILD: listener: shut up a build warning when threads are disabled by Willy Tarreau · 5 years ago
  14. 897e2c5 BUG/MEDIUM: listener: make sure we don't pick stopped threads by Willy Tarreau · 5 years ago
  15. 64213e9 MEDIUM: listeners: Use the new _HA_ATOMIC_* macros. by Olivier Houchard · 5 years ago
  16. a518856 BUG/MEDIUM: listeners: Don't call fd_stop_recv() if fd_updt is NULL. by Olivier Houchard · 5 years ago
  17. 0cf3317 MINOR: listener: move thr_idx from the bind_conf to the listener by Willy Tarreau · 5 years ago
  18. 9f1d4e7 CLEANUP: listener: remove old thread bit mapping by Willy Tarreau · 5 years ago
  19. 0fe703b MEDIUM: listener: change the LB algorithm again to use two round robins instead by Willy Tarreau · 5 years ago
  20. fc630bd MINOR: listener: improve incoming traffic distribution by Willy Tarreau · 5 years ago
  21. a8cf66b MINOR: listener: do not needlessly set l->maxconn by Willy Tarreau · 5 years ago
  22. e2711c7 MINOR: listener: introduce listener_backlog() to report the backlog value by Willy Tarreau · 5 years ago
  23. 82c9789 BUG/MEDIUM: listener: make sure the listener never accepts too many conns by Willy Tarreau · 5 years ago
  24. 01abd02 BUG/MEDIUM: listener: use a self-locked list for the dequeue lists by Willy Tarreau · 5 years ago
  25. 7ac908b MINOR: config: add global tune.listener.multi-queue setting by Willy Tarreau · 5 years ago
  26. 8a03408 MINOR: activity: add accept queue counters for pushed and overflows by Willy Tarreau · 5 years ago
  27. e0e9c48 MAJOR: listener: use the multi-queue for multi-thread listeners by Willy Tarreau · 5 years ago
  28. 1efafce MINOR: listener: implement multi-queue accept for threads by Willy Tarreau · 5 years ago
  29. b2b50a7 MINOR: listener: pre-compute some thread counts per bind_conf by Willy Tarreau · 5 years ago
  30. 9e85318 MINOR: listener: maintain a per-thread count of the number of connections on a listener by Willy Tarreau · 5 years ago
  31. 3f0d02b MAJOR: listener: do not hold the listener lock in listener_accept() by Willy Tarreau · 5 years ago
  32. a36b324 MEDIUM: listener: keep a single thread-mask and warn on "process" misuse by Willy Tarreau · 5 years ago
  33. 741b4d6 BUG/MINOR: listener: keep accept rate counters accurate under saturation by Willy Tarreau · 5 years ago
  34. d16a9df BUG/MAJOR: listener: Make sure the listener exist before using it. by Olivier Houchard · 5 years ago
  35. ff9c914 MINOR: config: make MAX_PROCS configurable at build time by Willy Tarreau · 5 years ago
  36. 6daac19 MINOR: config: simplify bind_proc processing using proc_mask() by Willy Tarreau · 5 years ago
  37. bbcf2b9 BUG/MINOR: threads: fix the process range of thread masks by Willy Tarreau · 5 years ago
  38. 888d567 BUG/MINOR: listener: always fill the source address for accepted socketpairs by Willy Tarreau · 5 years ago
  39. c9a82e4 MINOR: cfgparse: make the process/thread parser support a maximum value by Willy Tarreau · 5 years ago
  40. 76a551d MINOR: config: make sure to associate the proper mux to bind and servers by Willy Tarreau · 6 years ago
  41. d913800 BUG/MEDIUM: listeners: CLOEXEC flag is not correctly set by William Lallemand · 6 years ago
  42. 4b58c80 REORG: mworker: declare master variable in global.h by William Lallemand · 6 years ago
  43. 86abe44 MEDIUM: init: use self-initializing spinlocks and rwlocks by Willy Tarreau · 6 years ago
  44. 0108d90 MEDIUM: init: convert all trivial registration calls to initcalls by Willy Tarreau · 6 years ago
  45. 0b3e849 MEDIUM: listeners: set O_CLOEXEC on the accepted FDs by William Lallemand · 6 years ago
  46. 2fe7dd0 MEDIUM: protocol: sockpair protocol by William Lallemand · 6 years ago
  47. e22f11f MINOR: mworker: keep and clean the listeners by William Lallemand · 6 years ago
  48. a717b99 MINOR: mux/frontend: Add 'proto' keyword to force the mux protocol by Christopher Faulet · 6 years ago
  49. fe23428 BUG/MINOR: listener: Don't decrease actconn twice when a new session is rejected by Christopher Faulet · 6 years ago
  50. 510c0d6 BUG/MEDIUM: threads/unix: Fix a deadlock when a listener is temporarily disabled by Christopher Faulet · 6 years ago
  51. c5532ac MINOR: fd: don't report maxfd in alert messages by Willy Tarreau · 6 years ago
  52. 421f02e MINOR: threads: add a MAX_THREADS define instead of LONGBITS by Willy Tarreau · 6 years ago
  53. 767a84b CLEANUP: log: Rename Alert/Warning in ha_alert/ha_warning by Christopher Faulet · 7 years ago
  54. c644fa9 MINOR: config: Add threads support for "process" option on "bind" lines by Christopher Faulet · 7 years ago
  55. 26028f6 MINOR: config: Add auto-increment feature for cpu-map by Christopher Faulet · 7 years ago
  56. f1f0c5f MINOR: config: Export parse_process_number and use it wherever it's applicable by Christopher Faulet · 7 years ago
  57. 15eb3a9 BUG/MINOR: listener: Allow multiple "process" options on "bind" lines by Christopher Faulet · 7 years ago
  58. 75ea0a0 BUG/MEDIUM: mworker: does not close inherited FD by William Lallemand · 7 years ago
  59. 9dcf9b6 MINOR: threads: Use __decl_hathreads to declare locks by Christopher Faulet · 7 years ago
  60. 387bd4f CLEANUP: global: introduce variable pid_bit to avoid shifts with relative_pid by Willy Tarreau · 7 years ago
  61. 2a944ee BUILD: threads: Rename SPIN/RWLOCK macros using HA_ prefix by Christopher Faulet · 7 years ago
  62. bbd09b9 BUG/MAJOR: thread/listeners: enable_listener must not call unbind_listener() by Willy Tarreau · 7 years ago
  63. 8d8aa0d MEDIUM: threads/listeners: Make listeners thread-safe by Christopher Faulet · 7 years ago
  64. 0bf6fa5 MEDIUM: session: count the frontend's connections at a single place by Willy Tarreau · 7 years ago
  65. 05f5047 MINOR: listener: new function listener_release by Willy Tarreau · 7 years ago
  66. 6f5e4b9 MEDIUM: session: take care of incrementing/decrementing jobs by Willy Tarreau · 7 years ago
  67. 2cc5bae MINOR: listeners: make listeners count consistent with reality by Willy Tarreau · 7 years ago
  68. 0de59fd MINOR: listeners: new function create_listeners by Willy Tarreau · 7 years ago
  69. f5b8adc MINOR: listeners: Change enable_listener and disable_listener into private functions by Christopher Faulet · 7 years ago
  70. 5580ba2 MINOR: listeners: Change listener_full and limit_listener into private functions by Christopher Faulet · 7 years ago
  71. 095ba4c MEDIUM: mworker: replace systemd mode by master worker mode by William Lallemand · 7 years ago
  72. 1fc0516 MINOR: proxy: Don't close FDs if not our proxy. by Olivier Houchard · 7 years ago
  73. f73629d MINOR: global: Add an option to get the old listening sockets. by Olivier Houchard · 7 years ago
  74. 3569df3 BUG/MEDIUM: listener: do not try to rebind another process' socket by Willy Tarreau · 7 years ago
  75. c95bad5 MEDIUM: move listener->frontend to bind_conf->frontend by Willy Tarreau · 8 years ago
  76. 93b227d MINOR: listener: add the "accept-netscaler-cip" option to the "bind" keyword by Bertrand Jacquin · 8 years ago
  77. d6c06d0 BUG/MINOR: listener: stop unbound listeners on startup by Willy Tarreau · 8 years ago
  78. 7a798e5 CLEANUP: fix inconsistency between fd->iocb, proto->accept and accept() by Willy Tarreau · 8 years ago
  79. e7fe8eb BUG/MINOR: conf: "listener id" expects integer, but its not checked by Thierry Fournier · 8 years ago
  80. 136f9d3 MINOR: samples: rename union from "data" to "u" by Thierry FOURNIER · 9 years ago
  81. 8c542ca MEDIUM: samples: Use the "struct sample_data" in the "struct sample" by Thierry FOURNIER · 9 years ago
  82. 07ee64e MAJOR: sample: converts uint and sint in 64 bits signed integer by Thierry FOURNIER · 9 years ago
  83. 0786d05 MEDIUM: sample: change the prototype of sample-fetches functions by Thierry FOURNIER · 9 years ago
  84. 0a9a2b8 MEDIUM: sample change the prototype of sample-fetches and converters functions by Thierry FOURNIER · 9 years ago
  85. af2fd58 BUG/MEDIUM: listener: don't report an error when resuming unbound listeners by Willy Tarreau · 9 years ago
  86. 192252e MAJOR: sample: pass a pointer to the session to each sample fetch function by Willy Tarreau · 9 years ago
  87. 15e91e1 MAJOR: sample: don't pass l7 anymore to sample fetch functions by Willy Tarreau · 9 years ago
  88. fb0afa7 MEDIUM: stream: move the listener's pointer to the session by Willy Tarreau · 9 years ago
  89. 87b0966 REORG/MAJOR: session: rename the "session" entity to "stream" by Willy Tarreau · 9 years ago
  90. f41a809 MINOR: sample: add private argument to the struct sample_fetch by Thierry FOURNIER · 10 years ago
  91. 1c4b814 MEDIUM: listener: support rebinding during resume() by Willy Tarreau · 10 years ago
  92. 092d865 MEDIUM: listener: implement a per-protocol pause() function by Willy Tarreau · 10 years ago
  93. 39447b6 BUG/MINOR: listener: set the listener's fd to -1 after deletion by Willy Tarreau · 10 years ago
  94. ae30253 MAJOR: listener: only start listeners bound to the same processes by Willy Tarreau · 10 years ago
  95. 6ae1ba6 MEDIUM: listener: parse the new "process" bind keyword by Willy Tarreau · 10 years ago
  96. bb66030 MEDIUM: listener: make the accept function more robust against pauses by Willy Tarreau · 10 years ago
  97. 95ccdde BUILD: listener: add fcntl.h and unistd.h by Willy Tarreau · 10 years ago
  98. 818dca5 BUG/MEDIUM: listener: improve detection of non-working accept4() by Willy Tarreau · 10 years ago
  99. e43d532 MEDIUM: listener: apply a limit on the session rate submitted to SSL by Willy Tarreau · 11 years ago
  100. 93e7c00 MEDIUM: listener: add support for limiting the session rate in addition to the connection rate by Willy Tarreau · 11 years ago