Skip to content

Commit 730f753

Browse files
dynamic_modules: support network filters to be terminal (#42751)
## Description This PR supports Dynamic Modules for network filters to make them `terminal`. --- **Commit Message:** dynamic_modules: support network filters to be terminal **Additional Description:** Added support for Dynamic Modules for the network filters to make them `terminal`. **Risk Level:** Low **Testing:** Added Tests **Docs Changes:** Added **Release Notes:** N/A Signed-off-by: Rohit Agrawal <[email protected]> Mirrored from https://github.com/envoyproxy/envoy @ 50ad55a80663a5c40fa172c9cfe951fca76aa17d
1 parent b6f4106 commit 730f753

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

envoy/extensions/filters/network/dynamic_modules/v3/dynamic_modules.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,9 @@ message DynamicModuleNetworkFilter {
6868
// value: aGVsbG8= # echo -n "hello" | base64
6969
//
7070
google.protobuf.Any filter_config = 3;
71+
72+
// Set true if the dynamic module is a terminal filter to use without an upstream connection.
73+
// The dynamic module is responsible for creating and sending the response to downstream.
74+
// If not specified, defaults to false.
75+
bool terminal_filter = 4;
7176
}

0 commit comments

Comments
 (0)