mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-11 15:42:43 +02:00
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()
This commit is contained in:
@@ -2768,7 +2768,7 @@ int pcli_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
|
||||
*/
|
||||
if (!sc_conn_ready(s->scb)) {
|
||||
s->srv_conn = NULL;
|
||||
if (cs_reset_endp(s->scb) < 0) {
|
||||
if (sc_reset_endp(s->scb) < 0) {
|
||||
if (!s->conn_err_type)
|
||||
s->conn_err_type = STRM_ET_CONN_OTHER;
|
||||
if (s->srv_error)
|
||||
|
||||
Reference in New Issue
Block a user