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

fuzz: added fuzz test for listener filter tls_inspector #12617

Merged
merged 6 commits into from
Aug 14, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Fixed formatting issues (whitespace and alphabetical)
Signed-off-by: Arthur Yan <arthuryan@google.com>
  • Loading branch information
arthuryan-k committed Aug 12, 2020
commit c2d205dd325fb69a1543ac212e047b2a309278f2
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class FuzzedHeader {
bool empty();

private:
const int nreads_; // Number of reads
int nread_; // Counter of current read
const int nreads_; // Number of reads
int nread_; // Counter of current read
std::vector<uint8_t> data_;
std::vector<size_t> indices_; // Ending indices for each read
};
Expand Down
2 changes: 1 addition & 1 deletion test/extensions/filters/listener/tls_inspector/BUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load(
"//bazel:envoy_build_system.bzl",
"envoy_cc_library",
"envoy_cc_fuzz_test",
"envoy_cc_library",
"envoy_cc_test",
"envoy_package",
"envoy_proto_library",
Expand Down