|
|
|
@ -19,7 +19,6 @@ |
|
|
|
|
#include "src/core/ext/filters/channel_idle/channel_idle_filter.h" |
|
|
|
|
#include "src/core/ext/filters/http/client/http_client_filter.h" |
|
|
|
|
#include "src/core/ext/filters/http/client_authority_filter.h" |
|
|
|
|
#include "src/core/ext/filters/load_reporting/server_load_reporting_filter.h" |
|
|
|
|
#include "src/core/lib/gpr/env.h" |
|
|
|
|
#include "src/core/lib/iomgr/executor.h" |
|
|
|
|
#include "src/core/lib/iomgr/timer_manager.h" |
|
|
|
@ -259,9 +258,11 @@ ChannelArgs LoadChannelArgs(const FuzzerChannelArgs& fuzz_args, |
|
|
|
|
#define MAKE_FILTER(name) Filter::Make<name>(#name) |
|
|
|
|
|
|
|
|
|
const Filter* const kFilters[] = { |
|
|
|
|
MAKE_FILTER(ClientAuthorityFilter), MAKE_FILTER(HttpClientFilter), |
|
|
|
|
MAKE_FILTER(ClientAuthFilter), MAKE_FILTER(GrpcServerAuthzFilter), |
|
|
|
|
MAKE_FILTER(ServerLoadReportingFilter), |
|
|
|
|
MAKE_FILTER(ClientAuthorityFilter), MAKE_FILTER(HttpClientFilter), |
|
|
|
|
MAKE_FILTER(ClientAuthFilter), MAKE_FILTER(GrpcServerAuthzFilter), |
|
|
|
|
// We exclude this one internally, so we can't have it here - will need to
|
|
|
|
|
// pick it up through some future registration mechanism.
|
|
|
|
|
// MAKE_FILTER(ServerLoadReportingFilter),
|
|
|
|
|
// The following need channel stacks, and that's not figured out yet
|
|
|
|
|
// MAKE_FILTER(MaxAgeFilter),
|
|
|
|
|
// MAKE_FILTER(ClientIdleFilter),
|
|
|
|
|