From 018a3e4ff70a30a05079d62e3e3ab82c87760280 Mon Sep 17 00:00:00 2001 From: Yan Avlasov Date: Mon, 12 Aug 2024 17:09:29 +0000 Subject: [PATCH] Update comments Signed-off-by: Yan Avlasov --- source/common/http/filter_manager.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/common/http/filter_manager.h b/source/common/http/filter_manager.h index 24070f66956d..72e54caef6b1 100644 --- a/source/common/http/filter_manager.h +++ b/source/common/http/filter_manager.h @@ -901,11 +901,13 @@ class FilterManager : public ScopeTrackedObject, uint32_t filter_call_state_{0}; // Set after decoder filter chain has completed iteration. Prevents further calls to decoder - // filters. + // filters. This flag is used to determine stream completion when the independent half-close is + // enabled. bool decoder_filter_chain_complete_ : 1; // Set after encoder filter chain has completed iteration. Prevents further calls to encoder - // filters. + // filters. This flag is used to determine stream completion when the independent half-close is + // enabled. bool encoder_filter_chain_complete_ : 1; // Set `true` when the filter manager observes end stream on the decoder path (from downstream