1. 7ea671b MINOR: session: store the session's accept date by Willy Tarreau · 9 years ago
  2. 1f52bb2 CLEANUP: stream: don't set ->target to the incoming connection anymore by Willy Tarreau · 9 years ago
  3. d0d8da9 MINOR: stream: provide a few helpers to retrieve frontend, listener and origin by Willy Tarreau · 9 years ago
  4. 192252e MAJOR: sample: pass a pointer to the session to each sample fetch function by Willy Tarreau · 9 years ago
  5. 987e3fb MEDIUM: http: remove the now useless http_txn from {req/res} rules by Willy Tarreau · 9 years ago
  6. f3bf305 CLEANUP: lua: remove unused hlua_smp->l7 and hlua_txn->l7 by Willy Tarreau · 9 years ago
  7. 15e91e1 MAJOR: sample: don't pass l7 anymore to sample fetch functions by Willy Tarreau · 9 years ago
  8. eee5b51 MAJOR: http: move http_txn out of struct stream by Willy Tarreau · 9 years ago
  9. cb7dd01 MEDIUM: http: move header captures from http_txn to struct stream by Willy Tarreau · 9 years ago
  10. 40606ab MINOR: session: add a pointer to the session's origin by Willy Tarreau · 9 years ago
  11. e36cbcb MEDIUM: stream: move the frontend's pointer to the session by Willy Tarreau · 9 years ago
  12. fb0afa7 MEDIUM: stream: move the listener's pointer to the session by Willy Tarreau · 9 years ago
  13. b1ec8c4 MINOR: session: start to reintroduce struct session by Willy Tarreau · 9 years ago
  14. e7dff02 REORG/MEDIUM: stream: rename stream flags from SN_* to SF_* by Willy Tarreau · 9 years ago
  15. 87b0966 REORG/MAJOR: session: rename the "session" entity to "stream" by Willy Tarreau · 9 years ago
  16. 418b8c0 MAJOR: compression: integrate support for libslz by Willy Tarreau · 9 years ago
  17. 7b21877 CLEANUP: compression: remove unused reset functions by Willy Tarreau · 9 years ago
  18. 9787efa MEDIUM: compression: split deflate_flush() into flush and finish by Willy Tarreau · 9 years ago
  19. 615105e MEDIUM: compression: add a distinction between UA- and config- algorithms by Willy Tarreau · 9 years ago
  20. 9f640a1 CLEANUP: compression: statify all algo-specific functions by Willy Tarreau · 9 years ago
  21. 15530d2 MEDIUM: compression: don't send leading zeroes with chunk size by Willy Tarreau · 9 years ago
  22. 08504f4 MINOR: lua: create and register HTTP class by Thierry FOURNIER · 9 years ago
  23. 7fe75e0 MINOR: http: export function inet_set_tos() by Thierry FOURNIER · 9 years ago
  24. 5531f87 MINOR: http: split http_transform_header() function in two parts. by Thierry FOURNIER · 9 years ago
  25. b77aece MINOR: http: split the function http_action_set_req_line() in two parts by Thierry FOURNIER · 9 years ago
  26. 10b688f MEDIUM: listener: store the default target per listener by Willy Tarreau · 9 years ago
  27. 512fd00 CLEANUP: listeners: remove unused timeout by Willy Tarreau · 9 years ago
  28. f87ab94 MINOR: proxy: store the default target into the frontend's configuration by Willy Tarreau · 9 years ago
  29. 91d9628 MINOR: peers: centralize configuration of the peers frontend by Willy Tarreau · 9 years ago
  30. 933e5de MEDIUM: map: uses HAProxy facilities to store default value by Thierry FOURNIER · 9 years ago
  31. d85c485 REORG: connection: move conn_drain() to connection.c and rename it by Willy Tarreau · 9 years ago
  32. f31fb07 MEDIUM: connection: make conn_drain() perform more controls by Willy Tarreau · 9 years ago
  33. ff3e648 MINOR: connection: implement conn_sock_send() by Willy Tarreau · 9 years ago
  34. 729c69f MINOR: connection: perform the call to xprt->shutw() in conn_data_shutw() by Willy Tarreau · 9 years ago
  35. a02e8c9 MINOR: connection: make conn_sock_shutw() actually perform the shutdown() call by Willy Tarreau · 9 years ago
  36. 2ec2274 MEDIUM: lua: remove hlua_sample_fetch by Willy Tarreau · 9 years ago
  37. 47860ed MEDIUM: lua: remove struct hlua_channel by Willy Tarreau · 9 years ago
  38. f687052 CLEANUP: lua: remove the session pointer from hlua_channel by Willy Tarreau · 9 years ago
  39. 78955f4 MEDIUM: session: simplify receive buffer allocator to only use the channel by Willy Tarreau · 10 years ago
  40. d5ccfa3 MINOR: channel: add chn_sess() helper to retrieve session from channel by Willy Tarreau · 10 years ago
  41. 81cd900 MEDIUM: channel: remove now unused ->prod and ->cons pointers by Willy Tarreau · 10 years ago
  42. 5decc05 MAJOR: channel: only rely on the new CF_ISRESP flag to find the SI by Willy Tarreau · 10 years ago
  43. ef573c0 MEDIUM: channel: add a new flag "CF_ISRESP" for the response channel by Willy Tarreau · 10 years ago
  44. 7379653 REORG/MEDIUM: channel: only use chn_prod / chn_cons to find stream-interfaces by Willy Tarreau · 10 years ago
  45. 50fe03b CLEANUP: stream-int: add si_opposite() to find the other stream interface by Willy Tarreau · 10 years ago
  46. 4e4292b CLEANUP: stream-int: add si_ib/si_ob to dereference the buffers by Willy Tarreau · 10 years ago
  47. 819d332 MEDIUM: stream-int: remove any reference to the owner by Willy Tarreau · 10 years ago
  48. 07373b8 MEDIUM: stream-int: use si_task() to retrieve the task from the stream int by Willy Tarreau · 10 years ago
  49. aefd790 MEDIUM: stream-int: make si_sess() use the stream int's side by Willy Tarreau · 10 years ago
  50. a2df3fa MEDIUM: stream-interface: remove now unused pointers to channels by Willy Tarreau · 10 years ago
  51. 0b2fb7f MAJOR: stream-int: only rely on SI_FL_ISBACK to find the requested channel by Willy Tarreau · 10 years ago
  52. a5f5d8d MEDIUM: stream-int: add a flag indicating which side the SI is on by Willy Tarreau · 10 years ago
  53. 2bb4a96 REORG/MEDIUM: stream-int: introduce si_ic/si_oc to access channels by Willy Tarreau · 10 years ago
  54. a27dc19 CLEANUP: remove now unused channel pool by Willy Tarreau · 10 years ago
  55. 22ec1ea REORG/MAJOR: move session's req and resp channels back into the session by Willy Tarreau · 10 years ago
  56. 2694a1a MINOR: lua: fetches and converters can return an empty string in place of nil by Thierry FOURNIER · 9 years ago
  57. 594afe7 MINOR: lua: wrapper for converters by Thierry FOURNIER · 9 years ago
  58. 8fd1376 MINOR: converters: add function to browse converters by Thierry FOURNIER · 9 years ago
  59. bb53c7b MEDIUM: lua: create a namespace for the fetches by Thierry FOURNIER · 9 years ago
  60. d2b597a BUG/MEDIUM: lua: segfault with buffer_replace2 by Thierry FOURNIER · 9 years ago
  61. 53e08ec BUG/MEDIUM: lua: the Lua process is not waked up after sending data on requests side by Thierry FOURNIER · 9 years ago
  62. ef6a211 BUG/MEDIUM: lua: fix infinite loop about channel by Thierry FOURNIER · 9 years ago
  63. bd1f132 MINOR: lua: add the struct session in the lua channel struct by Thierry FOURNIER · 9 years ago
  64. 4abd3ae MINOR: lua: adds "forced yield" flag by Thierry FOURNIER · 9 years ago
  65. c42c1ae MEDIUM: lua: each yielding function returns a wake up time. by Thierry FOURNIER · 9 years ago
  66. bd41349 MINOR: lua: set skeleton for Lua execution expiration by Thierry FOURNIER · 9 years ago
  67. a097fdf MINOR: lua: use bitfield and macro in place of integer and enum by Thierry FOURNIER · 9 years ago
  68. a718b29 MINOR: lua: remove some #define by Thierry FOURNIER · 9 years ago
  69. 5c49aeb MINOR: remove unused declaration. by Thierry FOURNIER · 9 years ago
  70. 5a6d3fd MINOR: lua: channel: add "channel" class by Thierry FOURNIER · 9 years ago
  71. 7e7ac32 MEDIUM: lua: socket: add "socket" class for TCP I/O by Thierry FOURNIER · 9 years ago
  72. 5b8608f MINOR: lua: core: add sleep functions by Thierry FOURNIER · 9 years ago
  73. 258d8aa MINOR: lua: add bindings for tcp and http actions by Thierry FOURNIER · 9 years ago
  74. fa0e5dd MINOR: lua: register and execute sample-fetches in LUA by Thierry FOURNIER · 9 years ago
  75. d0fa538 MINOR: lua: txn: import existing sample-fetches in the class TXN by Thierry FOURNIER · 9 years ago
  76. 65f34c6 MINOR: lua: txn: create class TXN associated with the transaction. by Thierry FOURNIER · 9 years ago
  77. a4a0f3d MINOR: lua: post initialisation bindings by Thierry FOURNIER · 9 years ago
  78. 2ba18a2 MINOR: lua: core: create "core" class and object by Thierry FOURNIER · 9 years ago
  79. 9ff7e6e MEDIUM: lua: "com" signals by Thierry FOURNIER · 9 years ago
  80. 380d093 MINOR: lua: add runtime execution context by Thierry FOURNIER · 9 years ago
  81. 6f1fd48 MEDIUM: lua: lua integration in the build and init system. by Thierry FOURNIER · 9 years ago
  82. ca16b03 MINOR: channel: functions to get data from a buffer without copy by Thierry FOURNIER · 9 years ago
  83. bc4c1ac MEDIUM: http/tcp: permit to resume http and tcp custom actions by Thierry FOURNIER · 9 years ago
  84. 549aac8 MEDIUM: buffer: make bo_putblk/bo_putstr/bo_putchk return the number of bytes copied. by Thierry FOURNIER · 9 years ago
  85. cc87a11 MEDIUM: tcp: add register keyword system. by Thierry FOURNIER · 10 years ago
  86. ac836ba MINOR: includes: fix a lot of missing or useless includes by Thierry FOURNIER · 10 years ago
  87. 49f45af MINOR: global: export many symbols. by Thierry FOURNIER · 10 years ago
  88. 4d9a1d1 MINOR: sample: add function for browsing samples. by Thierry FOURNIER · 10 years ago
  89. 58639a0 MINOR: global: export function and permits to not resolve DNS names by Thierry FOURNIER · 10 years ago
  90. f41a809 MINOR: sample: add private argument to the struct sample_fetch by Thierry FOURNIER · 10 years ago
  91. 68a556e MINOR: converters: give the session pointer as converter argument by Thierry FOURNIER · 9 years ago
  92. 1edc971 MINOR: converters: add a "void *private" argument to converters by Thierry FOURNIER · 10 years ago
  93. b83862d MEDIUM: channel: wake up any request analyzer on response activity by Thierry FOURNIER · 9 years ago
  94. bb2ae64 MEDIUM: protocol: automatically pick the proto associated to the connection. by Thierry FOURNIER · 9 years ago
  95. b550d00 MEDIUM: protocol: use a family array to index the protocol handlers by Willy Tarreau · 9 years ago
  96. 9cf7c4b MAJOR: poll: only rely on wake_expired_tasks() to compute the wait delay by Thierry FOURNIER · 10 years ago
  97. 05552d4 MEDIUM: Add support for configurable TLS ticket keys by Nenad Merdanovic · 9 years ago
  98. 501260b MEDIUM: task: always ensure that the run queue is consistent by Willy Tarreau · 9 years ago
  99. 70fd748 BUG/MINOR: ARG6 and ARG7 don't fit in a 32 bits word by Thierry FOURNIER · 9 years ago
  100. 2a3fb1c MINOR: ssl/server: add the "no-ssl-reuse" server option by Willy Tarreau · 9 years ago