1. 10b688f MEDIUM: listener: store the default target per listener by Willy Tarreau · 9 years ago
  2. f87ab94 MINOR: proxy: store the default target into the frontend's configuration by Willy Tarreau · 9 years ago
  3. 78955f4 MEDIUM: session: simplify receive buffer allocator to only use the channel by Willy Tarreau · 10 years ago
  4. 103197d CLEANUP: session: don't use si_{ic,oc} when we know the session. by Willy Tarreau · 10 years ago
  5. 7b8c4f9 CLEANUP: session: don't needlessly pass a pointer to the stream-int by Willy Tarreau · 10 years ago
  6. 8f128b4 CLEANUP: session: use local variables to access channels / stream ints by Willy Tarreau · 10 years ago
  7. 350f487 CLEANUP: session: simplify references to chn_{prod,cons}(&s->{req,res}) by Willy Tarreau · 10 years ago
  8. 81cd900 MEDIUM: channel: remove now unused ->prod and ->cons pointers by Willy Tarreau · 10 years ago
  9. ef573c0 MEDIUM: channel: add a new flag "CF_ISRESP" for the response channel by Willy Tarreau · 10 years ago
  10. 7379653 REORG/MEDIUM: channel: only use chn_prod / chn_cons to find stream-interfaces by Willy Tarreau · 10 years ago
  11. 819d332 MEDIUM: stream-int: remove any reference to the owner by Willy Tarreau · 10 years ago
  12. 07373b8 MEDIUM: stream-int: use si_task() to retrieve the task from the stream int by Willy Tarreau · 10 years ago
  13. a2df3fa MEDIUM: stream-interface: remove now unused pointers to channels by Willy Tarreau · 10 years ago
  14. a5f5d8d MEDIUM: stream-int: add a flag indicating which side the SI is on by Willy Tarreau · 10 years ago
  15. 2bb4a96 REORG/MEDIUM: stream-int: introduce si_ic/si_oc to access channels by Willy Tarreau · 10 years ago
  16. a27dc19 CLEANUP: remove now unused channel pool by Willy Tarreau · 10 years ago
  17. 22ec1ea REORG/MAJOR: move session's req and resp channels back into the session by Willy Tarreau · 10 years ago
  18. a718b29 MINOR: lua: remove some #define by Thierry FOURNIER · 9 years ago
  19. 05ac424 MEDIUM: lua: Lua initialisation "on demand" by Thierry FOURNIER · 9 years ago
  20. 65f34c6 MINOR: lua: txn: create class TXN associated with the transaction. by Thierry FOURNIER · 9 years ago
  21. bc4c1ac MEDIUM: http/tcp: permit to resume http and tcp custom actions by Thierry FOURNIER · 9 years ago
  22. f41a809 MINOR: sample: add private argument to the struct sample_fetch by Thierry FOURNIER · 10 years ago
  23. b83862d MEDIUM: channel: wake up any request analyzer on response activity by Thierry FOURNIER · 9 years ago
  24. 2e05a8c MEDIUM: task: call session analyzers if the task is woken by a message. by Thierry FOURNIER · 10 years ago
  25. a24adf0 MAJOR: session: only wake up as many sessions as available buffers permit by Willy Tarreau · 10 years ago
  26. 10fc09e MAJOR: session: only allocate buffers when needed by Willy Tarreau · 10 years ago
  27. bf883e0 MAJOR: session: implement a wait-queue for sessions who need a buffer by Willy Tarreau · 10 years ago
  28. 656859d MEDIUM: session: implement a basic atomic buffer allocator by Willy Tarreau · 10 years ago
  29. 909e267 MINOR: session: group buffer allocations together by Willy Tarreau · 10 years ago
  30. 7dfca9d MINOR: buffer: only use b_free to release buffers by Willy Tarreau · 10 years ago
  31. 696a291 MINOR: buffer: move buffer initialization after channel initialization by Willy Tarreau · 10 years ago
  32. e583ea5 MEDIUM: buffer: use b_alloc() to allocate and initialize a buffer by Willy Tarreau · 10 years ago
  33. 474cf54 MINOR: buffer: reset a buffer in b_reset() and not channel_init() by Willy Tarreau · 10 years ago
  34. 3b24641 BUG/MAJOR: sessions: unlink session from list on out of memory by Willy Tarreau · 10 years ago
  35. b3e54fe MAJOR: namespace: add Linux network namespace support by KOVACS Krisztian · 10 years ago
  36. 3a5e060 MINOR: session: release a few other pools when stopping by Willy Tarreau · 10 years ago
  37. e12704b MINOR: session: export the function 'smp_fetch_sc_stkctr' by Willy Tarreau · 10 years ago
  38. b5975de MINOR: stick-table: make stktable_fetch_key() indicate why it failed by Willy Tarreau · 10 years ago
  39. 6f0a7ba BUG/MAJOR: session: revert all the crappy client-side timeout changes by Willy Tarreau · 10 years ago
  40. 4bfc580 MEDIUM: session: maintain per-backend and per-server time statistics by Willy Tarreau · 10 years ago
  41. 33a14e5 MEDIUM: session: redispatch earlier when possible by Willy Tarreau · 10 years ago
  42. db6d012 MEDIUM: session: don't apply the retry delay when redispatching by Willy Tarreau · 10 years ago
  43. b029066 MEDIUM: session: allow shorter retry delay if timeout connect is small by Willy Tarreau · 10 years ago
  44. 892337c MAJOR: server: use states instead of flags to store the server state by Willy Tarreau · 10 years ago
  45. c93cd16 REORG/MEDIUM: server: split server state and flags in two different variables by Willy Tarreau · 10 years ago
  46. 0943757 BUG/MEDIUM: session: don't clear CF_READ_NOEXP if analysers are not called by Willy Tarreau · 10 years ago
  47. 05cdd96 MEDIUM: session: implement half-closed timeouts (client-fin and server-fin) by Willy Tarreau · 10 years ago
  48. b4f9809 BUG/MAJOR: session: recover the correct connection pointer in half-initialized sessions by Willy Tarreau · 10 years ago
  49. b1982e2 BUG/MEDIUM: http/session: disable client-side expiration only after body by Willy Tarreau · 10 years ago
  50. 644c101 BUG/MAJOR: http: connection setup may stall on balance url_param by Willy Tarreau · 10 years ago
  51. f51658d MEDIUM: config: relax use_backend check to make the condition optional by Willy Tarreau · 10 years ago
  52. b9a551e BUG/MINOR: stats: last session was not always set by Willy Tarreau · 10 years ago
  53. 5a8f947 CLEANUP: http: rename http_process_request_body() by Willy Tarreau · 10 years ago
  54. d988f21 BUG/MAJOR: session: fix a possible crash with src_tracked by Thierry FOURNIER · 10 years ago
  55. 74c219d BUG/MEDIUM: stick-table: fix IPv4-to-IPv6 conversion in src_* fetches by Thierry FOURNIER · 10 years ago
  56. 6a0b6bd BUG/MAJOR: counters: check for null-deref when looking up an alternate table by Willy Tarreau · 10 years ago
  57. 702d44f MEDIUM: proxy: support use_backend with dynamic names by Bertrand Jacquin · 11 years ago
  58. a47a94f MINOR: session: don't always assume there's a listener by Thierry FOURNIER · 10 years ago
  59. 7519560 MINOR: http: release compression context only in http_end_txn() by Willy Tarreau · 10 years ago
  60. a20cb85 MINOR: stats: Enhancement to stats page to provide information of last session time. by Bhaskar Maddala · 10 years ago
  61. a23ee3a MINOR: session: clean up the connection free code by Willy Tarreau · 10 years ago
  62. 818dca5 BUG/MEDIUM: listener: improve detection of non-working accept4() by Willy Tarreau · 10 years ago
  63. cc08d2c MEDIUM: counters: stop relying on session flags at all by Willy Tarreau · 10 years ago
  64. e910169 BUG/MEDIUM: counters: fix stick-table entry leak when using track-sc2 in connection by Willy Tarreau · 10 years ago
  65. 1f0da24 BUG/MEDIUM: unique_id: HTTP request counter is not stable by Willy Tarreau · 10 years ago
  66. 2b028dd OPTIM: session: put unlikely() around the freewheeling code by Willy Tarreau · 11 years ago
  67. 9e5a3aa MEDIUM: stream-int: make si_connect() return an established state when possible by Willy Tarreau · 11 years ago
  68. b44c873 MEDIUM: session: prepare to support earlier transitions to the established state by Willy Tarreau · 11 years ago
  69. 0e37f1c MINOR: session: factor out the connect time measurement by Willy Tarreau · 11 years ago
  70. d81ca04 OPTIM: session: set the READ_DONTWAIT flag when connecting by Willy Tarreau · 11 years ago
  71. d7ad9f5 MAJOR: channel: add a new flag CF_WAKE_WRITE to notify the task of writes by Willy Tarreau · 11 years ago
  72. 068621e MINOR: http: try to stick to same server after status 401/407 by Willy Tarreau · 11 years ago
  73. 2cff2f7 MINOR: session: remove debugging code by Willy Tarreau · 11 years ago
  74. 59e3ff4 BUG/MAJOR: session: repair tcp-request connection rules by Willy Tarreau · 11 years ago
  75. 89efaed BUILD: definitely silence some stupid GCC warnings by Willy Tarreau · 11 years ago
  76. 6bbb2f6 MINOR: session: report lack of resources using the new stream-interface's error code by Willy Tarreau · 11 years ago
  77. 2d400bb MINOR: stream_interface: add reporting of ressouce allocation errors by Willy Tarreau · 12 years ago
  78. 4384ddf MEDIUM: session: automatically register the applet designated by the target by Willy Tarreau · 11 years ago
  79. 32e3c6a MAJOR: stream interface: dynamically allocate the outgoing connection by Willy Tarreau · 11 years ago
  80. 2a6e880 MEDIUM: stream-interface: introduce si_attach_conn to replace si_prepare_conn by Willy Tarreau · 11 years ago
  81. 7abddb5 MINOR: connection: replace conn_assign with conn_attach by Willy Tarreau · 11 years ago
  82. 910c6aa MINOR: connection: reintroduce conn_prepare to set the protocol and transport by Willy Tarreau · 11 years ago
  83. 3ed35ef MINOR: stream-interface: introduce si_reset() and si_set_state() by Willy Tarreau · 11 years ago
  84. f79c817 MAJOR: connection: add two new flags to indicate readiness of control/transport by Willy Tarreau · 11 years ago
  85. c10aec2 MINOR: get rid of si_takeover_conn() by Willy Tarreau · 11 years ago
  86. 3721343 MEDIUM: connection: replace conn_prepare with conn_assign by Willy Tarreau · 11 years ago
  87. f826c22 MINOR: session: use conn_init() to initialize the connections by Willy Tarreau · 11 years ago
  88. f8a49ea MEDIUM: session: attach incoming connection to target on embryonic sessions by Willy Tarreau · 11 years ago
  89. b363a1f MAJOR: stream-int: stop using si->conn and use si->end instead by Willy Tarreau · 11 years ago
  90. 691b1f4 CLEANUP: stream-int: remove obsolete si_ctrl function by Willy Tarreau · 11 years ago
  91. cf644ed MEDIUM: stream-int: make ->end point to the connection or the appctx by Willy Tarreau · 11 years ago
  92. 4a59f2f MAJOR: stream interface: remove the ->release function pointer by Willy Tarreau · 11 years ago
  93. 372d670 MINOR: stream-int: split si_prepare_embedded into si_prepare_none and si_prepare_applet by Willy Tarreau · 11 years ago
  94. 1e6902f MINOR: connection: always initialize conn->objt_type to OBJ_TYPE_CONN by Willy Tarreau · 11 years ago
  95. fac4bd1 MAJOR: session: pass applet return traffic through the response analysers by Willy Tarreau · 11 years ago
  96. d84fb5e MAJOR: session: check for a connection to an applet in sess_prepare_conn_req() by Willy Tarreau · 11 years ago
  97. 7584b27 MEDIUM: session: detect applets from the session by using s->target by Willy Tarreau · 11 years ago
  98. 0838295 CLEANUP: stream_interface: remove unused field err_loc by Willy Tarreau · 11 years ago
  99. 9667a80 BUG/MEDIUM: stick-tables: complete the latest fix about store-responses by Willy Tarreau · 11 years ago
  100. 37e340c BUG/MEDIUM: stick: completely remove the unused flag from the store entries by Willy Tarreau · 11 years ago