Gitiles
Code Review
Sign In
git01.mediatek.com
/
haproxy
/
a5470188db0092ab88018d110004fad9d111acd1
/
src
/
stream_interface.c
« Previous
78f5ff8
BUG/MEDIUM: stream-int: also wake the stream up on end of transfer
by Willy Tarreau
· 6 years ago
7ab99a3
BUG/MEDIUM: stream-int: always clear CS_FL_WANT_ROOM before receiving
by Willy Tarreau
· 6 years ago
fd0c2dc
BUG/MEDIUM: stream_interface: Don't report read0 if we were not connected.
by Olivier Houchard
· 6 years ago
f061e42
BUG/MINOR: stream-int: Process read0 even if no data was received in si_cs_recv
by Christopher Faulet
· 6 years ago
d247be0
BUG/MEDIUM: connections: Split CS_FL_RCV_MORE into 2 flags.
by Olivier Houchard
· 6 years ago
674e0ad
BUG/MEDIUM: stream-int: don't mark as blocked an empty buffer on Rx
by Willy Tarreau
· 6 years ago
c490efd
BUG/MEDIUM: stream_interface: Make REALLY sure we read all the data.
by Olivier Houchard
· 6 years ago
24b8fe8
BUG/MEDIUM: stream_interface: Make sure we read all the data available.
by Olivier Houchard
· 6 years ago
3e1f68b
BUG/MEDIUM: stream_interface: Don't check if the handshake is done.
by Olivier Houchard
· 6 years ago
55dec0d
MINOR: stream-int: remove useless checks on CS and conn flags in si_cs_send()
by Christopher Faulet
· 6 years ago
3f76f4c
BUG/MINOR: stream-int: Don't call snd_buf() if there are still data in the pipe
by Christopher Faulet
· 6 years ago
e4acd5e
MINOR: stream-int: Notify caller when an error is reported after a rcv_buf()
by Christopher Faulet
· 6 years ago
5ed7aab
MINOR: stream-int: Notify caller when an error is reported after a rcv_pipe()
by Christopher Faulet
· 6 years ago
effc375
MINOR: conn_stream: Add a flag to notify the SI some data were received
by Christopher Faulet
· 6 years ago
72d9125
MINOR: conn_stream: Add a flag to notify the mux it must respect the reserve
by Christopher Faulet
· 6 years ago
c6618d6
MINOR: conn_stream: Add a flag to notify the mux it should flush its buffers
by Christopher Faulet
· 6 years ago
7c6f8b1
MAJOR: connections: Detach connections from streams.
by Olivier Houchard
· 6 years ago
db39843
MINOR: stream-int: replace si_cant_put() with si_rx_room_{blk,rdy}()
by Willy Tarreau
· 6 years ago
b26a6f9
MEDIUM: stream-int: make use of si_rx_chan_{rdy,blk} to control the stream-int from the channel
by Willy Tarreau
· 6 years ago
47baeb8
MEDIUM: stream-int: unconditionally call si_chk_rcv() in update and notify
by Willy Tarreau
· 6 years ago
abb5d42
MEDIUM: stream-int: use si_rx_shut_blk() to indicate the SI is closed
by Willy Tarreau
· 6 years ago
186dcdd
MINOR: stream-int: automatically mark applets as ready if they block on the channel
by Willy Tarreau
· 6 years ago
dd5621a
MEDIUM: stream-int: update the endp polling status only at the end of si_cs_recv()
by Willy Tarreau
· 6 years ago
8bb2ffb
MINOR: stream-int: replace si_{want,stop}_put() with si_rx_endp_{more,done}()
by Willy Tarreau
· 6 years ago
32742fd
MINOR: stream-int: use si_rx_blocked()/si_tx_blocked() to check readiness
by Willy Tarreau
· 6 years ago
05b9b64
MINOR: stream-int: replace SI_FL_WANT_PUT with !SI_FL_RX_WAIT_EP
by Willy Tarreau
· 6 years ago
d0f5bbc
MINOR: stream-int: rename SI_FL_WAIT_ROOM to SI_FL_RXBLK_ROOM
by Willy Tarreau
· 6 years ago
89b6a2b
MINOR: stream-int: relax the forwarding rules in stream_int_notify()
by Willy Tarreau
· 6 years ago
6b1379f
MINOR: stream-int: make conn_si_send_proxy() use cs_get_first()
by Willy Tarreau
· 6 years ago
ffb1205
BUG/MINOR: stream-int: make sure not to go through the rcv_buf path after splice()
by Willy Tarreau
· 6 years ago
81464b4
BUG/MEDIUM: stream-int: clear CO_FL_WAIT_ROOM after splicing data in
by Willy Tarreau
· 6 years ago
f6975aa
BUG/MEDIUM: stream-int: make failed splice_in always subscribe to recv
by Willy Tarreau
· 6 years ago
691fe39
BUG/MEDIUM: stream-int: convert some co_data() checks to channel_is_empty()
by Willy Tarreau
· 6 years ago
f26c26c
BUG/MEDIUM: stream-int: change the way buffer room is requested by a stream-int
by Willy Tarreau
· 6 years ago
4eb7d74
MEDIUM: stream-int: Try to read data even if channel's buffer seems to be full
by Christopher Faulet
· 6 years ago
b3e0de4
MEDIUM: stream-int: Rely only on SI_FL_WAIT_ROOM to stop data receipt
by Christopher Faulet
· 6 years ago
d0d40eb
CLEANUP: stream-int: remove the now unused si->update() function
by Willy Tarreau
· 6 years ago
bf89ff3
MEDIUM: stream-int: make stream_int_update() aware of the lower layers
by Willy Tarreau
· 6 years ago
d14844a
MINOR: stream-int: replace si_update() with si_update_both()
by Willy Tarreau
· 6 years ago
abf531c
MEDIUM: stream-int: always call si_chk_rcv() when we make room in the buffer
by Willy Tarreau
· 6 years ago
1f9de21
MEDIUM: stream-int: make SI_FL_WANT_PUT reflect CF_DONT_READ
by Willy Tarreau
· 6 years ago
1bdb598
MINOR: stream-int: factor the SI_ST_EST state test into si_chk_rcv()
by Willy Tarreau
· 6 years ago
96aadd5
MEDIUM: stream-int: temporarily make si_chk_rcv() take care of SI_FL_WAIT_ROOM
by Willy Tarreau
· 6 years ago
43e69dc
MINOR: stream-int: make use of si_done_{get,put}() in shut{w,r}
by Willy Tarreau
· 6 years ago
af4f6f6
MINOR: stream-int: use si_cant_put() instead of setting SI_FL_WAIT_ROOM
by Willy Tarreau
· 6 years ago
0cd3bd6
MINOR: stream-int: rename si_applet_{want|stop|cant}_{get|put}
by Willy Tarreau
· 6 years ago
b69f171
BUG/MEDIUM: stream-int: don't wake up for nothing during SI_ST_CON
by Willy Tarreau
· 6 years ago
8ccd208
CLEANUP: stream-int: retro-document si_cs_io_cb()
by Willy Tarreau
· 6 years ago
1d0b706
BUG/MAJOR: stream-int: don't call si_cs_recv() in stream_int_chk_rcv_conn()
by Willy Tarreau
· 6 years ago
908d26f
MINOR: stream-int: don't needlessly call si_cs_send() in si_cs_process()
by Willy Tarreau
· 6 years ago
0dfccb2
MINOR: stream-int: make stream_int_notify() not wake the tasklet up
by Willy Tarreau
· 6 years ago
33a09a5
MINOR: stream-int: don't needlessly call tasklet_wakeup() in stream_int_chk_snd_conn()
by Willy Tarreau
· 6 years ago
eafd8eb
MEDIUM: stream-int: call si_cs_process() in stream_int_update_conn
by Willy Tarreau
· 6 years ago
85f8901
MEDIUM: stream-int: make si_update() synchronize flag changes before the I/O
by Willy Tarreau
· 6 years ago
581abd3
MEDIUM: stream-int: replace channel_alloc_buffer() with si_alloc_ibuf() everywhere
by Willy Tarreau
· 6 years ago
ede3d88
MEDIUM: channel: merge back flags CF_WRITE_PARTIAL and CF_WRITE_EVENT
by Willy Tarreau
· 6 years ago
955188d
BUG/MEDIUM: stream-int: don't set SI_FL_WAIT_ROOM on CF_READ_DONTWAIT
by Christopher Faulet
· 6 years ago
31f04e4
MINOR: stream_interface: Avoid calling si_cs_send/recv if not needed.
by Olivier Houchard
· 6 years ago
53216e7
MEDIUM: connections: Don't directly mess with the polling from the upper layers.
by Olivier Houchard
· 6 years ago
fa8aa86
MEDIUM: connections: Change struct wait_list to wait_event.
by Olivier Houchard
· 6 years ago
21df6cc
MINOR: h2/stream_interface: Reintroduce te wake() method.
by Olivier Houchard
· 6 years ago
0e367bb
BUG/MEDIUM: process_stream: Don't use si_cs_io_cb() in process_stream().
by Olivier Houchard
· 6 years ago
874a35c
DOC: Fix typos in lua documentation
by Bertrand Jacquin
· 6 years ago
7138455
MINOR: conn_streams: Remove wait_list from conn_streams.
by Olivier Houchard
· 6 years ago
c2aa711
MEDIUM: stream_interfaces: Starts receiving from the upper layers.
by Olivier Houchard
· 6 years ago
f653528
MEDIUM: stream_interface: Make recv() subscribe when more data is needed.
by Olivier Houchard
· 6 years ago
af4021e
MEDIUM: connections: Get rid of the recv() method.
by Olivier Houchard
· 6 years ago
4cf7fb1
MEDIUM: connections/mux: Add a recv and a send+recv wait list.
by Olivier Houchard
· 6 years ago
c7ffa91
BUG/MEDIUM: stream_interface: try to call si_cs_send() earlier.
by Olivier Houchard
· 6 years ago
80c5679
BUG/MEDIUM: stream_interface: Call the wake callback after sending.
by Olivier Houchard
· 6 years ago
a6ff035
BUG/MEDIUM: stream-int: Check if the conn_stream exist in si_cs_io_cb.
by Olivier Houchard
· 6 years ago
8f0b4c6
MINOR: stream_interface: Give stream_interface its own wait_list.
by Olivier Houchard
· 6 years ago
91894cb
MINOR: stream_interface: Don't use si_cs_send() as a task handler.
by Olivier Houchard
· 6 years ago
e1c6dbc
MINOR: connections/mux: Add the wait reason(s) to wait_list.
by Olivier Houchard
· 6 years ago
ed0f207
MINOR: connections: Get rid of txbuf.
by Olivier Houchard
· 6 years ago
511efea
MINOR: connections: Make rcv_buf mandatory and nuke cs_recv().
by Olivier Houchard
· 6 years ago
7c42eac
BUG/MEDIUM: stream_int: Don't check CO_FL_SOCK_RD_SH flag to trigger cs receive
by Christopher Faulet
· 7 years ago
063f786
MINOR: conn_stream: add cs_send() as a default snd_buf() function
by Christopher Faulet
· 6 years ago
171d5f2
BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full
by Willy Tarreau
· 6 years ago
67b1e78
MEDIUM: stream-int: automatically call si_cs_recv_cb() if the cs has data on wake()
by Willy Tarreau
· 7 years ago
11c9aa4
MEDIUM: conn_stream: add cs_recv() as a default rcv_buf() function
by Willy Tarreau
· 7 years ago
8318885
MINOR: connection: simplify subscription by adding a registration function
by Willy Tarreau
· 6 years ago
910b2bc
MEDIUM: connections/mux: Revamp the send direction.
by Olivier Houchard
· 6 years ago
83061a8
MAJOR: chunks: replace struct chunk with struct buffer
by Willy Tarreau
· 6 years ago
843b7cb
MEDIUM: chunks: make the chunk struct's fields match the buffer struct
by Willy Tarreau
· 6 years ago
c9fa048
MAJOR: buffer: finalize buffer detachment
by Willy Tarreau
· 6 years ago
77e478c
MINOR: stream-int: use the new buffer API
by Willy Tarreau
· 6 years ago
d760eec
MINOR: buffer: replace buffer_not_empty() with b_data() or c_data()
by Willy Tarreau
· 6 years ago
337ea57
MINOR: connection: add a new receive flag : CO_RFL_BUF_WET
by Willy Tarreau
· 6 years ago
7f3225f
MINOR: connection: add a flags argument to rcv_buf()
by Willy Tarreau
· 6 years ago
deccd11
MEDIUM: mux: make mux->snd_buf() take the byte count in argument
by Willy Tarreau
· 6 years ago
bcbd393
MINOR: channel/buffer: replace b_{adv,rew} with c_{adv,rew}
by Willy Tarreau
· 6 years ago
6fa63d9
MINOR: early data: Don't rely on CO_FL_EARLY_DATA to wake up streams.
by Olivier Houchard
· 7 years ago
b78b80e
BUG/MINOR: stream-int: don't try to receive again after receiving an EOS
by Willy Tarreau
· 7 years ago
6577b48
BUG/MEDIUM: stream-int: always set SI_FL_WAIT_ROOM on CS_FL_RCV_MORE
by Willy Tarreau
· 7 years ago
7fc96d5
MINOR: mux: Make sure every string is woken up after the handshake.
by Olivier Houchard
· 7 years ago
62dd698
BUG/MINOR: stream-int: don't try to read again when CF_READ_DONTWAIT is set
by Willy Tarreau
· 7 years ago
e9bed53
MINOR: ssl: Make sure we don't shutw the connection before the handshake.
by Olivier Houchard
· 7 years ago
c5a9d5b
BUG/MEDIUM: stream-int: Don't loss write's notifs when a stream is woken up
by Christopher Faulet
· 7 years ago
ecd2e15
BUG/MINOR: stream-int: don't set MSG_MORE on closed request path
by Willy Tarreau
· 7 years ago
Next »