]> git.ipfire.org Git - thirdparty/haproxy.git/commit
CLEANUP: stconn: rename final state manipulation functions from cs_* to sc_*
authorWilly Tarreau <w@1wt.eu>
Fri, 27 May 2022 07:03:30 +0000 (09:03 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 27 May 2022 17:33:35 +0000 (19:33 +0200)
commit74568cf023050ae9ec3b34c2ad08a2ed11b66a6a
treed98558e819a0033c55bddd6c0cc69fa8373b4e89
parentf61dd19284b4a2a588b639f51afd833a88e335e8
CLEANUP: stconn: rename final state manipulation functions from cs_* to sc_*

This applies the following renaming. It's a bit large but pretty
mechanical:

cs_state -> sc_state  (enum)

cs_alloc_ibuf() -> sc_alloc_ibuf()
cs_is_conn_error() -> sc_is_conn_error()
cs_opposite() -> sc_opposite()
cs_report_error() -> sc_report_error()
cs_set_state() -> sc_set_state()
cs_state_bit() -> sc_state_bit()
cs_state_in() -> sc_state_in()
cs_state_str() -> sc_state_str()
15 files changed:
include/haproxy/conn_stream-t.h
include/haproxy/cs_utils.h
include/haproxy/stream-t.h
src/applet.c
src/backend.c
src/cli.c
src/conn_stream.c
src/connection.c
src/dns.c
src/flt_spoe.c
src/hlua.c
src/mux_fcgi.c
src/peers.c
src/sink.c
src/stream.c