1. afb7683 MEDIUM: connection: Implement and extented PROXY Protocol V2 by David S · Thu May 08 23:42:08 2014 -0400
  2. 7e31273 MINOR: config: make the stream interface idle timer user-configurable by Willy Tarreau · Wed Feb 12 16:35:14 2014 +0100
  3. c5890e6 MEDIUM: stream-int: automatically disable CF_STREAMER flags after idle by Willy Tarreau · Sun Feb 09 17:47:01 2014 +0100
  4. 7bed945 OPTIM: ssl: implement dynamic record size adjustment by Willy Tarreau · Sun Feb 02 02:00:24 2014 +0100
  5. 1049b1f MEDIUM: connection: don't use real send() flags in snd_buf() by Willy Tarreau · Sun Feb 02 01:51:17 2014 +0100
  6. 798c3c9 MINOR: stream-interface: no need to call fd_stop_both() on error by Willy Tarreau · Tue Jan 21 10:30:08 2014 +0100
  7. 708e717 MEDIUM: stream-interface: the polling flags must always be updated in chk_snd_conn by Willy Tarreau · Tue Jan 21 10:27:49 2014 +0100
  8. fd803bb MEDIUM: connection: add check for readiness in I/O handlers by Willy Tarreau · Mon Jan 20 15:13:07 2014 +0100
  9. e1f50c4 MEDIUM: connection: remove conn_{data,sock}_poll_{recv,send} by Willy Tarreau · Wed Jan 22 20:02:06 2014 +0100
  10. 310987a MAJOR: connection: remove the CO_FL_WAIT_{RD,WR} flags by Willy Tarreau · Wed Jan 22 19:46:33 2014 +0100
  11. e6300be BUG/MEDIUM: stream-interface: don't wake the task up before end of transfer by Willy Tarreau · Sat Jan 25 02:33:21 2014 +0100
  12. 46be2e5 MEDIUM: connection: update callers of ctrl->drain() to use conn_drain() by Willy Tarreau · Mon Jan 20 12:10:52 2014 +0100
  13. 7f4bcc3 MINOR: protocol: improve the proto->drain() API by Willy Tarreau · Mon Jan 20 11:26:12 2014 +0100
  14. d7ad9f5 MAJOR: channel: add a new flag CF_WAKE_WRITE to notify the task of writes by Willy Tarreau · Tue Dec 31 17:26:25 2013 +0100
  15. 61f7f0a BUG/MINOR: stream-int: do not clear the owner upon unregister by Willy Tarreau · Sat Dec 28 21:06:18 2013 +0100
  16. ea90063 BUG/MEDIUM: stream-int: fix the keep-alive idle connection handler by Willy Tarreau · Tue Dec 17 14:21:48 2013 +0100
  17. 2737562 MEDIUM: stream-int: implement a very simplistic idle connection manager by Willy Tarreau · Tue Dec 17 00:00:28 2013 +0100
  18. ad38ace MEDIUM: connection: centralize handling of nolinger in fd management by Willy Tarreau · Sun Dec 15 14:19:38 2013 +0100
  19. d02cdd2 MINOR: connection: add simple functions to report connection readiness by Willy Tarreau · Sun Dec 15 10:23:20 2013 +0100
  20. 0a23bcb MAJOR: stream-interface: dynamically allocate the applet context by Willy Tarreau · Sun Dec 01 11:31:38 2013 +0100
  21. 1fbe1c9 MEDIUM: stream-int: return the allocated appctx in stream_int_register_handler() by Willy Tarreau · Sun Dec 01 09:35:41 2013 +0100
  22. 57cd3e4 MEDIUM: connection: merge the send_proxy and local_send_proxy calls by Willy Tarreau · Thu Oct 24 22:01:26 2013 +0200
  23. b8020ce MEDIUM: connection: move the send_proxy offset to the connection by Willy Tarreau · Thu Oct 24 21:10:08 2013 +0200
  24. 32e3c6a MAJOR: stream interface: dynamically allocate the outgoing connection by Willy Tarreau · Fri Oct 11 19:34:20 2013 +0200
  25. 2a6e880 MEDIUM: stream-interface: introduce si_attach_conn to replace si_prepare_conn by Willy Tarreau · Thu Oct 24 15:50:53 2013 +0200
  26. f79c817 MAJOR: connection: add two new flags to indicate readiness of control/transport by Willy Tarreau · Mon Oct 21 16:30:56 2013 +0200
  27. b363a1f MAJOR: stream-int: stop using si->conn and use si->end instead by Willy Tarreau · Tue Oct 01 10:45:07 2013 +0200
  28. cf644ed MEDIUM: stream-int: make ->end point to the connection or the appctx by Willy Tarreau · Sun Sep 29 17:19:56 2013 +0200
  29. 4a59f2f MAJOR: stream interface: remove the ->release function pointer by Willy Tarreau · Thu Oct 24 20:10:45 2013 +0200
  30. 7d67d7b MINOR: stream-int: add a new pointer to the end point by Willy Tarreau · Sun Sep 29 16:05:22 2013 +0200
  31. 372d670 MINOR: stream-int: split si_prepare_embedded into si_prepare_none and si_prepare_applet by Willy Tarreau · Sun Sep 29 17:19:56 2013 +0200
  32. 6fe1541 MINOR: stream-int: make the shutr/shutw functions void by Willy Tarreau · Sun Sep 29 15:16:03 2013 +0200
  33. 8b3d7df MEDIUM: stream-int: split the shutr/shutw functions between applet and conn by Willy Tarreau · Sun Sep 29 14:51:58 2013 +0200
  34. 26f4a04 MEDIUM: connection: set the socket shutdown flags on socket errors by Willy Tarreau · Wed Dec 04 23:44:10 2013 +0100
  35. 7fe4569 BUG/MINOR: connection: check EINTR when sending a PROXY header by Willy Tarreau · Wed Dec 04 23:37:56 2013 +0100
  36. 4f48990 OPTIM: stream_interface: return directly if the connection flag CO_FL_ERROR has been set by Godbach · Wed Dec 04 17:24:06 2013 +0800
  37. e68e02d CLEANUP: stream_interface: cleanup loop information in si_conn_send_loop() by Godbach · Fri Oct 11 15:48:29 2013 +0800
  38. 95742a4 BUG/MEDIUM: fix broken send_proxy on FreeBSD by Willy Tarreau · Tue Sep 03 09:02:11 2013 +0200
  39. fa8e2bc OPTIM: splicing: use splice() for the last block when relevant by Willy Tarreau · Thu Jul 18 22:21:54 2013 +0200
  40. 5007d2a BUG/MINOR: stream_interface: don't call chk_snd() on polled events by Willy Tarreau · Thu Jul 18 22:09:48 2013 +0200
  41. 61d39a0 BUG/MEDIUM: splicing: fix abnormal CPU usage with splicing by Willy Tarreau · Thu Jul 18 21:49:32 2013 +0200
  42. 9568d71 BUG/MEDIUM: stream_interface: don't close outgoing connections on shutw() by Willy Tarreau · Sun Dec 30 01:39:37 2012 +0100
  43. 34ac566 BUG/MEDIUM: stream_interface: fix another case where the reader might not be woken up by Willy Tarreau · Wed Dec 19 18:01:02 2012 +0100
  44. 6657276 BUG/MAJOR: stream_interface: fix occasional data transfer freezes by Willy Tarreau · Wed Dec 19 17:34:17 2012 +0100
  45. 7d28149 BUG/MEDIUM: connection: always update connection flags prior to computing polling by Willy Tarreau · Sun Dec 16 19:19:13 2012 +0100
  46. b016587 BUG/MINOR: stream_interface: don't return when the fd is already set by Willy Tarreau · Sat Dec 15 10:12:39 2012 +0100
  47. ca00fbc BUG/MEDIUM: stream-interface: fix possible stalls during transfers by Willy Tarreau · Sat Dec 15 09:18:05 2012 +0100
  48. d486ef5 BUG/MINOR: connection: remove a few synchronous calls to polling updates by Willy Tarreau · Mon Dec 10 17:03:52 2012 +0100
  49. d29a066 BUG/MAJOR: connection: always recompute polling status upon I/O by Willy Tarreau · Mon Dec 10 16:33:38 2012 +0100
  50. d1b3f04 MINOR: connection: don't remove failed handshake flags by Willy Tarreau · Fri Nov 30 15:15:28 2012 +0100
  51. 2b199c9 MEDIUM: connection: provide a common conn_full_close() function by Willy Tarreau · Fri Nov 23 17:32:21 2012 +0100
  52. f9fbfe8 BUG/MAJOR: stream_interface: read0 not always handled since dev12 by Willy Tarreau · Wed Nov 21 21:51:53 2012 +0100
  53. 9f7c6a1 BUG/MAJOR: stream_interface: certain workloads could cause get stuck by Willy Tarreau · Mon Nov 19 16:43:14 2012 +0100
  54. 3fdb366 MAJOR: connection: replace struct target with a pointer to an enum by Willy Tarreau · Mon Nov 12 00:42:33 2012 +0100
  55. 128b03c CLEANUP: stream_interface: remove the external task type target by Willy Tarreau · Sun Nov 11 23:14:16 2012 +0100
  56. b31c971 CLEANUP: channel: remove any reference of the hijackers by Willy Tarreau · Sun Nov 11 23:05:39 2012 +0100
  57. 7f7ad91 BUILD: stream_interface: remove si_fd() and its references by Willy Tarreau · Sun Nov 11 19:27:15 2012 +0100
  58. 5fddab0 OPTIM: stream_interface: disable reading when CF_READ_DONTWAIT is set by Willy Tarreau · Fri Nov 09 18:27:26 2012 +0100
  59. ed7f836 BUG/MINOR: stream_interface: don't loop over ->snd_buf() by Willy Tarreau · Mon Oct 29 23:27:14 2012 +0100
  60. 19d14ef MEDIUM: make the trash be a chunk instead of a char * by Willy Tarreau · Mon Oct 29 16:51:55 2012 +0100
  61. f2943dc MAJOR: session: detach the connections from the stream interfaces by Willy Tarreau · Fri Oct 26 20:10:28 2012 +0200
  62. c919dc6 CLEANUP: remove trashlen by Willy Tarreau · Fri Oct 26 17:35:22 2012 +0200
  63. 9b28e03 MAJOR: channel: replace the struct buffer with a pointer to a buffer by Willy Tarreau · Fri Oct 12 23:49:43 2012 +0200
  64. cb76e59 CLEANUP: stream_interface: use 'chn' instead of 'b' to name channel pointers by Willy Tarreau · Fri Oct 12 23:56:57 2012 +0200
  65. e1e4a61 REORG: connection: move the PROXY protocol management to connection.c by Willy Tarreau · Fri Oct 05 00:10:55 2012 +0200
  66. 665e6ee MEDIUM: connection: it's not the data layer's role to validate the connection by Willy Tarreau · Thu Oct 04 20:20:46 2012 +0200
  67. 2396c1c MEDIUM: connection: make it possible for data->wake to return an error by Willy Tarreau · Wed Oct 03 21:12:16 2012 +0200
  68. 4aa3683 MINOR: connection: provide a generic data layer wakeup callback by Willy Tarreau · Tue Oct 02 20:07:22 2012 +0200
  69. 74beec3 REORG: connection: rename app_cb "data" by Willy Tarreau · Wed Oct 03 00:41:04 2012 +0200
  70. f7bc57c REORG: connection: rename the data layer the "transport layer" by Willy Tarreau · Wed Oct 03 00:19:48 2012 +0200
  71. e603e69 MEDIUM: connection: make use of the owner instead of container_of by Willy Tarreau · Thu Sep 27 22:20:41 2012 +0200
  72. 34ffd77 MAJOR: stream_interface: continue to update data polling flags during handshakes by Willy Tarreau · Mon Sep 03 16:51:27 2012 +0200
  73. 56a77e5 MEDIUM: connection: complete the polling cleanups by Willy Tarreau · Sun Sep 02 18:34:44 2012 +0200
  74. 93b0f4f MEDIUM: stream_interface: remove CAP_SPLTCP/CAP_SPLICE flags by Willy Tarreau · Thu Aug 30 21:23:53 2012 +0200
  75. 986a9d2 MAJOR: connection: move the addr field from the stream_interface by Willy Tarreau · Thu Aug 30 21:11:38 2012 +0200
  76. 3cefd52 REORG: connection: move the target pointer from si to connection by Willy Tarreau · Thu Aug 30 15:49:18 2012 +0200
  77. 8263d2b CLEANUP: channel: use "channel" instead of "buffer" in function names by Willy Tarreau · Tue Aug 28 00:06:31 2012 +0200
  78. 03cdb7c CLEANUP: channel: usr CF_/CHN_ prefixes instead of BF_/BUF_ by Willy Tarreau · Mon Aug 27 23:14:58 2012 +0200
  79. f941cf2 MAJOR: channel: remove the BF_FULL flag by Willy Tarreau · Mon Aug 27 20:53:34 2012 +0200
  80. 3bf1b2b MAJOR: channel: stop relying on BF_FULL to take action by Willy Tarreau · Mon Aug 27 20:46:07 2012 +0200
  81. ad1cc3d MINOR: channel: rename bi_full to channel_full as it checks the whole channel by Willy Tarreau · Mon Aug 27 18:54:20 2012 +0200
  82. a75bcef REORG: buffer: move buffer_flush, b_adv and b_rew to buffer.h by Willy Tarreau · Fri Aug 24 22:56:11 2012 +0200
  83. 8e21bb9 MAJOR: channel: remove the BF_OUT_EMPTY flag by Willy Tarreau · Fri Aug 24 22:40:29 2012 +0200
  84. c7e4238 REORG: buffers: split buffers into chunk,buffer,channel by Willy Tarreau · Fri Aug 24 19:22:53 2012 +0200
  85. c578891 CLEANUP: connection: split sock_ops into data_ops, app_cp and si_ops by Willy Tarreau · Fri Aug 24 18:12:41 2012 +0200
  86. 62266db MEDIUM: stream-interface: don't remove WAIT_DATA when a handshake is in progress by Willy Tarreau · Fri Aug 24 13:02:24 2012 +0200
  87. 2c05208 MAJOR: stream-interface: fix splice not to call chk_snd by itself by Willy Tarreau · Fri Aug 24 12:53:56 2012 +0200
  88. f16723e MAJOR: stream-interface: don't commit polling changes in every callback by Willy Tarreau · Fri Aug 24 12:52:22 2012 +0200
  89. a1a7474 MEDIUM: proxy-proto: don't use buffer flags in conn_si_send_proxy() by Willy Tarreau · Fri Aug 24 12:14:49 2012 +0200
  90. 44b5dc6 MAJOR: stream-interface: make conn_notify_si() more robust by Willy Tarreau · Fri Aug 24 12:12:53 2012 +0200
  91. 96199b1 MAJOR: stream-interface: restore splicing mechanism by Willy Tarreau · Fri Aug 24 00:46:52 2012 +0200
  92. 5368d80 MAJOR: connection: split the send call into connection and stream interface by Willy Tarreau · Tue Aug 21 18:22:06 2012 +0200
  93. ce323de REORG: stream-interface: move sock_raw_read() to si_conn_recv_cb() by Willy Tarreau · Mon Aug 20 21:41:06 2012 +0200
  94. 75bf2c9 REORG: sock_raw: rename the files raw_sock* by Willy Tarreau · Mon Aug 20 17:01:35 2012 +0200
  95. 572bf90 REORG/MAJOR: extract "struct buffer" from "struct channel" by Willy Tarreau · Mon Jul 02 17:01:20 2012 +0200
  96. 7421efb REORG/MAJOR: use "struct channel" instead of "struct buffer" by Willy Tarreau · Mon Jul 02 15:11:27 2012 +0200
  97. 9bf9c14 MEDIUM: stream-interface: provide a generic stream_sock_read0() function by Willy Tarreau · Mon Aug 20 15:38:41 2012 +0200
  98. eecf6ca MEDIUM: stream-interface: provide a generic si_conn_send_cb callback by Willy Tarreau · Mon Aug 20 15:09:53 2012 +0200
  99. de5722c MEDIUM: stream-interface: provide a generic stream_int_chk_snd_conn() function by Willy Tarreau · Mon Aug 20 15:01:10 2012 +0200
  100. 46a8d92 MEDIUM: stream-interface: offer a generic chk_rcv function for connections by Willy Tarreau · Mon Aug 20 12:38:36 2012 +0200