Skip to content

Commit 0aebe62

Browse files
committed
Filter: add missing host/generator check to operator()(Datagram)
This was missing in commits 943ba5f and ccb2170
1 parent 8d102aa commit 0aebe62

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Filter.cxx

+2
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,7 @@ Filter::operator()(const Net::Log::Datagram &d) const noexcept
6969
type == d.type) &&
7070
http_status(static_cast<uint16_t>(d.http_status)) &&
7171
timestamp(d) &&
72+
MatchFilter(d.host, hosts) &&
73+
MatchFilter(d.generator, generators) &&
7274
MatchHttpUriStartsWith(d.http_uri, http_uri_starts_with);
7375
}

0 commit comments

Comments
 (0)