1. 9dab5fc MEDIUM: buffers: rename a number of buffer management functions by Willy Tarreau · 12 years ago
  2. 328582c MEDIUM: buffers: implement b_adv() to advance a buffer's pointer by Willy Tarreau · 12 years ago
  3. cc5cfcb MEDIUM: buffers: add new pointer wrappers and get rid of almost all buffer_wrap_add calls by Willy Tarreau · 12 years ago
  4. a458b67 MAJOR: http: move buffer->lr to http_msg->next by Willy Tarreau · 12 years ago
  5. 363a5bb MAJOR: buffers: replace buf->r with buf->p + buf->i by Willy Tarreau · 12 years ago
  6. 89fa706 MAJOR: buffers: replace buf->w with buf->p - buf->o by Willy Tarreau · 12 years ago
  7. 02d6cfc MAJOR: buffer: replace buf->l with buf->{o+i} by Willy Tarreau · 12 years ago
  8. 2e046c6 MAJOR: buffer rework: replace ->send_max with ->o by Willy Tarreau · 12 years ago
  9. ad4cd58 BUG: stream_sock: si->release was not called upon shutw() by Willy Tarreau · 12 years ago
  10. f17810e BUG/MINOR: stream_sock: don't remove BF_EXPECT_MORE and BF_SEND_DONTWAIT on partial writes by Willy Tarreau · 12 years ago
  11. 82a0456 OPTIM: stream_sock: save a failed recv syscall when splice returns EAGAIN by Willy Tarreau · 13 years ago
  12. eb9fd51 OPTIM: stream_sock: reduce the amount of in-flight spliced data by Willy Tarreau · 13 years ago
  13. 6471afb MINOR: remove the client/server side distinction in SI addresses by Willy Tarreau · 13 years ago
  14. 3c63fd8 [MEDIUM] don't limit peers nor stats socket to maxconn nor maxconnrate by Willy Tarreau · 13 years ago
  15. 81c25d0 [MEDIUM] add support for global.maxconnrate to limit the per-process conn rate. by Willy Tarreau · 13 years ago
  16. 43d8fb2 [REORG] build: move syscall redefinition to specific places by Willy Tarreau · 13 years ago
  17. e9b2602 [MEDIUM] listeners: add a global listener management task by Willy Tarreau · 13 years ago
  18. 918ff60 [MAJOR] proxy: finally get rid of maintain_proxies() by Willy Tarreau · 13 years ago
  19. 07687c1 [MEDIUM] listeners: queue proxy-bound listeners at the proxy's by Willy Tarreau · 13 years ago
  20. 08ceb10 [MEDIUM] listeners: put listeners in queue upon resource shortage by Willy Tarreau · 13 years ago
  21. 6279371 [MINOR] listeners: add listen_full() to mark a listener full by Willy Tarreau · 13 years ago
  22. ff45b8c [BUG] stream_sock: ensure orphan listeners don't accept too many connections by Willy Tarreau · 13 years ago
  23. 1002987 [BUG] stream_sock: disable listener when system resources are exhausted by Willy Tarreau · 13 years ago
  24. 14acc70 [OPTIM] stream_sock: don't use splice on too small payloads by Willy Tarreau · 13 years ago
  25. 22be90b [OPTIM] stream_sock: avoid fast-forwarding of partial data by Willy Tarreau · 13 years ago
  26. 96e3121 [MEDIUM] http: add support for "http-no-delay" by Willy Tarreau · 13 years ago
  27. f8ca19b [CLEANUP] stream_sock: remove unneeded FL_TCP and factor out test by Willy Tarreau · 13 years ago
  28. 8f8b492 [MINOR] stream_sock: always clear BF_EXPECT_MORE upon complete transfer by Willy Tarreau · 13 years ago
  29. 68f49da [BUG] stream_sock: fix handling for server side PROXY protocol by Willy Tarreau · 13 years ago
  30. b22e55b [MEDIUM] stream_sock: add support for sending the proxy protocol header line by Willy Tarreau · 13 years ago
  31. 7c0a151 [CLEANUP] stream_interface: remove the applet.handler pointer by Willy Tarreau · 13 years ago
  32. b24281b [MINOR] stream_interface: make use of an applet descriptor for IO handlers by Willy Tarreau · 13 years ago
  33. 32d3ee9 [CRITICAL] session: correctly leave turn-around and queue states on abort by Willy Tarreau · 14 years ago
  34. 48d84c1 [OPTIM] linux: add support for bypassing libc to force using vsyscalls by Willy Tarreau · 14 years ago
  35. 11f4940 [OPTIM] stream_sock: don't clear FDs that are already cleared by Willy Tarreau · 14 years ago
  36. abe8ea5 [BUG] accept: don't close twice upon error by Willy Tarreau · 14 years ago
  37. fffe132 [CLEANUP] accept: replace some inappropriate Alert() calls with send_log() by Willy Tarreau · 14 years ago
  38. fe598a7 [BUILD] stream_sock: previous fix lacked the #include, causing a warning. by Willy Tarreau · 14 years ago
  39. e9f32db [BUG] stream_sock: cleanly disable the listener in case of resource shortage by Willy Tarreau · 14 years ago
  40. af7ad00 [MINOR] support a global jobs counter by Willy Tarreau · 14 years ago
  41. 5af1fa1 [MAJOR] stream_sock: better wakeup conditions on read() by Willy Tarreau · 14 years ago
  42. 0bd05ea [MEDIUM] stream-interface: add a ->release callback by Willy Tarreau · 14 years ago
  43. 24dcaf3 [MEDIUM] frontend: count the incoming connection earlier by Willy Tarreau · 14 years ago
  44. 7999ddb [MINOR] stream_sock: don't dereference a non-existing frontend by Willy Tarreau · 14 years ago
  45. a8f55d5 [MEDIUM] backend: initialize the server stream_interface upon connect() by Willy Tarreau · 14 years ago
  46. eb47268 [MEDIUM] separate protocol-level accept() from the frontend's by Willy Tarreau · 14 years ago
  47. 03fa5df [CLEANUP] rename client -> frontend by Willy Tarreau · 14 years ago
  48. 7340ca5 [OPTIM] stream_sock: don't shutdown(write) when the socket is in error by Willy Tarreau · 14 years ago
  49. fc1daaf [CLEANUP] stream_sock: MSG_NOSIGNAL is only for send(), not recv() by Willy Tarreau · 14 years ago
  50. 2be3939 [MINOR] http: don't wait for sending requests to the server by Willy Tarreau · 15 years ago
  51. face839 [OPTIM] http: set MSG_MORE on response when a pipelined request is pending by Willy Tarreau · 15 years ago
  52. d38b53b [MINOR] stream_sock: enable MSG_MORE when forwarding finite amount of data by Willy Tarreau · 15 years ago
  53. 4c283dc [MINOR] stream_sock: add SI_FL_NOLINGER for faster close by Willy Tarreau · 15 years ago
  54. 33b2db6 [MINOR] stream_sock: prepare for closing when all pending data are sent by Willy Tarreau · 15 years ago
  55. 864e825 [BUG] stream_sock: wrong max computation on recv by Willy Tarreau · 15 years ago
  56. 7c3c541 [MAJOR] buffers: automatically compute the maximum buffer length by Willy Tarreau · 15 years ago
  57. a9de333 [BUG] stream_sock: BUF_INFINITE_FORWARD broke splice on 64-bit platforms by Willy Tarreau · 15 years ago
  58. f1ba4b3 [MAJOR] buffer: flag BF_DONT_READ to disable reads when not required by Willy Tarreau · 15 years ago
  59. 8d5d77e [OPTIM] move some rarely used fields out of fdtab by Willy Tarreau · 15 years ago
  60. fe8903c [BUG] don't refresh timeouts late after detected activity by Willy Tarreau · 15 years ago
  61. f27b5ea [MEDIUM] new option "independant-streams" to stop updating read timeout on writes by Willy Tarreau · 15 years ago
  62. 89f7ef2 [MINOR] stream_interface: add SI_FL_DONT_WAKE flag by Willy Tarreau · 15 years ago
  63. 31971e5 [MEDIUM] add support for infinite forwarding by Willy Tarreau · 15 years ago
  64. 59454bf [MINOR] stream_sock: don't set SI_FL_WAIT_DATA if BF_SHUTW_NOW is set by Willy Tarreau · 15 years ago
  65. ba0b63d [MAJOR] buffers: fix the BF_EMPTY flag's meaning by Willy Tarreau · 15 years ago
  66. 520d95e [MAJOR] buffers: split BF_WRITE_ENA into BF_AUTO_CONNECT and BF_AUTO_CLOSE by Willy Tarreau · 15 years ago
  67. 418fd47 [MAJOR] buffers: fix misuse of the BF_SHUTW_NOW flag by Willy Tarreau · 15 years ago
  68. caf5898 [BUILD] compilation of haproxy-1.4-dev2 on FreeBSD by Dmitry Sivachenko · 15 years ago
  69. 6db06d3 [MEDIUM] remove TCP_CORK and make use of MSG_MORE instead by Willy Tarreau · 15 years ago
  70. d6d0690 [CLEANUP] remove ifdef MSG_NOSIGNAL and define it instead by Willy Tarreau · 15 years ago
  71. a07a34e [MEDIUM] replace BUFSIZE with buf->size in computations by Willy Tarreau · 15 years ago
  72. c9fce2f [BUILD] fix build for systems without SOL_TCP by Willy Tarreau · 15 years ago
  73. c54aef3 [BUG] fix random pauses on last segment of a series by Willy Tarreau · 15 years ago
  74. 7154365 [BUG] stream_sock: don't stop reading when the poller reports an error by Willy Tarreau · 15 years ago
  75. 720058c [BUG] stream_sock: always shutdown(SHUT_WR) before closing by Willy Tarreau · 15 years ago
  76. dc340a9 [MEDIUM] splice: set the capability on each stream_interface by Willy Tarreau · 15 years ago
  77. 5d707e1 [MEDIUM] stream_sock: don't close prematurely when nolinger is set by Willy Tarreau · 15 years ago
  78. fb14edc [MEDIUM] stream_sock: implement tcp-cork for use during shutdowns on Linux by Willy Tarreau · 15 years ago
  79. d06e711 [BUG] stream_sock: check for shut{r,w} before refreshing some timeouts by Willy Tarreau · 15 years ago
  80. 1714e0f [BUG] stream_sock: disable I/O on fds reporting an error by Willy Tarreau · 15 years ago
  81. 127334e [BUG] reset the stream_interface connect timeout upon connect or error by Willy Tarreau · 15 years ago
  82. 1b194fe [OPTIM] buffer: new BF_READ_DONTWAIT flag reduces EAGAIN rates by Willy Tarreau · 15 years ago
  83. 6f4a82c [OPTIM] stream_sock: don't retry to read after a large read by Willy Tarreau · 15 years ago
  84. c961946 [BUG] stream_sock: write timeout must be updated when forwarding ! by Willy Tarreau · 15 years ago
  85. 87bed62 [BUILD] build fixes for Solaris by Willy Tarreau · 15 years ago
  86. 9b97cff [BUILD] Haproxy won't compile if DEBUG_FULL is defined by Vincenzo Farruggia · 15 years ago
  87. 3eba98a [MEDIUM] splice: make use of pipe pools by Willy Tarreau · 15 years ago
  88. 98b306b [MEDIUM] splice: add hints to support older buggy kernels by Willy Tarreau · 15 years ago
  89. 5bd8c37 [MAJOR] complete support for linux 2.6 kernel splicing by Willy Tarreau · 15 years ago
  90. 6b4aad4 [MEDIUM] add definitions for Linux kernel splicing by Willy Tarreau · 15 years ago
  91. a456f2a [MEDIUM] stream_sock: try to send pending data on chk_snd() by Willy Tarreau · 15 years ago
  92. d2def0f [MINOR] stream_sock: fix a few wrong empty calculations by Willy Tarreau · 15 years ago
  93. 9c0fe59 [MEDIUM] stream_sock_read: call ->chk_snd whenever there are data pending by Willy Tarreau · 15 years ago
  94. 0c2fc1f [MEDIUM] split stream_sock_write() into callback and core functions by Willy Tarreau · 15 years ago
  95. ac128fe [CLEANUP] stream_sock: move the write-nothing condition out of the loop by Willy Tarreau · 15 years ago
  96. efc612c [CLEANUP] replace a few occurrences of (flags & X) && !(flags & Y) by Willy Tarreau · 15 years ago
  97. 68eac13 [OPTIM] stream_sock: factor out the buffer full handling out of the loop by Willy Tarreau · 15 years ago
  98. 03d60bb [OPTIM] buffer: replace rlim by max_len by Willy Tarreau · 15 years ago
  99. af78d0f [OPTIM] stream_sock: do not ask for polling on EAGAIN if we have read by Willy Tarreau · 15 years ago
  100. 0abebcc [MEDIUM] i/o: rework ->to_forward and ->send_max by Willy Tarreau · 15 years ago