]> git.ipfire.org Git - thirdparty/haproxy.git/commit
CLEANUP: stconn: rename remaining management functions from cs_* to sc_*
authorWilly Tarreau <w@1wt.eu>
Fri, 27 May 2022 06:49:24 +0000 (08:49 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 27 May 2022 17:33:35 +0000 (19:33 +0200)
commit19c65a9ded30bd7c828b0f7fc90ec44f1b40f653
tree0ddd8ddb8f22d9a372bfdfcece84bb7bb58127ed
parenta0b58b537de61e2c27154212da577ec88c4ec02c
CLEANUP: stconn: rename remaining management functions from cs_* to sc_*

This is the end of the renaming for the generic SC management functions
and macros:

cs_applet_process() -> sc_applet_process()
cs_attach_applet()  -> sc_attach_applet()
cs_attach_mux()     -> sc_attach_mux()
cs_attach_strm()    -> sc_attach_strm()
cs_detach_app()     -> sc_detach_app()
cs_detach_endp()    -> sc_detach_endp()
cs_notify()         -> sc_notify()
cs_reset_endp()     -> sc_reset_endp()
cs_state_in()       -> sc_state_in()
cs_update()         -> sc_update()
cs_update_rx()      -> sc_update_rx()
cs_update_tx()      -> sc_update_tx()
IS_HTX_CS()         -> IS_HTX_SC()
15 files changed:
include/haproxy/conn_stream.h
include/haproxy/cs_utils.h
src/backend.c
src/check.c
src/cli.c
src/conn_stream.c
src/hlua.c
src/http_ana.c
src/mux_fcgi.c
src/mux_h1.c
src/mux_h2.c
src/mux_pt.c
src/payload.c
src/stream.c
src/tcpcheck.c