1. 1b421ea MINOR: acl: Pass the ACLs as an explicit parameter of build_acl_cond by Christopher Faulet · 7 years ago
  2. 78880fb MINOR: action: Add function to check rules using an action ACT_ACTION_TRK_* by Christopher Faulet · 7 years ago
  3. 6d950b9 MINOR: action: Add a function pointer in act_rule struct to check its validity by Christopher Faulet · 7 years ago
  4. 4fce0d8 MINOR: action: Use trk_idx instead of tcp/http_trk_idx by Christopher Faulet · 7 years ago
  5. 7421b14 MINOR: action: Add trk_idx inline function by Christopher Faulet · 7 years ago
  6. d22e83a MINOR: h1: store the status code in the H1 message by Willy Tarreau · 7 years ago
  7. a3c77cf MINOR: shctx: rename lock functions by William Lallemand · 7 years ago
  8. 4f45bb9 MEDIUM: shctx: separate ssl and shctx by William Lallemand · 7 years ago
  9. ed0b5ad REORG: shctx: move ssl functions to ssl_sock.c by William Lallemand · 7 years ago
  10. 3f85c9a MEDIUM: shctx: allow the use of multiple shctx by William Lallemand · 7 years ago
  11. 24a7a75 REORG: shctx: move lock functions and struct by William Lallemand · 7 years ago
  12. 83215a4 MEDIUM: lists: list_for_each_entry{_safe}_from functions by William Lallemand · 7 years ago
  13. 01da571 MINOR: merge ssl_sock_get calls for log and ppv2 by Emmanuel Hocdet · 7 years ago
  14. 58118b4 MINOR: update proxy-protocol-v2 #define by Emmanuel Hocdet · 7 years ago
  15. 9679ac9 MINOR: ssl: Don't abuse ssl_options. by Olivier Houchard · 7 years ago
  16. c2aae74 MEDIUM: ssl: Handle early data with OpenSSL 1.1.1 by Olivier Houchard · 7 years ago
  17. 51a76d8 MINOR: http: Mark the 425 code as "Too Early". by Olivier Houchard · 7 years ago
  18. 3190427 MINOR: hlua: Add regex class by Thierry FOURNIER · 7 years ago
  19. 48b4bb4 MEDIUM: cfgparse: post parsing registration by William Lallemand · 7 years ago
  20. d2ff56d MEDIUM: cfgparse: post section callback by William Lallemand · 7 years ago
  21. 145746c MINOR: buffer: add the buffer input manipulation functions by Willy Tarreau · 7 years ago
  22. 7b271b2 MEDIUM: connection: make use of CO_FL_WILL_UPDATE in conn_sock_shutw() by Willy Tarreau · 7 years ago
  23. 916e12d MINOR: connection: add flag CO_FL_WILL_UPDATE to indicate when updates are granted by Willy Tarreau · 7 years ago
  24. bc97cc4 MINOR: connection: move the cleanup of flag CO_FL_WAIT_ROOM by Willy Tarreau · 7 years ago
  25. 7389dd0 IMPORT: sha1: import SHA1 functions by Dragan Dosen · 7 years ago
  26. 019f9b1 MINOR: ssl: build with recent BoringSSL library by Emmanuel Hocdet · 7 years ago
  27. 1296382 CONTRIB: trace: add the possibility to place trace calls in the code by Willy Tarreau · 7 years ago
  28. cbc6524 MINOR: connection: remove conn_force_close() by Willy Tarreau · 7 years ago
  29. 3b737c9 MINOR: stream-int: use conn_full_close() instead of conn_force_close() by Willy Tarreau · 7 years ago
  30. dc42acd MINOR: connection: add conn_stop_tracking() to disable tracking by Willy Tarreau · 7 years ago
  31. 6a0a80a MINOR: connection: ensure conn_ctrl_close() also resets the fd by Willy Tarreau · 7 years ago
  32. f9ce57e MEDIUM: connection: make conn_sock_shutw() aware of lingering by Willy Tarreau · 7 years ago
  33. 1a0545f REORG: connection: rename CO_FL_DATA_* -> CO_FL_XPRT_* by Olivier Houchard · 7 years ago
  34. 794f9af MEDIUM: h1: reimplement the http/1 response parser for the gateway by Willy Tarreau · 7 years ago
  35. 306924e MINOR: http: add very simple header management based on double strings by Willy Tarreau · 7 years ago
  36. 4093a4d MINOR: h1: add struct h1m for basic HTTP/1 messages by Willy Tarreau · 7 years ago
  37. b289256 MEDIUM: http: make the chunk crlf parser only depend on the buffer by Willy Tarreau · 7 years ago
  38. e56cdd3 MEDIUM: http: make the chunk size parser only depend on the buffer by Willy Tarreau · 7 years ago
  39. 8740c8b REORG: http: move the HTTP/1 header block parser to h1.c by Willy Tarreau · 7 years ago
  40. db4893d REORG: http: move the HTTP/1 chunk parser to h1.{c,h} by Willy Tarreau · 7 years ago
  41. 0da5b3b REORG: http: move some very http1-specific parts to h1.{c,h} by Willy Tarreau · 7 years ago
  42. 0621da5 MINOR: buffer: make bo_getblk_nc() not return 2 for a full buffer by Willy Tarreau · 7 years ago
  43. 5a13351 BUG/MEDIUM: log: check result details truncated. by Emeric Brun · 7 years ago
  44. e67c4e5 MINOR: ist: add ist0() to add a trailing zero to a string. by Willy Tarreau · 7 years ago
  45. 41ab868 MINOR: channel: make the channel be a const in all {ci,co}_get* functions by Willy Tarreau · 7 years ago
  46. e0e734c MINOR: buffer: add bo_getblk() and bo_getblk_nc() by Willy Tarreau · 7 years ago
  47. 06d80a9 REORG: channel: finally rename the last bi_* / bo_* functions by Willy Tarreau · 7 years ago
  48. 5b9834f MINOR: buffer: add buffer_space_wraps() by Willy Tarreau · 7 years ago
  49. e5676e7 MINOR: buffer: add two functions to inject data into buffers by Willy Tarreau · 7 years ago
  50. 6634b63 MINOR: buffer: add a function to match against string patterns by Willy Tarreau · 7 years ago
  51. 7f564d2 MINOR: buffer: add bo_del() to delete a number of characters from output by Willy Tarreau · 7 years ago
  52. dea7c5c BUG/MINOR: tools: fix my_htonll() on x86_64 by Willy Tarreau · 7 years ago
  53. 9130a96 MINOR: checks: Add a new keyword to specify a SNI when doing SSL checks. by Olivier Houchard · 7 years ago
  54. 64cc49c MAJOR: servers: propagate server status changes asynchronously. by Emeric Brun · 7 years ago
  55. bf08beb MINOR: session: remove the list of streams from struct session by Willy Tarreau · 7 years ago
  56. c939835 MINOR: compiler: restore the likely() wrapper for gcc 5.x by Willy Tarreau · 7 years ago
  57. 2ba6727 MINOR: ist: add a macro to ease const array initialization by Willy Tarreau · 7 years ago
  58. 82967bf MINOR: connection: adjust CO_FL_NOTIFY_DATA after removal of flags by Willy Tarreau · 7 years ago
  59. 5531d57 MINOR: net_helper: add 64-bit read/write functions by Willy Tarreau · 7 years ago
  60. 2888c08 MINOR: net_helper: add write functions by Willy Tarreau · 7 years ago
  61. d5370e1 MINOR: net_helper: add functions to read from vectors by Willy Tarreau · 7 years ago
  62. 26488ad MINOR: buffer: add b_end() and b_to_end() by Willy Tarreau · 7 years ago
  63. 4a6425d MINOR: buffer: add b_del() to delete a number of characters by Willy Tarreau · 7 years ago
  64. 36eb3a3 MINOR: tools: make my_htonll() more efficient on x86_64 by Willy Tarreau · 7 years ago
  65. 05f5047 MINOR: listener: new function listener_release by Willy Tarreau · 7 years ago
  66. 2cc5bae MINOR: listeners: make listeners count consistent with reality by Willy Tarreau · 7 years ago
  67. 0de59fd MINOR: listeners: new function create_listeners by Willy Tarreau · 7 years ago
  68. 3179489 MINOR: unix: remove the now unused proto_uxst.h file by Willy Tarreau · 7 years ago
  69. 9d5be5c MINOR: protocols: register the ->add function and stop calling them directly by Willy Tarreau · 7 years ago
  70. 3228238 MINOR: protocols: always pass a "port" argument to the listener creation by Willy Tarreau · 7 years ago
  71. c4df59e MINOR: cli: add socket commands and config to prepend informational messages with severity by Andjelko Iharos · 7 years ago
  72. ed0d96c MINOR: net_helper: Inline functions meant to be inlined. by Olivier Houchard · 7 years ago
  73. d697596 MINOR: tasks: Move Lua notification from Lua to tasks by Thierry FOURNIER · 7 years ago
  74. 2da788e MEDIUM: xref/lua: Use xref for referencing cosocket relation between stream and lua by Thierry FOURNIER · 7 years ago
  75. 3c65b7a MINOR: xref: Add a new xref system by Thierry FOURNIER · 7 years ago
  76. ddcde19 MINOR: ssl: rework smp_fetch_ssl_fc_cl_str without internal ssl use by Emmanuel Hocdet · 7 years ago
  77. 21e9267 MINOR: fd: Add fd_update_events function by Christopher Faulet · 7 years ago
  78. 52a91d3 MEDIUM: check: server states and weight propagation re-work by Emeric Brun · 7 years ago
  79. de2075f MINOR: freq_ctr: Return the new value after an update by Christopher Faulet · 7 years ago
  80. d82b180 MINOR: fd: Use inlined functions to check fd state in fd_*_send/recv functions by Christopher Faulet · 7 years ago
  81. 8db2fdf MINOR: fd: Add fd_active function by Christopher Faulet · 7 years ago
  82. 6988f67 MINOR: http: Use a trash chunk to store decoded string of the HTTP auth header by Christopher Faulet · 7 years ago
  83. ca20d02 MINOR: stick-tables: Make static_table_key a struct variable instead of a pointer by Christopher Faulet · 7 years ago
  84. ad405f1 MINOR: buffers: Move swap_buffer into buffer.c and add deinit_buffer function by Christopher Faulet · 7 years ago
  85. 0132d06 MINOR: logs: Use dedicated function to init/deinit log buffers by Christopher Faulet · 7 years ago
  86. 748919a MINOR: chunks: Use dedicated function to init/deinit trash buffers by Christopher Faulet · 7 years ago
  87. 576c5aa MINOR: fd: Set owner and iocb field before inserting a new fd in the fdtab by Christopher Faulet · 7 years ago
  88. d531f88 MINOR: fd: Don't forget to reset fdtab[fd].update when a fd is added/removed by Christopher Faulet · 7 years ago
  89. f5b8adc MINOR: listeners: Change enable_listener and disable_listener into private functions by Christopher Faulet · 7 years ago
  90. 5580ba2 MINOR: listeners: Change listener_full and limit_listener into private functions by Christopher Faulet · 7 years ago
  91. ae459fd CLEANUP: memory: Remove unused function pool_destroy by Christopher Faulet · 7 years ago
  92. 4366476 MINOR: ssl: remove duplicate ssl_methods in struct bind_conf by Emmanuel Hocdet · 7 years ago
  93. bbae3f0 MEDIUM: connection: remove useless flag CO_FL_DATA_WR_SH by Willy Tarreau · 7 years ago
  94. cde5651 CLEANUP: connection: remove the unused conn_sock_shutw_pending() by Willy Tarreau · 7 years ago
  95. 54e917c MEDIUM: connection: remove useless flag CO_FL_DATA_RD_SH by Willy Tarreau · 7 years ago
  96. 5790eb0 MINOR: stream: provide a new stream creation function for connections by Willy Tarreau · 7 years ago
  97. 0b74eae MEDIUM: session: add a pointer to a struct task in the session by Willy Tarreau · 7 years ago
  98. ca36102 CLEANUP: listener: remove the unused handler field by Willy Tarreau · 7 years ago
  99. 87787ac MEDIUM: stream: make stream_new() allocate its own task by Willy Tarreau · 7 years ago
  100. 8e3c6ce MEDIUM: connection: get rid of data->init() which was not for data by Willy Tarreau · 7 years ago