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