Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

filter: clarify comment #13678

Merged
merged 9 commits into from
Oct 27, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/envoy/http/filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ namespace Http {
enum class FilterHeadersStatus {
// Continue filter chain iteration.
Continue,
// Do not iterate to any of the remaining filters in the chain. Returning
// FilterDataStatus::Continue from decodeData()/encodeData() or calling
// continueDecoding()/continueEncoding() MUST be called if continued filter iteration is desired.
// Do not iterate to any of the remaining filters in the chain.
// continueDecoding() or continueEncoding() MUST be called if continued filter iteration is
rgs1 marked this conversation as resolved.
Show resolved Hide resolved
// desired.
StopIteration,
// Continue headers iteration to remaining filters, but delay ending the stream. This status MUST
// NOT be returned when end_stream is already set to false.
Expand Down