]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: stream-int: replace si_cant_put() with si_rx_room_{blk,rdy}()
authorWilly Tarreau <w@1wt.eu>
Thu, 15 Nov 2018 10:08:52 +0000 (11:08 +0100)
committerWilly Tarreau <w@1wt.eu>
Sun, 18 Nov 2018 20:41:50 +0000 (21:41 +0100)
commitdb398435aaa210ff5cbe56892d0aa8491d3c5dfa
treec78a83901ea6df52cba29966099b5d0adc0cdedd
parentb26a6f97083138504abf3d61b1e0d698223a9dcb
MINOR: stream-int: replace si_cant_put() with si_rx_room_{blk,rdy}()

Remaining calls to si_cant_put() were all for lack of room and were
turned to si_rx_room_blk(). A few places where SI_FL_RXBLK_ROOM was
cleared by hand were converted to si_rx_room_rdy().

The now unused si_cant_put() function was removed.
17 files changed:
include/proto/stream_interface.h
src/cache.c
src/cli.c
src/dns.c
src/flt_spoe.c
src/hlua.c
src/log.c
src/map.c
src/memory.c
src/peers.c
src/proxy.c
src/server.c
src/ssl_sock.c
src/stats.c
src/stick_table.c
src/stream.c
src/stream_interface.c