1. 81cd900 MEDIUM: channel: remove now unused ->prod and ->cons pointers by Willy Tarreau · 10 years ago
  2. 5decc05 MAJOR: channel: only rely on the new CF_ISRESP flag to find the SI by Willy Tarreau · 10 years ago
  3. ef573c0 MEDIUM: channel: add a new flag "CF_ISRESP" for the response channel by Willy Tarreau · 10 years ago
  4. 7379653 REORG/MEDIUM: channel: only use chn_prod / chn_cons to find stream-interfaces by Willy Tarreau · 10 years ago
  5. 50fe03b CLEANUP: stream-int: add si_opposite() to find the other stream interface by Willy Tarreau · 10 years ago
  6. 4e4292b CLEANUP: stream-int: add si_ib/si_ob to dereference the buffers by Willy Tarreau · 10 years ago
  7. 819d332 MEDIUM: stream-int: remove any reference to the owner by Willy Tarreau · 10 years ago
  8. 07373b8 MEDIUM: stream-int: use si_task() to retrieve the task from the stream int by Willy Tarreau · 10 years ago
  9. aefd790 MEDIUM: stream-int: make si_sess() use the stream int's side by Willy Tarreau · 10 years ago
  10. a2df3fa MEDIUM: stream-interface: remove now unused pointers to channels by Willy Tarreau · 10 years ago
  11. 0b2fb7f MAJOR: stream-int: only rely on SI_FL_ISBACK to find the requested channel by Willy Tarreau · 10 years ago
  12. a5f5d8d MEDIUM: stream-int: add a flag indicating which side the SI is on by Willy Tarreau · 10 years ago
  13. 2bb4a96 REORG/MEDIUM: stream-int: introduce si_ic/si_oc to access channels by Willy Tarreau · 10 years ago
  14. a27dc19 CLEANUP: remove now unused channel pool by Willy Tarreau · 10 years ago
  15. 22ec1ea REORG/MAJOR: move session's req and resp channels back into the session by Willy Tarreau · 10 years ago
  16. 17bd152 DOC: lua api by Thierry FOURNIER · 9 years ago
  17. 2694a1a MINOR: lua: fetches and converters can return an empty string in place of nil by Thierry FOURNIER · 9 years ago
  18. 397826a MINOR: lua: replace function (req|get)_channel by a variable by Thierry FOURNIER · 9 years ago
  19. 594afe7 MINOR: lua: wrapper for converters by Thierry FOURNIER · 9 years ago
  20. 8fd1376 MINOR: converters: add function to browse converters by Thierry FOURNIER · 9 years ago
  21. bb53c7b MEDIUM: lua: create a namespace for the fetches by Thierry FOURNIER · 9 years ago
  22. 2297bc2 MEDIUM: lua: change the objects configuration by Thierry FOURNIER · 9 years ago
  23. a2d8c65 MINOR: replace the Core object by a simple model. by Thierry FOURNIER · 9 years ago
  24. 5955166 CLEANUP: lua: use the same function names in C and Lua by Willy Tarreau · 9 years ago
  25. 5eadada MINOR: lua: convert IP addresses to type string by Willy Tarreau · 9 years ago
  26. 38c5fd6 MEDIUM: lua: make the functions hlua_gethlua() and hlua_sethlua() faster by Thierry FOURNIER · 9 years ago
  27. 76bd97f Revert "BUG/MEDIUM: lua: can't handle the response bytes" by Willy Tarreau · 9 years ago
  28. 612adb8 BUG/MAJOR: http: fix stats regression consecutive to HTTP_RULE_RES_YIELD by Willy Tarreau · 9 years ago
  29. eee4539 BUG/MINOR: lua: report the correct function name in an error message by Willy Tarreau · 9 years ago
  30. fdda677 BUG/MEDIUM: buffer: one byte miss in buffer free space check by Thierry FOURNIER · 9 years ago
  31. 463119c BUG/BUILD: lua: The strict Lua 5.3 version check is not done. by Thierry FOURNIER · 9 years ago
  32. 0054392 BUG/MINOR: lua: sockets receive behavior doesn't follows the specs by Thierry FOURNIER · 9 years ago
  33. 95ad96a BUG/MEDIUM: lua: cannot connect socket by Thierry FOURNIER · 9 years ago
  34. 486d52a BUG/MEDIUM: lua: sockets don't have buffer to write data by Thierry FOURNIER · 9 years ago
  35. e83766a BUG/MINOR: log: segfault if there are no proxy reference by Thierry FOURNIER · 9 years ago
  36. 4a6170c BUG/MINOR: lua: check buffers before initializing socket by Thierry FOURNIER · 9 years ago
  37. d2b597a BUG/MEDIUM: lua: segfault with buffer_replace2 by Thierry FOURNIER · 9 years ago
  38. cd9084f BUG/MEDIUM: lua: can't handle the response bytes by Thierry FOURNIER · 9 years ago
  39. cae49c9 BUG/MAJOR: lua: some function are not yieldable, the forced yield causes errors by Thierry FOURNIER · 9 years ago
  40. f90838b MEDIUM: lua: use the Lua-5.3 version of the library by Thierry FOURNIER · 9 years ago
  41. deb5d73 BUG/MEDIUM: lua: many errors when we try to send data with the channel API by Thierry FOURNIER · 9 years ago
  42. 53e08ec BUG/MEDIUM: lua: the Lua process is not waked up after sending data on requests side by Thierry FOURNIER · 9 years ago
  43. ef6a211 BUG/MEDIUM: lua: fix infinite loop about channel by Thierry FOURNIER · 9 years ago
  44. 1bfc09b BUG/MEDIUM: lua: reset flags before resuming execution by Thierry FOURNIER · 9 years ago
  45. 3e3a608 BUG/MINOR: lua: set buffer if it is nnot avalaible. by Thierry FOURNIER · 9 years ago
  46. bd1f132 MINOR: lua: add the struct session in the lua channel struct by Thierry FOURNIER · 9 years ago
  47. 90da191 DOC: lua: Lua configuration documentation by Thierry FOURNIER · 9 years ago
  48. dc9ca96 BUG/MEDIUM: lua: the execution timeout is ignored in yield case by Thierry FOURNIER · 9 years ago
  49. c46c965 BUG/MEDIUM: task: fix recently introduced scheduler skew by Willy Tarreau · 9 years ago
  50. d44731f MEDIUM: lua: change the sleep function core by Thierry FOURNIER · 9 years ago
  51. ee9f802 MEDIUM: lua: interrupt the Lua execution for running other process by Thierry FOURNIER · 9 years ago
  52. 4abd3ae MINOR: lua: adds "forced yield" flag by Thierry FOURNIER · 9 years ago
  53. c42c1ae MEDIUM: lua: each yielding function returns a wake up time. by Thierry FOURNIER · 9 years ago
  54. bd41349 MINOR: lua: set skeleton for Lua execution expiration by Thierry FOURNIER · 9 years ago
  55. a097fdf MINOR: lua: use bitfield and macro in place of integer and enum by Thierry FOURNIER · 9 years ago
  56. a718b29 MINOR: lua: remove some #define by Thierry FOURNIER · 9 years ago
  57. 5c49aeb MINOR: remove unused declaration. by Thierry FOURNIER · 9 years ago
  58. 506e46c BUG/MAJOR: lua: send function fails and return bad bytes by Thierry FOURNIER · 9 years ago
  59. d1039e5 BUILD/CLEANUP: systemd: avoid a warning due to mixed code and declaration by Cyril Bonté · 9 years ago
  60. c21adb5 BUILD: try to automatically detect the Lua library name by Cyril Bonté · 9 years ago
  61. 84bb493 BUILD: lua: missing ifdef related to SSL when enabling LUA by Baptiste Assmann · 9 years ago
  62. 928ae5c BUG/MEDIUM: lua: segfault when calling haproxy sample fetches from lua by Cyril Bonté · 9 years ago
  63. dc0306e MINOR: lua: add a compilation error message when compiled with an incompatible version by Cyril Bonté · 9 years ago
  64. 47eb219 MINOR: report the Lua version in -vv by Cyril Bonté · 9 years ago
  65. 577a36a MINOR: lua: typo in an error message by Cyril Bonté · 9 years ago
  66. 05ac424 MEDIUM: lua: Lua initialisation "on demand" by Thierry FOURNIER · 9 years ago
  67. 80f5fae BUILD: lua: cleanup many mixed occurrences declarations & code by Willy Tarreau · 9 years ago
  68. 893bfa3 MINOR: lua: txn: add binding for closing the client connection. by Thierry FOURNIER · 9 years ago
  69. 13416fe MINOR: lua: core: can yield an execution stack by Thierry FOURNIER · 9 years ago
  70. 37196f4 MINOR: lua: core: can set the nice of the current task by Thierry FOURNIER · 9 years ago
  71. e94e774 MINOR: lua: txn: object "txn" provides two objects "channel" by Thierry FOURNIER · 9 years ago
  72. 5a6d3fd MINOR: lua: channel: add "channel" class by Thierry FOURNIER · 9 years ago
  73. 83758bb MINOR: lua: core: pattern and acl manipulation by Thierry FOURNIER · 9 years ago
  74. 7e7ac32 MEDIUM: lua: socket: add "socket" class for TCP I/O by Thierry FOURNIER · 9 years ago
  75. 5b8608f MINOR: lua: core: add sleep functions by Thierry FOURNIER · 9 years ago
  76. 258d8aa MINOR: lua: add bindings for tcp and http actions by Thierry FOURNIER · 9 years ago
  77. 9be813f MINOR: lua: register and execute converters in LUA by Thierry FOURNIER · 9 years ago
  78. fa0e5dd MINOR: lua: register and execute sample-fetches in LUA by Thierry FOURNIER · 9 years ago
  79. 9a819e7 MINOR: lua: txn: add lua function in TXN that returns an array of http headers by Thierry FOURNIER · 9 years ago
  80. d0fa538 MINOR: lua: txn: import existing sample-fetches in the class TXN by Thierry FOURNIER · 9 years ago
  81. 05c0b8a MINOR: lua: add shared context in the lua stack by Thierry FOURNIER · 9 years ago
  82. 65f34c6 MINOR: lua: txn: create class TXN associated with the transaction. by Thierry FOURNIER · 9 years ago
  83. 55da165 MINOR: lua: add sample and args type converters by Thierry FOURNIER · 9 years ago
  84. 24f3353 MEDIUM: lua: add coroutine as tasks. by Thierry FOURNIER · 9 years ago
  85. a4a0f3d MINOR: lua: post initialisation bindings by Thierry FOURNIER · 9 years ago
  86. 2ba18a2 MINOR: lua: core: create "core" class and object by Thierry FOURNIER · 9 years ago
  87. 6c9b52c MINOR: lua: add the configuration directive "lua-load" by Thierry FOURNIER · 9 years ago
  88. 9ff7e6e MEDIUM: lua: "com" signals by Thierry FOURNIER · 9 years ago
  89. 380d093 MINOR: lua: add runtime execution context by Thierry FOURNIER · 9 years ago
  90. e8b9a40 MINOR: lua: add ease functions by Thierry FOURNIER · 9 years ago
  91. 6f1fd48 MEDIUM: lua: lua integration in the build and init system. by Thierry FOURNIER · 9 years ago
  92. ca16b03 MINOR: channel: functions to get data from a buffer without copy by Thierry FOURNIER · 9 years ago
  93. bc4c1ac MEDIUM: http/tcp: permit to resume http and tcp custom actions by Thierry FOURNIER · 9 years ago
  94. 9e2ef99 MEDIUM: http: change the code returned by the response processing rule functions by Thierry FOURNIER · 9 years ago
  95. 549aac8 MEDIUM: buffer: make bo_putblk/bo_putstr/bo_putchk return the number of bytes copied. by Thierry FOURNIER · 9 years ago
  96. cc87a11 MEDIUM: tcp: add register keyword system. by Thierry FOURNIER · 10 years ago
  97. ac836ba MINOR: includes: fix a lot of missing or useless includes by Thierry FOURNIER · 10 years ago
  98. 49f45af MINOR: global: export many symbols. by Thierry FOURNIER · 10 years ago
  99. 4d9a1d1 MINOR: sample: add function for browsing samples. by Thierry FOURNIER · 10 years ago
  100. 58639a0 MINOR: global: export function and permits to not resolve DNS names by Thierry FOURNIER · 10 years ago