commit | 26256f86e1aeb4253df5cb40c40ab0dee510a40a | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Mon Sep 14 11:40:13 2020 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri Dec 04 14:41:48 2020 +0100 |
tree | 2547c180ea8000ddcf9afb9cc3ddd834f6380f69 | |
parent | afc02a44361486928533db02d6a317e727df8f0e [diff] |
MINOR: stream: Pass an optional input buffer when a stream is created It is now possible to set the buffer used by the channel request buffer when a stream is created. It may be useful if input data are already received, instead of waiting the first call to the mux rcv_buf() callback. This change is mandatory to support H1 connection with no stream attached. For now, the multiplexers don't pass any buffer. BUF_NULL is thus used to call stream_create_from_cs().