mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-05-09 19:28:02 +00:00
MINOR: mux_pt: Don't try to remove the connection from the idle list.
Don't bother trying to remove the connection from the idle list, as the only connections the mux_pt handles are now the TCP-mode connections, and those are never added to the idle list.
This commit is contained in:
parent
7fa5562190
commit
a48e7ece48
10
src/mux_pt.c
10
src/mux_pt.c
@ -241,11 +241,6 @@ static void mux_pt_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
|
|||||||
(mode == CS_SHR_DRAIN));
|
(mode == CS_SHR_DRAIN));
|
||||||
if (cs->flags & CS_FL_SHW)
|
if (cs->flags & CS_FL_SHW)
|
||||||
conn_full_close(cs->conn);
|
conn_full_close(cs->conn);
|
||||||
/* Maybe we've been put in the list of available idle connections,
|
|
||||||
* get ouf of here
|
|
||||||
*/
|
|
||||||
LIST_DEL(&cs->conn->list);
|
|
||||||
LIST_INIT(&cs->conn->list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mux_pt_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
|
static void mux_pt_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
|
||||||
@ -259,11 +254,6 @@ static void mux_pt_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
|
|||||||
conn_sock_shutw(cs->conn, (mode == CS_SHW_NORMAL));
|
conn_sock_shutw(cs->conn, (mode == CS_SHW_NORMAL));
|
||||||
else
|
else
|
||||||
conn_full_close(cs->conn);
|
conn_full_close(cs->conn);
|
||||||
/* Maybe we've been put in the list of available idle connections,
|
|
||||||
* get ouf of here
|
|
||||||
*/
|
|
||||||
LIST_DEL(&cs->conn->list);
|
|
||||||
LIST_INIT(&cs->conn->list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user