1. 7d58b4d BUG/MEDIUM: standard: Fix memory leak in str2ip2() by Tim Duesterhus · 6 years ago
  2. a331544 BUG/MINOR: time/threads: ensure the adjusted time is always correct by Willy Tarreau · 6 years ago
  3. 11559a7 MINOR: fd: reorder fd_add_to_fd_list() by Willy Tarreau · 6 years ago
  4. 3a8263f MINOR: fd: remove the unneeded last CAS when adding an fd to the list by Willy Tarreau · 6 years ago
  5. abeaff2 BUG/MINOR: fd/threads: properly dereference fdcache as volatile by Willy Tarreau · 6 years ago
  6. 4cc67a2 MINOR: fd: move the fd_{add_to,rm_from}_fdlist functions to fd.c by Willy Tarreau · 6 years ago
  7. 62a627a MEDIUM: poller: use atomic ops to update the fdtab mask by Willy Tarreau · 6 years ago
  8. 4d84186 MEDIUM: fd: make updt_fd_polling() use atomics by Willy Tarreau · 6 years ago
  9. 1b76a6d CLEANUP: fd: remove the now unused fd_compute_new_polled_status() function by Willy Tarreau · 6 years ago
  10. d4daeac MINOR: select: get rid of the now useless fd_compute_new_polled_status() by Willy Tarreau · 6 years ago
  11. 1394eb0 MINOR: poll: get rid of the now useless fd_compute_new_polled_status() by Willy Tarreau · 6 years ago
  12. 7d24fad MINOR: kqueue: get rid of the now useless fd_compute_new_polled_status() by Willy Tarreau · 6 years ago
  13. 038e54c MINOR: epoll: get rid of the now useless fd_compute_new_polled_status() by Willy Tarreau · 6 years ago
  14. 7ac0e35 MAJOR: fd: compute the new fd polling state out of the fd lock by Willy Tarreau · 6 years ago
  15. 1256836 MEDIUM: fd/threads: Make sure we don't miss a fd cache entry. by Olivier Houchard · 6 years ago
  16. 4815c8c MAJOR: fd/threads: Make the fdcache mostly lockless. by Olivier Houchard · 6 years ago
  17. cf975d4 MINOR: pools/threads: Implement lockless memory pools. by Olivier Houchard · 6 years ago
  18. 5266b3e MINOR: threads: add test and set/reset operations by Willy Tarreau · 6 years ago
  19. f61f0cb MINOR: threads: Introduce double-width CAS on x86_64 and arm. by Olivier Houchard · 7 years ago
  20. 928fbfa MINOR: compiler: introduce offsetoff(). by Olivier Houchard · 6 years ago
  21. 25ae45a MINOR: early data: Never remove the CO_FL_EARLY_DATA flag. by Olivier Houchard · 7 years ago
  22. 6fa63d9 MINOR: early data: Don't rely on CO_FL_EARLY_DATA to wake up streams. by Olivier Houchard · 7 years ago
  23. 5fa300d MINOR: init: make stdout unbuffered by Olivier Houchard · 6 years ago
  24. e8ade38 MINOR: spoe: Add max-waiting-frames directive in spoe-agent configuration by Christopher Faulet · 6 years ago
  25. 0b89f72 MINOR: spoa_example: Count the number of frames processed by each worker by Christopher Faulet · 6 years ago
  26. b077cdc MEDIUM: spoe: Use an ebtree to manage idle applets by Christopher Faulet · 6 years ago
  27. 8f82b20 MINOR: spoe: Count the number of frames waiting for an ack for each applet by Christopher Faulet · 6 years ago
  28. 6f9ea4f MINOR: spoe: Replace sending_rate by a frequency counter by Christopher Faulet · 6 years ago
  29. fce747b MINOR: spoe: Always link a SPOE context with the applet processing it by Christopher Faulet · 6 years ago
  30. 4209779 MINOR: spoe: Remove check on min_applets number when a SPOE context is queued by Christopher Faulet · 6 years ago
  31. 9cdca97 BUG/MEDIUM: spoe: Allow producer to read and to forward shutdown on request side by Christopher Faulet · 6 years ago
  32. d5216d4 BUG/MEDIUM: spoe: Always try to receive or send the frame to detect shutdowns by Christopher Faulet · 6 years ago
  33. f643b80 MINOR: introduce proxy-v2-options for send-proxy-v2 by Emmanuel Hocdet · 6 years ago
  34. 6fd698f DOC: don't suggest using http-server-close by Lukas Tribus · 6 years ago
  35. 4979592 BUG/MINOR: epoll/threads: only call epoll_ctl(DEL) on polled FDs by Willy Tarreau · 6 years ago
  36. 6778b27 MINOR: stick-tables: Adds support for new "gpc1" and "gpc1_rate" counters. by Frédéric Lécaille · 6 years ago
  37. f51bac2 BUG/MINOR: threads: Update labels array because of changes in lock_label enum by Christopher Faulet · 6 years ago
  38. a9786b6 MINOR: fd: pass the iocb and owner to fd_insert() by Willy Tarreau · 6 years ago
  39. fc6eea4 MEDIUM: poll: don't use the old FD state anymore by Willy Tarreau · 6 years ago
  40. 56dd12a MEDIUM: select: don't use the old FD state anymore by Willy Tarreau · 6 years ago
  41. 82b37d7 MEDIUM: fd: use atomic ops for hap_fd_{clr,set} and remove poll_lock by Willy Tarreau · 6 years ago
  42. d51a507 MEDIUM: select: make use of hap_fd_* functions by Willy Tarreau · 6 years ago
  43. 322e6c7 MINOR: fd: move the hap_fd_{clr,set,isset} functions to fd.h by Willy Tarreau · 6 years ago
  44. 745c60e CLEANUP: fd: remove the unused "new" field by Willy Tarreau · 6 years ago
  45. 2d3c2db MINOR: poll: more accurately compute the new maxfd in the loop by Willy Tarreau · 6 years ago
  46. f2b5c99 CLEANUP: fd/threads: remove the now unused fdtab_lock by Willy Tarreau · 6 years ago
  47. 173d995 MEDIUM: polling: start to move maxfd computation to the pollers by Willy Tarreau · 6 years ago
  48. c5532ac MINOR: fd: don't report maxfd in alert messages by Willy Tarreau · 6 years ago
  49. ce036bc MINOR: polling: make epoll and kqueue not depend on maxfd anymore by Willy Tarreau · 6 years ago
  50. ccea35c BUG/MINOR: cli: use global.maxsock and not maxfd to list all FDs by Willy Tarreau · 6 years ago
  51. a41d531 MINOR: config: Enable tracking of up to MAX_SESS_STKCTR stick counters. by Frédéric Lécaille · 6 years ago
  52. 1478aa7 MEDIUM: sample: Add IPv6 support to the ipmask converter by Tim Duesterhus · 6 years ago
  53. b814da6 MINOR: config: Add support for ARGT_MSK6 by Tim Duesterhus · 6 years ago
  54. 4718517 MINOR: standard: Add str2mask6 function by Tim Duesterhus · 6 years ago
  55. 8575f72 CLEANUP: standard: Use len2mask4 in str2mask by Tim Duesterhus · 6 years ago
  56. 92bb034 CLEANUP: Fix typo in ARGT_MSK6 comment by Tim Duesterhus · 6 years ago
  57. bf5ce02 BUG/MINOR: sample: Fix output type of c_ipv62ip by Tim Duesterhus · 6 years ago
  58. ec6b0a2 CLEANUP: sample: Fix outdated comment about sample casts functions by Tim Duesterhus · 6 years ago
  59. c555ee0 CLEANUP: sample: Fix comment encoding of sample.c by Tim Duesterhus · 6 years ago
  60. 727c89b BUILD: kqueue/threads: Add test on MAX_THREADS to avoid warnings when complied without threads by Christopher Faulet · 6 years ago
  61. 3e805ed BUILD: epoll/threads: Add test on MAX_THREADS to avoid warnings when complied without threads by Christopher Faulet · 6 years ago
  62. da18b9d MINOR: threads: Use __decl_hathreads instead of #ifdef/#endif by Christopher Faulet · 6 years ago
  63. 13b007d BUG/MINOR: kqueue/threads: Don't forget to close kqueue_fd[tid] on each thread by Christopher Faulet · 6 years ago
  64. 23d86d1 BUG/MEDIUM: checks: Don't try to release undefined conn_stream when a check is freed by Christopher Faulet · 6 years ago
  65. 8d01fd6 BUG/MEDIUM: threads/server: Fix deadlock in srv_set_stopping/srv_set_admin_flag by Christopher Faulet · 6 years ago
  66. c20d737 BUG/MINOR: threads: always set an owner to the thread_sync pipe by Willy Tarreau · 6 years ago
  67. 0048dd0 MINOR: threads: Fix build when we're not compiling with threads. by Olivier Houchard · 6 years ago
  68. 46ec48b BUG/MINOR: mworker: only write to pidfile if it exists by Willy Tarreau · 6 years ago
  69. 1605c7a BUG/MEDIUM: threads/mworker: fix a race on startup by Willy Tarreau · 6 years ago
  70. 7a2364d BUG/MEDIUM: kqueue/threads: use one kqueue_fd per thread by Willy Tarreau · 6 years ago
  71. d9e7e36 BUG/MEDIUM: epoll/threads: use one epoll_fd per thread by Willy Tarreau · 6 years ago
  72. c9c8378 MINOR: fd: add a bitmask to indicate that an FD is known by the poller by Willy Tarreau · 6 years ago
  73. ebc78d7 BUG/MEDIUM: fd: maintain a per-thread update mask by Willy Tarreau · 6 years ago
  74. 32467fe BUG/MEDIUM: threads/polling: Use fd_cache_mask instead of fd_cache_num by Christopher Faulet · 6 years ago
  75. 69553fe MINOR: threads/fd: Use a bitfield to know if there are FDs for a thread in the FD cache by Christopher Faulet · 6 years ago
  76. d80cb4e MINOR: global: add some global activity counters to help debugging by Willy Tarreau · 6 years ago
  77. 421f02e MINOR: threads: add a MAX_THREADS define instead of LONGBITS by Willy Tarreau · 6 years ago
  78. f4571a0 MINOR: global/threads: move cpu_map at the end of the global struct by Willy Tarreau · 6 years ago
  79. e9bad0a MINOR: servers: Don't report duplicate dyncookies for disabled servers. by Olivier Houchard · 6 years ago
  80. 5548291 BUG/MEDIUM: peers: fix expire date wasn't updated if entry is modified remotely. by Emeric Brun · 6 years ago
  81. a792a0a MINOR: sample: add date_us sample by Etienne Carriere · 6 years ago
  82. cc35923 BUG/MINOR: poll: too large size allocation for FD events by Willy Tarreau · 6 years ago
  83. 260bf5c CONTRIB: debug: fix a few flags definitions by Willy Tarreau · 6 years ago
  84. 4a326cb DOC: clarify the scope of ssl_fc_is_resumed by Jérôme Magnin · 6 years ago
  85. 333694d MINOR: spoe: Don't queue a SPOE context if nothing is sent by Christopher Faulet · 6 years ago
  86. 336d3ef MINOR: spoe: add register-var-names directive in spoe-agent configuration by Christopher Faulet · 7 years ago
  87. d651ba1 BUG/MEDIUM: stream: properly handle client aborts during redispatch by Willy Tarreau · 6 years ago
  88. ec5e845 BUILD/MINOR: ancient gcc versions atomic fix by David Carlier · 6 years ago
  89. 1a69af6 MINOR: hathreads: add support for gcc < 4.7 by Willy Tarreau · 6 years ago
  90. 29f690c BUG/MEDIUM: mworker: execvp failure depending on argv[0] by William Lallemand · 6 years ago
  91. 2ec2db9 MINOR: dns: Handle SRV record weight correctly. by Olivier Houchard · 6 years ago
  92. 119a5f1 BUG/MINOR: lua: Fix return value of Socket.settimeout by Tim Duesterhus · 6 years ago
  93. 6edab86 BUG/MEDIUM: lua: Fix IPv6 with separate port support for Socket.connect by Tim Duesterhus · 6 years ago
  94. b33754c DOC: lua: Fix typos in comments of hlua_socket_receive by Tim Duesterhus · 6 years ago
  95. c6e377e BUG/MINOR: lua: Fix default value for pattern in Socket.receive by Tim Duesterhus · 6 years ago
  96. 99b90af BUG/MEDIUM: ssl: cache doesn't release shctx blocks by William Lallemand · 6 years ago
  97. e2a3496 CLEANUP: rbtree: remove by Olivier Houchard · 6 years ago
  98. 5d4cafb BUILD: ssl: silence a warning when building without NPN nor ALPN support by Willy Tarreau · 6 years ago
  99. 4a28da1 BUG/MEDIUM: h2: properly handle the END_STREAM flag on empty DATA frames by Willy Tarreau · 6 years ago
  100. 8ec1406 MEDIUM: h2: prepare a graceful shutdown when the frontend is stopped by Willy Tarreau · 7 years ago