1. 91b4726 MINOR: protocol: replace ctrl_type with xprt_type and clarify it by Willy Tarreau · Fri May 20 16:36:46 2022 +0200
  2. 030b3e6 MINOR: connection: get rid of the CO_FL_ADDR_*_SET flags by Willy Tarreau · Mon May 02 17:47:46 2022 +0200
  3. 158b6cf CLEANUP: protocol: make sure the connect_* functions always receive a dst by Willy Tarreau · Mon May 02 17:45:12 2022 +0200
  4. 3824743 CLEANUP: tree-wide: use fd_set_nonblock() and fd_set_cloexec() by Willy Tarreau · Tue Apr 26 10:24:14 2022 +0200
  5. acef5e2 MINOR: tree-wide: always consider EWOULDBLOCK in addition to EAGAIN by Willy Tarreau · Mon Apr 25 20:32:15 2022 +0200
  6. 337edfd MINOR: protocols: add a new protocol type selector by Willy Tarreau · Wed Oct 27 17:05:36 2021 +0200
  7. 01cac3f MEDIUM: listeners: split the thread mask between receiver and bind_conf by Willy Tarreau · Tue Oct 12 08:47:54 2021 +0200
  8. 6823a3a MINOR: protocol: uniformize protocol errors by Willy Tarreau · Thu Oct 14 11:59:15 2021 +0200
  9. 9310f48 CLEANUP: tree-wide: remove unneeded include time.h in ~20 files by Willy Tarreau · Wed Oct 06 16:18:40 2021 +0200
  10. 0ce77ac BUILD: sockpair: do not set unused flag by Willy Tarreau · Fri Sep 17 11:56:25 2021 +0200
  11. b41a6e9 MINOR: fd: move .linger_risk into fdtab[].state by Willy Tarreau · Tue Apr 06 17:49:19 2021 +0200
  12. f509065 MEDIUM: fd: merge fdtab[].ev and state for FD_EV_* and FD_POLL_* into state by Willy Tarreau · Tue Apr 06 17:23:40 2021 +0200
  13. 1b3c931 MEDIUM: connections: Introduce a new XPRT method, start(). by Olivier Houchard · Fri Mar 05 23:37:48 2021 +0100
  14. 5b59741 CLEANUP: sockpair: silence a coverity check about fcntl() by Willy Tarreau · Fri Mar 05 14:31:52 2021 +0100
  15. 472125b MINOR: protocol: add a pair of check_events/ignore_events functions at the ctrl layer by Willy Tarreau · Fri Dec 11 17:02:50 2020 +0100
  16. 427c846 MINOR: protocol: add a ->drain() function at the connection control layer by Willy Tarreau · Fri Dec 11 16:19:12 2020 +0100
  17. de471c4 MINOR: protocol: add a set of ctrl_init/ctrl_close methods for setup/teardown by Willy Tarreau · Tue Dec 08 15:50:56 2020 +0100
  18. b366c9a CLEANUP: protocol: group protocol struct members by usage by Willy Tarreau · Tue Dec 08 14:54:20 2020 +0100
  19. b9b2fd7 MINOR: protocol: export protocol definitions by Willy Tarreau · Tue Dec 08 14:13:11 2020 +0100
  20. f9ad06c MINOR: protocol: remove the redundant ->sock_domain field by Willy Tarreau · Tue Dec 08 12:13:54 2020 +0100
  21. d1f250f MINOR: listener: now use a generic add_listener() function by Willy Tarreau · Fri Dec 04 15:03:36 2020 +0100
  22. a4380b2 MEDIUM: listeners: make use of fd_want_recv_safe() to enable early receivers by Willy Tarreau · Wed Nov 04 13:59:04 2020 +0100
  23. 233ad28 CLEANUP: protocol: remove the now unused <handler> field of proto_fam->bind() by Willy Tarreau · Thu Oct 15 21:45:15 2020 +0200
  24. a74cb38 MINOR: protocol: register the receiver's I/O handler and not the protocol's by Willy Tarreau · Thu Oct 15 21:29:49 2020 +0200
  25. 344b8fc MINOR: sockpair: implement sockpair_accept_conn() to accept a connection by Willy Tarreau · Thu Oct 15 09:43:31 2020 +0200
  26. 7d053e4 MINOR: sock: rename sock_accept_conn() to sock_accepting_conn() by Willy Tarreau · Thu Oct 15 09:19:43 2020 +0200
  27. cc8b653 MINOR: sockpair: implement the .rx_listening function by Willy Tarreau · Tue Oct 13 17:27:34 2020 +0200
  28. 7b2febd MINOR: listeners: split do_unbind_listener() in two by Willy Tarreau · Fri Oct 09 17:18:29 2020 +0200
  29. f58b8db MEDIUM: receivers: add an rx_unbind() method in the protocols by Willy Tarreau · Fri Oct 09 16:32:08 2020 +0200
  30. 5ddf1ce MINOR: protocol: add a new pair of enable/disable methods for listeners by Willy Tarreau · Fri Sep 25 19:27:39 2020 +0200
  31. 686fa3d MINOR: protocol: add a new pair of rx_enable/rx_disable methods by Willy Tarreau · Fri Sep 25 19:09:53 2020 +0200
  32. cb66ea6 MINOR: protocol: replace ->pause(listener) with ->rx_suspend(receiver) by Willy Tarreau · Fri Sep 25 17:12:32 2020 +0200
  33. d7f331c MINOR: protocol: rename the ->listeners field to ->receivers by Willy Tarreau · Fri Sep 25 17:01:43 2020 +0200
  34. 078e1c7 CLEANUP: protocol: remove the ->enable_all method by Willy Tarreau · Fri Sep 25 16:45:12 2020 +0200
  35. fb4ead8 CLEANUP: protocol: remove the ->disable_all method by Willy Tarreau · Fri Sep 25 16:30:22 2020 +0200
  36. a37b244 MINOR: listeners: introduce listener_set_state() by Willy Tarreau · Thu Sep 24 07:23:45 2020 +0200
  37. a54553f MINOR: protocol: add the control layer type in the protocol struct by Willy Tarreau · Wed Sep 16 17:50:45 2020 +0200
  38. 1e984b7 CLEANUP: protocol: remove family-specific fields from struct protocol by Willy Tarreau · Fri Sep 04 08:23:14 2020 +0200
  39. b0254cb MINOR: protocol: add a new proto_fam structure for protocol families by Willy Tarreau · Fri Sep 04 08:07:11 2020 +0200
  40. ad33acf MEDIUM: protocol: do not call proto->bind() anymore from bind_listener() by Willy Tarreau · Wed Sep 02 18:40:02 2020 +0200
  41. 9eda7a6 MEDIUM: proto_sockpair: make use of sockpair_bind_receiver() by Willy Tarreau · Wed Sep 02 18:02:00 2020 +0200
  42. 62292b2 MEDIUM: sockpair: implement sockpair_bind_receiver() by Willy Tarreau · Wed Sep 02 17:52:23 2020 +0200
  43. b3580b1 MINOR: protocol: rename the ->bind field to ->listen by Willy Tarreau · Tue Sep 01 10:26:22 2020 +0200
  44. 0b91501 MINOR: receiver: add a receiver-specific flag to indicate the socket is bound by Willy Tarreau · Tue Sep 01 10:47:07 2020 +0200
  45. 818a92e MINOR: listener: prefer to retrieve the socket's settings via the receiver by Willy Tarreau · Thu Sep 03 07:50:19 2020 +0200
  46. b743661 REORG: listener: move the listener's proto to the receiver by Willy Tarreau · Fri Aug 28 19:51:44 2020 +0200
  47. 38ba647 REORG: listener: move the receiving FD to struct receiver by Willy Tarreau · Thu Aug 27 08:16:52 2020 +0200
  48. e26993c MINOR: listener: move bind_proc and bind_thread to struct settings by Willy Tarreau · Thu Sep 03 07:18:55 2020 +0200
  49. 576a633 CLEANUP: protocol: remove all ->bind_all() and ->unbind_all() functions by Willy Tarreau · Tue Sep 01 18:54:13 2020 +0200
  50. b255105 CLEANUP: include: tree-wide alphabetical sort of include files by Willy Tarreau · Tue Jun 09 09:07:15 2020 +0200
  51. 36979d9 REORG: include: move the error reporting functions to from log.h to errors.h by Willy Tarreau · Fri Jun 05 17:27:29 2020 +0200
  52. aeed4a8 REORG: include: move log.h to haproxy/log{,-t}.h by Willy Tarreau · Thu Jun 04 22:01:04 2020 +0200
  53. 7ea393d REORG: include: move connection.h to haproxy/connection{,-t}.h by Willy Tarreau · Thu Jun 04 18:02:10 2020 +0200
  54. cea0e1b REORG: include: move task.h to haproxy/task{,-t}.h by Willy Tarreau · Thu Jun 04 17:25:40 2020 +0200
  55. f268ee8 REORG: include: split global.h into haproxy/global{,-t}.h by Willy Tarreau · Thu Jun 04 17:05:57 2020 +0200
  56. 213e990 REORG: include: move listener.h to haproxy/listener{,-t}.h by Willy Tarreau · Thu Jun 04 14:58:24 2020 +0200
  57. 0f6ffd6 REORG: include: move fd.h to haproxy/fd{,-t}.h by Willy Tarreau · Wed Jun 03 19:33:00 2020 +0200
  58. 48fbcae REORG: tools: split common/standard.h into haproxy/tools{,-t}.h by Willy Tarreau · Wed Jun 03 18:09:46 2020 +0200
  59. 2dd7c35 REORG: include: move protocol.h to haproxy/protocol{,-t}.h by Willy Tarreau · Wed Jun 03 15:26:55 2020 +0200
  60. 6634794 REORG: include: move freq_ctr to haproxy/ by Willy Tarreau · Mon Jun 01 12:18:08 2020 +0200
  61. 92b4f13 REORG: include: move time.h from common/ to haproxy/ by Willy Tarreau · Mon Jun 01 11:05:15 2020 +0200
  62. 853b297 REORG: include: split mini-clist into haproxy/list and list-t.h by Willy Tarreau · Wed May 27 18:01:47 2020 +0200
  63. 58017ee REORG: include: move the BUG_ON() code to haproxy/bug.h by Willy Tarreau · Wed May 27 16:51:33 2020 +0200
  64. 8d36697 REORG: include: move base64.h, errors.h and hash.h from common to to haproxy/ by Willy Tarreau · Wed May 27 16:10:29 2020 +0200
  65. d678805 REORG: include: move version.h to haproxy/ by Willy Tarreau · Wed May 27 15:59:00 2020 +0200
  66. 4c7e4b7 REORG: include: update all files to use haproxy/api.h or api-t.h if needed by Willy Tarreau · Wed May 27 12:58:42 2020 +0200
  67. 4c69cff MINOR: tcp/uxst/sockpair: only ask for I/O when really waiting for a connect() by Willy Tarreau · Wed Mar 04 16:38:00 2020 +0100
  68. 562e0d8 MINOR: tcp/uxst/sockpair: use fd_want_send() instead of conn_xprt_want_send() by Willy Tarreau · Fri Feb 21 10:24:51 2020 +0100
  69. 0948a78 BUG/MINOR: listener: enforce all_threads_mask on bind_thread on init by Willy Tarreau · Wed Feb 12 10:15:34 2020 +0100
  70. daacf36 BUG/MEDIUM: protocols: add a global lock for the init/deinit stuff by Willy Tarreau · Wed Jul 24 16:45:02 2019 +0200
  71. 3f4fa09 MINOR: sockpair: use conn->dst for the target address in ->connect() by Willy Tarreau · Wed Jul 17 16:42:04 2019 +0200
  72. 03abf2d MEDIUM: connections: Remove CONN_FL_SOCK* by Olivier Houchard · Tue May 28 10:12:02 2019 +0200
  73. fdcb007 MEDIUM: proto: Change the prototype of the connect() method. by Olivier Houchard · Mon May 06 18:32:29 2019 +0200
  74. a36b324 MEDIUM: listener: keep a single thread-mask and warn on "process" misuse by Willy Tarreau · Sat Feb 02 13:14:34 2019 +0100
  75. 3d95717 MINOR: threads: make use of thread_mask() to simplify some thread calculations by Willy Tarreau · Sat Feb 02 18:00:17 2019 +0100
  76. 8bb32ae CLEANUP: Fix typos in the socket pair protocol subsystem by Joseph Herlant · Sun Nov 25 11:43:27 2018 -0800
  77. c03eb01 BUG/MEDIUM: mworker: avoid leak of client socket by William Lallemand · Tue Nov 27 12:02:37 2018 +0100
  78. 0108d90 MEDIUM: init: convert all trivial registration calls to initcalls by Willy Tarreau · Sun Nov 25 19:14:37 2018 +0100
  79. 637b695 BUG/MEDIUM: connections: Don't reset the conn flags in *connect_server(). by Olivier Houchard · Fri Nov 23 14:23:07 2018 +0100
  80. 7d7ab43 BUILD: sockpair: silence a build warning at -Wextra by Willy Tarreau · Thu Sep 20 11:39:39 2018 +0200
  81. 2fe7dd0 MEDIUM: protocol: sockpair protocol by William Lallemand · Tue Sep 11 16:51:29 2018 +0200