1. 58a81ae BUG/MINOR: httpclient: CF_SHUTW_NOW should be tested with channel_is_empty() by William Lallemand · 2 years, 8 months ago
  2. 1eca894 BUG/MINOR: httpclient: process the response when received before the end of the request by William Lallemand · 2 years, 8 months ago
  3. a625b03 BUG/MINOR: httpclient: only check co_data() instead of HTTP_MSG_DATA by William Lallemand · 2 years, 8 months ago
  4. 211ea25 BUG/MINOR: logs: fix logsrv leaks on clean exit by Willy Tarreau · 2 years, 8 months ago
  5. 715c101 BUILD: httpclient: fix build without SSL by William Lallemand · 2 years, 8 months ago
  6. 71e3158 BUG/MINOR: httpclient: send the SNI using the host header by William Lallemand · 2 years, 8 months ago
  7. 97f69c6 BUG/MEDIUM: httpclient: must manipulate head, not first by William Lallemand · 2 years, 9 months ago
  8. c020b25 BUG/MINOR: httpclient: remove the UNUSED block when parsing headers by William Lallemand · 2 years, 9 months ago
  9. c8f1eb9 BUG/MINOR: httpclient: consume partly the blocks when necessary by William Lallemand · 2 years, 9 months ago
  10. 2b7dc4e BUG/MEDIUM: httpclient: don't consume data before it was analyzed by William Lallemand · 2 years, 9 months ago
  11. 3d43324 BUG/MINOR: httpclient: Set conn-stream/channel EOI flags at the end of request by Christopher Faulet · 2 years, 9 months ago
  12. cda94ac MAJOR: stream/conn_stream: Move the stream-interface into the conn-stream by Christopher Faulet · 3 years ago
  13. b91afea MINOR: httpclient: Always access the stream-int via the conn-stream by Christopher Faulet · 3 years ago
  14. f835dea MEDIUM: conn_stream: Add a pointer to the app object into the conn-stream by Christopher Faulet · 3 years ago
  15. 86e1c33 MEDIUM: applet: Set the conn-stream as appctx owner instead of the stream-int by Christopher Faulet · 3 years ago
  16. 13a35e5 MAJOR: conn_stream/stream-int: move the appctx to the conn-stream by Christopher Faulet · 3 years ago
  17. 5b4b6ca CLEANUP: httpclient: initialize the client in stage INIT not REGISTER by Willy Tarreau · 2 years, 9 months ago
  18. b4a4ef6 MINOR: httpclient/lua: ability to set a server timeout by William Lallemand · 2 years, 9 months ago
  19. 11adb1d BUG/MEDIUM: httpclient: limit transfers to the maximum available room by Willy Tarreau · 2 years, 9 months ago
  20. 2c8f984 CLEANUP: httpclient/cli: fix indentation alignment of the help message by Willy Tarreau · 2 years, 9 months ago
  21. 7b2e0ee MINOR: httpclient: sets an alternative destination by William Lallemand · 2 years, 9 months ago
  22. 5085bc3 BUG/MINOR: httpclient: reinit flags in httpclient_start() by William Lallemand · 2 years, 9 months ago
  23. de6ecc3 BUG/MINOR: httpclient/cli: display junk characters in vsn by William Lallemand · 2 years, 9 months ago
  24. fc59129 MINOR: httpclient: Don't limit data transfer to 1024 bytes by Christopher Faulet · 2 years, 11 months ago
  25. 6ced61d BUG/MEDIUM: httpclient: Xfer the request when the stream is created by Christopher Faulet · 2 years, 11 months ago
  26. 600985d BUG/MINOR: httpclient: Revisit HC request and response buffers allocation by Christopher Faulet · 2 years, 11 months ago
  27. bad9c8c BUG/MINOR: httpclient: set default Accept and User-Agent headers by William Lallemand · 2 years, 10 months ago
  28. e1e045f BUG/MINOR: httpclient: don't send an empty body by William Lallemand · 2 years, 10 months ago
  29. f03b53c BUG/MINOR: httpclient: allow to replace the host header by William Lallemand · 3 years ago
  30. 67b7784 BUG/MEDIUM: httpclient/cli: free of unallocated hc->req.uri by William Lallemand · 3 years ago
  31. db8a1f3 BUG/MEDIUM: httpclient: channel_add_input() must use htx->data by William Lallemand · 3 years, 1 month ago
  32. 933fe39 BUG/MINOR: httpclient/lua: rcv freeze when no request payload by William Lallemand · 3 years, 1 month ago
  33. 0f41c38 BUG/MINOR: httpclient: use a placeholder value for Host header by William Lallemand · 3 years, 1 month ago
  34. 0da616e MINOR: httpclient: request streaming with a callback by William Lallemand · 3 years, 1 month ago
  35. 16f16af MINOR: stream: Use backend stream-interface dst address instead of target_addr by Christopher Faulet · 3 years, 1 month ago
  36. dec25c3 MINOR: httpclient: support payload within a buffer by William Lallemand · 3 years, 1 month ago
  37. 34b3a93 MINOR: httpclient/cli: access should be only done from expert mode by William Lallemand · 3 years, 1 month ago
  38. bd6b4be CLEANUP: assorted typo fixes in the code and comments by Ilya Shipitsin · 3 years, 1 month ago
  39. 1df2042 BUILD: httpclient: include missing ssl_sock-t by Willy Tarreau · 3 years, 2 months ago
  40. 2a87900 MINOR: httpclient: destroy checks if a client was started but not stopped by William Lallemand · 3 years, 2 months ago
  41. 4d60184 BUG/MEDIUM: httpclient/lua: crash because of b_xfer and get_trash_chunk() by William Lallemand · 3 years, 2 months ago
  42. b8b1370 MINOR: httpclient: test if started during stop_and_destroy() by William Lallemand · 3 years, 2 months ago
  43. ecb83e1 MINOR: httpclient: stop_and_destroy() ask the applet to autokill by William Lallemand · 3 years, 2 months ago
  44. 739f90a MINOR: httpclient: set HTTPCLIENT_F_ENDED only in release by William Lallemand · 3 years, 2 months ago
  45. 03f5a1c MINOR: httpclient: destroy() must free the headers and the ists by William Lallemand · 3 years, 2 months ago
  46. 614e683 BUG/MEDIUM: httpclient: replace ist0 by istptr by William Lallemand · 3 years, 2 months ago
  47. 1123dde MINOR: httpclient: httpclient_ended() returns 1 if the client ended by William Lallemand · 3 years, 2 months ago
  48. 518878e MINOR: httpclient: httpclient_data() returns the available data by William Lallemand · 3 years, 2 months ago
  49. 79a3478 MINOR: httpclient: add the EOH when no headers where provided by William Lallemand · 3 years, 2 months ago
  50. e612446 MINOR: applet: remove the thread mask from appctx_new() by Willy Tarreau · 3 years, 2 months ago
  51. bc2ebfa MEDIUM: server: extend refcount for all servers by Amaury Denoyelle · 3 years, 3 months ago
  52. 957ab13 BUILD: httpclient: fix build without OpenSSL by William Lallemand · 3 years, 3 months ago
  53. 4463b17 BUG/MINOR: httpclient: fix Host header by William Lallemand · 3 years, 3 months ago
  54. 211c967 MINOR: httpclient: add the server to the proxy by William Lallemand · 3 years, 3 months ago
  55. cfcbe9e MINOR: httpclient: set verify none on the https server by William Lallemand · 3 years, 3 months ago
  56. 76ad371 BUG/MINOR: httpclient: remove deinit of the httpclient by William Lallemand · 3 years, 3 months ago
  57. 2a8fe8b MINOR: httpclient: cleanup the include files by William Lallemand · 3 years, 3 months ago
  58. 0d6f779 BUG/MINOR: httpclient: check if hdr_num is not 0 by William Lallemand · 3 years, 3 months ago
  59. dfc3f89 BUG/MINOR: httpclient/cli: change the appctx test in the callbacks by William Lallemand · 3 years, 3 months ago
  60. b702030 BUG/MINOR: httpclient: fix uninitialized sl variable by William Lallemand · 3 years, 3 months ago
  61. 0e72e40 BUG/MINOR: http_client: make sure to preset the proxy's default settings by Willy Tarreau · 3 years, 3 months ago
  62. 2484da5 MINOR: httpclient/cli: change the User-Agent to "HAProxy" by William Lallemand · 3 years, 3 months ago
  63. 03a4eb1 MINOR: httpclient/cli: implement a simple client over the CLI by William Lallemand · 3 years, 3 months ago
  64. 33b0d09 MINOR: httpclient: implement a simple HTTP Client API by William Lallemand · 3 years, 3 months ago
  65. 83614a9 MINOR: httpclient: initialize the proxy by William Lallemand · 3 years, 3 months ago