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