commit | 2bfd35885ee1fb73461477e3237b28f4d6c7f2f8 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Jun 27 15:20:05 2017 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Aug 18 13:26:35 2017 +0200 |
tree | a5f0bbcd16801761d74e44b4195e79e10c794690 | |
parent | bcb86abaca2607a6658a3fc5a8b41b2710eae102 [diff] [blame] |
MINOR: stream: link the stream to its session Now each stream is added to the session's list of streams, so that it will be possible to know all the streams belonging to a session, and to know if any stream is still attached to a sessoin.
diff --git a/src/peers.c b/src/peers.c index 7bf7766..249edf7 100644 --- a/src/peers.c +++ b/src/peers.c
@@ -1856,6 +1856,7 @@ /* Error unrolling */ out_free_strm: + LIST_DEL(&s->by_sess); LIST_DEL(&s->list); pool_free2(pool2_stream, s); out_free_task: