1. 3c39a7d CLEANUP: connection: rename the wait_event.task field to .tasklet by Willy Tarreau · 5 years ago
  2. e573323 CLEANUP: build: rename some build macros to use the USE_* ones by Willy Tarreau · 5 years ago
  3. e179d0e MEDIUM: connections: Provide a xprt_ctx for each xprt method. by Olivier Houchard · 5 years ago
  4. 61840e7 BUG/MEDIUM: muxes: Don't dereference mux context if null in release functions by Christopher Faulet · 5 years ago
  5. 39a96ee MEDIUM: muxes: Be prepared to don't own connection during the release by Christopher Faulet · 5 years ago
  6. 73c1207 MINOR: muxes: Pass the context of the mux to destroy() instead of the connection by Christopher Faulet · 5 years ago
  7. 51f73eb MEDIUM: muxes: Add an optional input buffer during mux initialization by Christopher Faulet · 5 years ago
  8. 87a8f35 CLEANUP: muxes/stream-int: Remove flags CS_FL_READ_NULL and SI_FL_READ_NULL by Christopher Faulet · 5 years ago
  9. 203b2b0 MINOR: muxes: Report the Last read with a dedicated flag by Christopher Faulet · 5 years ago
  10. 9c9da5e MINOR: muxes: Don't bother to LIST_DEL(&conn->list) before calling conn_free(). by Olivier Houchard · 5 years ago
  11. 00f18a3 BUG/MINOR: server: fix logic flaw in idle connection list management by Willy Tarreau · 5 years ago
  12. 3d2ee55 CLEANUP: connection: rename conn->mux_ctx to conn->ctx by Willy Tarreau · 6 years ago
  13. 4f6516d CLEANUP: connection: rename subscription events values and event field by Willy Tarreau · 6 years ago
  14. d94f877 BUG/MINOR: mux_pt: Set CS_FL_WANT_ROOM when count is zero in rcv_buf() callback by Christopher Faulet · 6 years ago
  15. f502aca MEDIUM: mux: provide the session to the init() and attach() method. by Olivier Houchard · 6 years ago
  16. e0f24ee MINOR: connection: realign empty buffers in muxes, not transport layers by Willy Tarreau · 6 years ago
  17. 8706c81 BUG/MEDIUM: mux_pt: Always set CS_FL_RCV_MORE. by Olivier Houchard · 6 years ago
  18. 8defe4b MINOR: mux: add a "max_streams" method. by Olivier Houchard · 6 years ago
  19. b72d98a BUG/MEDIUM: mux_pt: Don't try to send if handshake is not done. by Olivier Houchard · 6 years ago
  20. 1ced485 BUG/MEDIUM: mux_pt: Don't forget to unsubscribe() on attach. by Olivier Houchard · 6 years ago
  21. 8ceae72 MEDIUM: init: use initcall for all fixed size pool creations by Willy Tarreau · 6 years ago
  22. 0108d90 MEDIUM: init: convert all trivial registration calls to initcalls by Willy Tarreau · 6 years ago
  23. 7c6f8b1 MAJOR: connections: Detach connections from streams. by Olivier Houchard · 6 years ago
  24. 060ed43 MINOR: mux: Add a destroy() method. by Olivier Houchard · 6 years ago
  25. d540b36 MINOR: mux: Add a new "avail_streams" method. by Olivier Houchard · 6 years ago
  26. b6c32ee MEDIUM: mux: Teach the mux_pt how to deal with idle connections. by Olivier Houchard · 6 years ago
  27. fafd398 MINOR: mux: implement a get_first_cs() method by Willy Tarreau · 6 years ago
  28. 4eb7d74 MEDIUM: stream-int: Try to read data even if channel's buffer seems to be full by Christopher Faulet · 6 years ago
  29. 53216e7 MEDIUM: connections: Don't directly mess with the polling from the upper layers. by Olivier Houchard · 6 years ago
  30. 83a0cd8 MINOR: connections: Introduce an unsubscribe method. by Olivier Houchard · 6 years ago
  31. 175a2bb MINOR: connection: pass the proxy when creating a connection by Willy Tarreau · 6 years ago
  32. af4021e MEDIUM: connections: Get rid of the recv() method. by Olivier Houchard · 6 years ago
  33. ad7f0ad BUG/MEDIUM: mux_pt: dereference the connection with care in mux_pt_wake() by Willy Tarreau · 6 years ago
  34. 32f61c0 MINOR: mux: Unlink ALPN and multiplexers to rather speak of mux protocols by Christopher Faulet · 6 years ago
  35. 2d5292a MINOR: mux: Add info about the supported side in alpn_mux_list structure by Christopher Faulet · 6 years ago
  36. d44a9b3 MEDIUM: mux: Remove const on the buffer in mux->snd_buf() by Christopher Faulet · 6 years ago
  37. 910b2bc MEDIUM: connections/mux: Revamp the send direction. by Olivier Houchard · 6 years ago
  38. 6ff2039 MINOR: connections/mux: Add a new "subscribe" method. by Olivier Houchard · 6 years ago
  39. 7f3225f MINOR: connection: add a flags argument to rcv_buf() by Willy Tarreau · 6 years ago
  40. d9cf540 MEDIUM: mux: make mux->rcv_buf() take a size_t for the count by Willy Tarreau · 6 years ago
  41. deccd11 MEDIUM: mux: make mux->snd_buf() take the byte count in argument by Willy Tarreau · 6 years ago
  42. 787db9a MEDIUM: connection: make xprt->snd_buf() take the byte count in argument by Willy Tarreau · 6 years ago
  43. a48c141 BUG/MAJOR: connection: refine the situations where we don't send shutw() by Willy Tarreau · 7 years ago
  44. 28f1cb9 MINOR: mux: add flags to describe a mux's capabilities by Willy Tarreau · 7 years ago
  45. 7fc96d5 MINOR: mux: Make sure every string is woken up after the handshake. by Olivier Houchard · 7 years ago
  46. ed339a3 BUG/MAJOR: mux_pt: don't dereference a connstream after ->wake() by Willy Tarreau · 7 years ago
  47. 7da120b MINOR: mux: Only define pipe functions on linux. by Olivier Houchard · 7 years ago
  48. 436d333 MEDIUM: connection: add a destroy callback by Willy Tarreau · 7 years ago
  49. 2c52a2b MEDIUM: connection: make mux->detach() release the connection by Willy Tarreau · 7 years ago
  50. 4b79524 MEDIUM: mux_pt: make cs_shutr() / cs_shutw() properly close the connection by Willy Tarreau · 7 years ago
  51. ecdb3fe MINOR: conn_stream: modify cs_shut{r,w} API to pass the desired mode by Willy Tarreau · 7 years ago
  52. 4ff3b89 MINOR: connection: make conn_stream users also check for per-stream error flag by Willy Tarreau · 7 years ago
  53. 9aaf778 MAJOR: connection : Split struct connection into struct connection and struct conn_stream. by Olivier Houchard · 7 years ago
  54. 7a3f0df MINOR: mux_pt: implement remaining mux_ops methods by Olivier Houchard · 7 years ago
  55. f649082 MINOR: mux: register the pass-through mux for any ALPN string by Willy Tarreau · 7 years ago
  56. 53a4766 MEDIUM: connection: start to introduce a mux layer between xprt and data by Willy Tarreau · 7 years ago