Gitiles
Code Review
Sign In
git01.mediatek.com
/
haproxy
/
6499b9d996ea8f57749021f56ed635c4688a727e
/
src
/
stream_interface.c
« Previous
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
a553ae9
MEDIUM: connection: replace conn_full_close() with cs_close()
by Willy Tarreau
· 7 years ago
9fbbff6
MEDIUM: connection: make conn_sock_shutw() aware of lingering
by Willy Tarreau
· 7 years ago
ecdb3fe
MINOR: conn_stream: modify cs_shut{r,w} API to pass the desired mode
by Willy Tarreau
· 7 years ago
4ff3b89
MINOR: connection: make conn_stream users also check for per-stream error flag
by Willy Tarreau
· 7 years ago
9aaf778
MAJOR: connection : Split struct connection into struct connection and struct conn_stream.
by Olivier Houchard
· 7 years ago
ccaa7de
MINOR: ssl/proto_http: Add keywords to take care of early data.
by Olivier Houchard
· 7 years ago
3b9c850
MINOR: stream-int: stop checking for useless connection flags in chk_snd_conn
by Willy Tarreau
· 7 years ago
f9ce57e
MEDIUM: connection: make conn_sock_shutw() aware of lingering
by Willy Tarreau
· 7 years ago
1a0545f
REORG: connection: rename CO_FL_DATA_* -> CO_FL_XPRT_*
by Olivier Houchard
· 7 years ago
06d80a9
REORG: channel: finally rename the last bi_* / bo_* functions
by Willy Tarreau
· 7 years ago
4ac4928
BUG/MINOR: stream-int: don't set MSG_MORE on SHUTW_NOW without AUTO_CLOSE
by Willy Tarreau
· 7 years ago
95fad5b
BUG/MAJOR: stream-int: don't re-arm recv if send fails
by Bin Wang
· 7 years ago
bbae3f0
MEDIUM: connection: remove useless flag CO_FL_DATA_WR_SH
by Willy Tarreau
· 7 years ago
54e917c
MEDIUM: connection: remove useless flag CO_FL_DATA_RD_SH
by Willy Tarreau
· 7 years ago
8ff5a8d
BUG/MINOR: stream-int: don't check the CO_FL_CURR_WR_ENA flag
by Willy Tarreau
· 7 years ago
2802b07
BUG/MAJOR: applet: fix a freeze if data is immedately forwarded.
by Emeric Brun
· 7 years ago
c730606
MAJOR: applet: applet scheduler rework.
by Emeric Brun
· 7 years ago
2686dca
CLEANUP: connection: remove unused CO_FL_WAIT_DATA
by Willy Tarreau
· 8 years ago
e39683c
BUG/MEDIUM: stream: fix client-fin/server-fin handling
by Hongbo Long
· 8 years ago
52821e2
BUG/MAJOR: stream-int: do not depend on connection flags to detect connection
by Willy Tarreau
· 8 years ago
8cf9c8e
BUG/MINOR: stream-int: automatically release SI_FL_WAIT_DATA on SHUTW_NOW
by Willy Tarreau
· 8 years ago
a73e59b
BUG/MAJOR: Fix how the list of entities waiting for a buffer is handled
by Christopher Faulet
· 8 years ago
796c5b7
OPTIM: stream-int: don't disable polling anymore on DONT_READ
by Willy Tarreau
· 8 years ago
8e0bb0a
MINOR: connection: add names for transport and data layers
by Willy Tarreau
· 8 years ago
958f074
BUG/MEDIUM: stream-int: avoid double-call to applet->release
by Willy Tarreau
· 9 years ago
eca572f
BUG/MEDIUM: applet: fix reporting of broken write situation
by Willy Tarreau
· 9 years ago
aa977ba
MINOR: stream-int: rename si_applet_done() to si_applet_wake_cb()
by Willy Tarreau
· 9 years ago
3355203
MEDIUM: stream-int: completely remove stream_int_update_embedded()
by Willy Tarreau
· 9 years ago
651e182
MEDIUM: stream-int: use the same stream notification function for applets and conns
by Willy Tarreau
· 9 years ago
615f28b
MINOR: stream-int: implement the stream_int_notify() function
by Willy Tarreau
· 9 years ago
ea3cc48
MEDIUM: stream-int: clean up the conditions to enable reading in si_conn_wake_cb
by Willy Tarreau
· 9 years ago
388a238
MINOR: stream-int: move the applet_pause call out of the stream updates
by Willy Tarreau
· 9 years ago
cbc3260
MINOR: stream-int: export stream_int_update_*
by Willy Tarreau
· 9 years ago
5d5b2fe
MEDIUM: stream-int: call stream_int_update() from si_update()
by Willy Tarreau
· 9 years ago
452c7d5
MEDIUM: stream-int: factor out the stream update functions
by Willy Tarreau
· 9 years ago
25f1310
MINOR: stream-int: implement a new stream_int_update() function
by Willy Tarreau
· 9 years ago
2f4e702
MEDIUM: stream-int: split stream_int_update_conn() into si- and conn-specific parts
by Willy Tarreau
· 9 years ago
c4b56e4
MINOR: stream-int: use si_release_endpoint() to close idle conns
by Willy Tarreau
· 9 years ago
5bc2cbf
CLEANUP: typo: bad indent
by Thierry FOURNIER
· 9 years ago
323a2d9
MEDIUM: stream-int: queue idle connections at the server
by Willy Tarreau
· 9 years ago
7a08d3b
CLEANUP: stream-int: remove stream_int_unregister_handler() and si_detach()
by Willy Tarreau
· 9 years ago
a9ff5e6
CLEANUP: stream-int: fix a few outdated comments about stream_int_register_handler()
by Willy Tarreau
· 9 years ago
0b1a454
MEDIUM: stream-int: pause the appctx if the task is woken up
by Willy Tarreau
· 10 years ago
fe12793
MEDIUM: applet: make the applets only use si_applet_{cant|want|stop}_{get|put}
by Willy Tarreau
· 10 years ago
563cc37
MAJOR: stream: use a regular ->update for all stream interfaces
by Willy Tarreau
· 10 years ago
828824a
MAJOR: applet: now call si_applet_done() instead of si_update() in I/O handlers
by Willy Tarreau
· 10 years ago
e5f8649
MEDIUM: stream-int: add a new function si_applet_done()
by Willy Tarreau
· 10 years ago
d45b9f8
REORG: stream-int: create si_applet_ops dedicated to applets
by Willy Tarreau
· 10 years ago
3057645
CLEANUP: applet: rename struct si_applet to applet
by Willy Tarreau
· 10 years ago
8a8d83b
REORG: applet: move the applet definitions out of stream_interface
by Willy Tarreau
· 10 years ago
a7513f5
MINOR: stream-int: make appctx_new() take the applet in argument
by Willy Tarreau
· 10 years ago
87b0966
REORG/MAJOR: session: rename the "session" entity to "stream"
by Willy Tarreau
· 10 years ago
6b5a9c2
CLEANUP: stream-int: remove inclusion of fd.h that is not used anymore
by Willy Tarreau
· 10 years ago
d85c485
REORG: connection: move conn_drain() to connection.c and rename it
by Willy Tarreau
· 10 years ago
f31fb07
MEDIUM: connection: make conn_drain() perform more controls
by Willy Tarreau
· 10 years ago
0a03c0f
MEDIUM: stream-int: make conn_si_send_proxy() use conn_sock_send()
by Willy Tarreau
· 10 years ago
1398aa1
MEDIUM: stream-int: replace xprt->shutw calls with conn_data_shutw()
by Willy Tarreau
· 10 years ago
4dfd54f
MINOR: stream-int: use conn_sock_shutw() to shutdown a connection
by Willy Tarreau
· 10 years ago
1140512
CLEANUP: stream-int: remove a redundant clearing of the linger_risk flag
by Willy Tarreau
· 10 years ago
78955f4
MEDIUM: session: simplify receive buffer allocator to only use the channel
by Willy Tarreau
· 10 years ago
afc8a22
CLEANUP: stream-int: limit usage of si_ic/si_oc
by Willy Tarreau
· 10 years ago
50fe03b
CLEANUP: stream-int: add si_opposite() to find the other stream interface
by Willy Tarreau
· 10 years ago
4e4292b
CLEANUP: stream-int: add si_ib/si_ob to dereference the buffers
by Willy Tarreau
· 10 years ago
07373b8
MEDIUM: stream-int: use si_task() to retrieve the task from the stream int
by Willy Tarreau
· 10 years ago
2bb4a96
REORG/MEDIUM: stream-int: introduce si_ic/si_oc to access channels
by Willy Tarreau
· 10 years ago
319f745
MINOR: channel: rename bi_erase() to channel_truncate()
by Willy Tarreau
· 10 years ago
b5051f8
MINOR: channel: rename bi_avail() to channel_recv_max()
by Willy Tarreau
· 10 years ago
3889fff
MINOR: channel: rename channel_full() to !channel_may_recv()
by Willy Tarreau
· 10 years ago
56efc48
OPTIM: stream-int: try to send pending spliced data
by Willy Tarreau
· 10 years ago
9b20c55
MEDIUM: stream-int: support splicing from applets
by Willy Tarreau
· 10 years ago
10fc09e
MAJOR: session: only allocate buffers when needed
by Willy Tarreau
· 10 years ago
bf883e0
MAJOR: session: implement a wait-queue for sessions who need a buffer
by Willy Tarreau
· 10 years ago
a69fc9f
BUG/MAJOR: stream-int: properly check the memory allocation return
by Willy Tarreau
· 10 years ago
9dc1c61
BUG/CRITICAL: http: don't update msg->sov once data start to leave the buffer
by Willy Tarreau
· 10 years ago
afb7683
MEDIUM: connection: Implement and extented PROXY Protocol V2
by David S
· 10 years ago
7e31273
MINOR: config: make the stream interface idle timer user-configurable
by Willy Tarreau
· 11 years ago
c5890e6
MEDIUM: stream-int: automatically disable CF_STREAMER flags after idle
by Willy Tarreau
· 11 years ago
7bed945
OPTIM: ssl: implement dynamic record size adjustment
by Willy Tarreau
· 11 years ago
Next »